Mount boot partition in /mnt/boot instead of /boot
authorHugo Villeneuve <hugo@hugovil.com>
Fri, 23 Aug 2013 01:06:49 +0000 (21:06 -0400)
committerHugo Villeneuve <hugo@hugovil.com>
Thu, 31 Jul 2014 02:15:23 +0000 (22:15 -0400)
config/sysinfos.default
stage1/create-config-files

index a1140b3..281e3be 100644 (file)
@@ -25,7 +25,10 @@ MAKEJOBS=2
 # This is relevant only for stage 0 and 1.
 LFS="/mnt/hvlinux"
 #LFS_PARTITION="/dev/sdb7"
+
+# Partition where bootloader resides
 #BOOT_PARTITION="/dev/sdb1"
+
 #SWAP_PARTITION="/dev/sdb2"
 
 # /tmp is now mounted with tmpfs.
index 1dbb9be..8fa08ce 100755 (executable)
@@ -9,7 +9,8 @@ cat > ${LFS}/etc/fstab << "EOF"
 EOF
 
 if [ -n "${BOOT_PARTITION}" ]; then
-    echo "${BOOT_PARTITION} /boot auto defaults 0 0" >> ${LFS}/etc/fstab
+    install -v -m755 -d ${LFS}/mnt/boot
+    echo "${BOOT_PARTITION} /mnt/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