1 Jun 2004 07:32
base-files/fstab, must mount proc before using auto
Glenn McGrath <glennm <at> hydrix.com>
2004-06-01 05:32:12 GMT
2004-06-01 05:32:12 GMT
Busybox's mount uses /proc/filesystems to determine a list of possible filesystem to try when mounting filesystems of type "auto" Two of the fstab's specify a mount point of type "auto" prior to specifying the proc entry, this breaks "mount -a" behaviour. The attached patch moves proc up above the "auto" entries so mount can get the filesystem list prior to the "auto" entry. "mount -a" will work again for generic and collie Glenn
--- a/base-files/base-files/collie/fstab 2004-05-30 05:00:23.000000000 +1000 +++ b/base-files/base-files/collie/fstab 2004-06-01 15:20:37.000000000 +1000 <at> <at> -1,5 +1,5 <at> <at> /dev/mtdblock4 / jffs2 defaults 1 1 +proc /proc proc defaults 0 0 /dev/hda1 /mnt/cf auto defaults,noauto,noatime,user,exec,suid 0 0 /dev/mmcda1 /mnt/card auto defaults,noauto,noatime,user,exec,suid 0 0 ramfs /var ramfs defaults 0 0 -proc /proc proc defaults 0 0 --- a/base-files/base-files/fstab 2004-05-30 05:00:23.000000000 +1000 +++ b/base-files/base-files/fstab 2004-06-01 15:17:37.000000000 +1000 <at> <at> -1,4 +1,4 <at> <at> +proc /proc proc defaults 0 0 rootfs / auto defaults 1 1 devpts /dev/pts devpts mode=0620,gid=5 0 0 -proc /proc proc defaults 0 0(Continue reading)
RSS Feed