X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=chroot-script;h=0fcaa58da7699c67e169ae7abf769e72f0991287;hp=e922b1d568c5d223bbf5403242ca3170b571793b;hb=26d3b5d3a7e48b10c332a58c1aed428a50ed3f50;hpb=66df47139433dba881347c30e56a2686cbcf170f diff --git a/chroot-script b/chroot-script index e922b1d..0fcaa58 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:36:06 CET 2006 [mika] +# Latest change: Fre Nov 03 17:15:42 CET 2006 [mika] ################################################################################ set -e # exit on any error @@ -17,6 +17,10 @@ if [ -n "$CHROOTMIRROR" ] ; then echo "$CHROOTMIRROR" > /etc/apt/sources.list fi +# if ! [ -n /etc/kernel-img.conf ] ; then +# echo "do_initrd = Yes" > /etc/kernel-img.conf +# fi + # install additional packages if [ "$PACKAGES" = 'yes' ] ; then if ! [ -r /etc/debootstrap/packages ] ; then @@ -94,80 +98,27 @@ if [ -n "$INITRD" ] ; then fi fi -if [ "$BOOTMGR" = 'grub' ] ; then +if [ -n "$GROOT" ] ; then echo "Installing grub" -# if ! [ -f /boot/grub/menu.lst ] ; then -# # setup grub -# mkdir /boot/grub -# cat >> /boot/grub/menu.lst << EOF -## Boot automatically after 30 secs. -#timeout 30 -# -## By default, boot the first entry. -#default 0 -# -## Fallback to the second entry. -#fallback 1 -# -#title Debian Etch, kernel $KERNELVER (on $ARGET) -#root (hd0,0) -#kernel $KERNELIMG root=$TARGET ro -#$GRUBINITRD -# -## For booting Windows -## title Windows -## rootnoverify (hd0,0) -## makeactive -## chainloader +1 -#EOF -# fi # copy stage-files to /boot/grub/ [ -d /boot/grub/ ] || mkdir /boot/grub cp /usr/lib/grub/i386-pc/* /boot/grub/ - # otherwise grub fails with 'Could not find device for /boot/boot: not found or not a block device' - cp /etc/mtab /etc/mtab.old - cp /proc/mounts /etc/mtab - # finally install grub - # grub-install $BOOT update-grub -y - [ -n "$GROOT" ] && sed -i "s/^# groot=(hd.*/groot=(${GROOT})" /boot/grub/menu.lst + sed -i "s/groot=.*/groot=(${GROOT})/g" /boot/grub/menu.lst + # not sure why savedefault does not work for me; any ideas? + sed -i "s/^savedefault.*/# &/g" /boot/grub/menu.lst update-grub -y - # restore mtab again - mv /etc/mtab.old /etc/mtab -fi - -if [ "$BOOTMGR" = 'lilo' ] ; then - echo "Installing lilo" -# /usr/share/doc/lilo/examples/conf.sample -cat > /etc/lilo.conf << EOF -# This allows booting from any partition on disks with more than 1024 cylinders. -lba32 - -# Specifies the boot device -boot=$BOOT - -# Specifies the device that should be mounted as root. -root=$TARGET - -# use Debian on software raid: -# raid-extra-boot=mbr-only - -install=text -# prompt -timeout=1 -map=/boot/map -vga=normal - -image=/boot/vmlinuz-2.6.17-grml - label="$KERNELVER" - #append="...." - read-only - $LILOINITRD -EOF + if [ -z "$MBR" ] ; then + echo "Notice: \$MBR not set, will not install grub therefor." + else + cp /proc/mounts /etc/mtab + grub-install "$MBR" + rm /etc/mtab + fi fi # unmount all filesystems in chroot, make sure nothing is left...