| Anonymous | Login | Signup for a new account | 11-10-2008 10:52 PST |
| Main | My View | View Issues | Change Log | Docs |
| Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | ||||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||||
| 0000534 | [BusyBox] Other | minor | always | 11-05-05 17:36 | 06-30-06 09:53 | ||||
| Reporter | smiley73 | View Status | public | ||||||
| Assigned To | BusyBox | ||||||||
| Priority | normal | Resolution | fixed | ||||||
| Status | closed | Product Version | svn | ||||||
| Summary | 0000534: "mount -t auto " broken | ||||||||
| Description |
"mount -t auto" is broken. Mount returns the error message "no such device" . Not specifying "-t auto" at all or specifying the file system, i.e. "-t ext2" works. |
||||||||
| Additional Information | |||||||||
| Attached Files |
|
||||||||
|
|
|||||||||
Notes |
|
|
(0000783) iggarpe 12-15-05 02:25 |
The cause is that the standard C library getmntent will return "auto" as the filesystem type, and the mount.c code incorrectly checks for a NULL string: if (fsType || ... Should be: if ((fsType && strcmp(fsType, "auto")) || ... Trivial patch attached. |
|
(0000784) iggarpe 12-15-05 02:55 |
Please use the second patch. The first one is incorrect (could not find a way to delete it). |
|
(0001217) bernhardf 04-03-06 08:02 |
mount was recently rewritten. Please verify that the new version behaves as expected: http://busybox.net/downloads/busybox-1.1.1.tar.bz2 [^] |
|
(0001486) landley 06-30-06 09:53 |
Mount's seen a half-dozen fixes since this, open a new bug with specific reproduction sequence (including the /etc/fstab file in question) if you still have problems. |
| Copyright © 2000 - 2006 Mantis Group |