From: Michael Prokop Date: Fri, 3 Nov 2006 13:19:53 +0000 (+0100) Subject: some more grub updates + fixes X-Git-Tag: 0.1~13 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=772e54cf5051a1c5f174b779f04a5aa9901d5fda some more grub updates + fixes --- diff --git a/chroot-script b/chroot-script index 3eda6af..36e8cd3 100644 --- a/chroot-script +++ b/chroot-script @@ -4,7 +4,7 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Fre Nov 03 14:02:25 CET 2006 [mika] +# Latest change: Fre Nov 03 14:19:42 CET 2006 [mika] ################################################################################ set -e # exit on any error @@ -65,11 +65,11 @@ fi # set up /etc/fstab if file is UNCONFIGURED if grep -q UNCONFIGURED /etc/fstab ; then echo "Setting up /etc/fstab" -cat >> /etc/fstab << EOF +cat > /etc/fstab << EOF +$TARGET / auto defaults,errors=remount-ro 0 1 sysfs /sys sysfs auto 0 0 proc /proc proc defaults 0 0 -$TARGET / auto defaults,errors=remount-ro 0 1 -# /dev/sda2 none swap sw 0 0 +# /dev/sda2 none swap sw 0 0 /dev/cdrom /mnt/cdrom0 iso9660 ro,user,noauto 0 0 EOF fi @@ -133,6 +133,8 @@ if [ "$BOOTMGR" = 'grub' ] ; then # finally install grub # grub-install $BOOT update-grub -y + [ -n "$GROOT" ] && sed -i "s/^# groot=(hd.*/groot=(${GROOT})" /boot/grub/menu.lst + update-grub -y # restore mtab again mv /etc/mtab.old /etc/mtab diff --git a/config b/config index 732bcfd..230f5ad 100644 --- a/config +++ b/config @@ -15,6 +15,12 @@ TARGET='' # where should the bootmanager installed to? BOOT='' +# which bootmanager do you want to use? [grub|lilo] +BOOTMGR='grub' + +# if using grub, where do you want to install grub to? +GROOT='hd0,0' + ################################################################################ # kernel version @@ -57,7 +63,4 @@ TIMEZONE='Europe/Vienna' # generate initrd? INITRD='yes' -# which bootmanager do you want to use? [grub|lilo] -BOOTMGR='grub' - ## END OF FILE #################################################################