X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage1%2Fcreate-config-files;h=781bb94d3c71fcc0cb0d3807f79dba05f3d9718c;hb=10f15e47ae3d9d2a387fa21ae77a31cafb1394d3;hp=4d419391fb49acc7cccbb2c7ea1d341debe1f6a6;hpb=b44c5a7a1987bdd5ac4cd1eea625d0539c0c9afd;p=hvlinux.git 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"