From: gobo72 Date: Tue, 15 Mar 2011 02:54:37 +0000 (+0000) Subject: Changed type of filesystem to auto for /boot and / X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=10f15e47ae3d9d2a387fa21ae77a31cafb1394d3;p=hvlinux.git Changed type of filesystem to auto for /boot and / --- diff --git a/stage1/create-config-files b/stage1/create-config-files index 4d41939..781bb94 100755 --- a/stage1/create-config-files +++ b/stage1/create-config-files @@ -9,12 +9,12 @@ cat > ${LFS}/etc/fstab << "EOF" EOF if [ -n "${BOOT_PARTITION}" ]; then - echo "${BOOT_PARTITION} /boot ext2 defaults 1 1" >> ${LFS}/etc/fstab + echo "${BOOT_PARTITION} /boot auto defaults 0 0" >> ${LFS}/etc/fstab fi if [ -n "${SWAP_PARTITION}" ]; then echo "${SWAP_PARTITION} none swap sw 0 0" >> ${LFS}/etc/fstab fi -echo "${LFS_PARTITION} / reiserfs defaults,noatime 0 0" >> ${LFS}/etc/fstab +echo "${LFS_PARTITION} / auto defaults,noatime 0 0" >> ${LFS}/etc/fstab if [ "x${DVDROM}" = "xyes" ]; then cat >> ${LFS}/etc/fstab << "EOF"