X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=debian%2Fpostinst;h=7e217c4a45a9fdc2a3964380f69afa74081a907d;hb=d8d1fd19ea96225286cc32a60a72aa8d388a1499;hp=8545cb0af359dbc3d670412ea1370bec0d5c7a15;hpb=050a532429b04f95f678e8292282b6d644931a3e;p=kernel-cn.git diff --git a/debian/postinst b/debian/postinst index 8545cb0..7e217c4 100755 --- a/debian/postinst +++ b/debian/postinst @@ -269,7 +269,7 @@ if [ "x$GRUB2" = "xno" ]; then fi else # Grub2 part - install_device="$(grub-probe -t drive /boot/grub)" + install_device="(hd0)" fi echo -n " grub4" @@ -325,6 +325,20 @@ 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 + real_device="$(readlink -f "$i")" + if [ -e "$real_device" ]; then + grub-install --force --no-floppy $real_device \ + >/dev/null 2>&1 || true + fi + done +fi +echo -n " grub8" + # disable lilo if [ -e /etc/lilo.conf ]; then mv -f /etc/lilo.conf /etc/lilo.conf.old