From 10f15e47ae3d9d2a387fa21ae77a31cafb1394d3 Mon Sep 17 00:00:00 2001 From: gobo72 Date: Tue, 15 Mar 2011 02:54:37 +0000 Subject: [PATCH] Changed type of filesystem to auto for /boot and / --- stage1/create-config-files | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" -- 2.20.1