From a34ee5f28146d6d272e56b10f028b7a4c9b4e265 Mon Sep 17 00:00:00 2001 From: Bob Gilligan Date: Mon, 19 Nov 2007 18:13:37 -0800 Subject: Switch boot program from grub to isolinux. Grub has problems working with some BIOS implementations. --- scripts/install-system.in | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/install-system.in b/scripts/install-system.in index cf7ff263..325f7980 100755 --- a/scripts/install-system.in +++ b/scripts/install-system.in @@ -458,10 +458,8 @@ install_root_filesystem () { # make the dir for the boot files and copy em' over mkdir -p $rootfsdir/boot output=$(cp -pR /boot/* $rootfsdir/boot/) - output+=$(cp /live/image/live/vmlinuz-* $rootfsdir/boot/) + output+=$(cp /live/image/live/initrd*.img* $rootfsdir/boot/initrd.img) status=$? - output+=$(cp /live/image/live/initrd.img-* $rootfsdir/boot/initrd.img) - status=$status || $? if [ "$status" != 0 ]; then echo -e "Error trying to copy the bootfiles.\nPlease see install log for more details.\nExiting. .." -- cgit v1.2.3