X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=debian%2Fpostinst;h=0bac419bd792fa5ff53f5d3e91fef46c57ba7a67;hb=e826e340c0a81da51ced9c2aef2ef5fb8c2916fd;hp=6dfe2d63009f09888e6896de38e3bc10ca40728b;hpb=75ce3eae72d8ab65d8064fd4e1baf1d2e3fb2aae;p=kernel-cn.git diff --git a/debian/postinst b/debian/postinst index 6dfe2d6..0bac419 100755 --- a/debian/postinst +++ b/debian/postinst @@ -89,7 +89,7 @@ echo "." # detect existing Grub2 installation GRUB2="no" -if [ -e /boot/grub/grub.cfg ]; then +if [ \( -e /boot/grub/grub.cfg \) -o \( -e /boot/grub/core.img \) ]; then echo "CN: Detected GRUB2 installation, will try to use it." GRUB2="yes" if [ -e /boot/grub/menu.lst ]; then @@ -178,6 +178,7 @@ if [ "x$GRUB2" = "xno" ]; then fi else # Grub2 part + touch /boot/grub/grub.cfg update-grub >/dev/null 2>&1 || true fi echo -n " grub2" @@ -232,7 +233,8 @@ EOF fi else # Grub2 part - grub-mkdevicemap -n + grub-mkdevicemap --no-floppy + grub-install --no-floppy --grub-setup=/bin/true "$(grub-probe -t drive /boot/grub)" >/dev/null 2>&1 fi echo -n " grub3" @@ -267,7 +269,7 @@ if [ "x$GRUB2" = "xno" ]; then fi else # Grub2 part - install_device='(hd0)' + install_device="(hd0)" fi echo -n " grub4" @@ -323,6 +325,17 @@ if [ "x$GRUB2" = "xno" ]; then fi echo -n " grub7" +# install to other boot sectors if needed (better safe than sorry) +if [ "x$GRUB2" = "xyes" ]; then + # Grub2 part + db_get grub-pc/install_devices + for i in `echo $RET | sed -e 's/,/ /g'`; do + read_device="$(readlink -f "$i")" + grub-install --force --no-floppy $read_device + done +fi +echo -n " grub8" + # disable lilo if [ -e /etc/lilo.conf ]; then mv -f /etc/lilo.conf /etc/lilo.conf.old