aboutsummaryrefslogtreecommitdiffstats
path: root/arch/i386/boot
diff options
context:
space:
mode:
Diffstat (limited to 'arch/i386/boot')
-rw-r--r--arch/i386/boot/install.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/i386/boot/install.sh b/arch/i386/boot/install.sh
index 5e44c736eea8..88d77761d01b 100644
--- a/arch/i386/boot/install.sh
+++ b/arch/i386/boot/install.sh
@@ -51,4 +51,11 @@ fi
51cat $2 > $4/vmlinuz 51cat $2 > $4/vmlinuz
52cp $3 $4/System.map 52cp $3 $4/System.map
53 53
54if [ -x /sbin/lilo ]; then /sbin/lilo; else /etc/lilo/install; fi 54if [ -x /sbin/lilo ]; then
55 /sbin/lilo
56elif [ -x /etc/lilo/install ]; then
57 /etc/lilo/install
58else
59 sync
60 echo "Cannot find LILO."
61fi