use /lib/grub/i386-pc/ for sarge
authorMichael Prokop <mika@grml.org>
Fri, 3 Nov 2006 22:52:15 +0000 (23:52 +0100)
committerMichael Prokop <mika@grml.org>
Fri, 3 Nov 2006 22:52:15 +0000 (23:52 +0100)
chroot-script

index 7192cdc..7f2669a 100644 (file)
@@ -148,7 +148,12 @@ if [ -n "$GROOT" ] ; then
 
    # copy stage-files to /boot/grub/
    [ -d /boot/grub/ ] || mkdir /boot/grub
 
    # copy stage-files to /boot/grub/
    [ -d /boot/grub/ ] || mkdir /boot/grub
-   cp /usr/lib/grub/i386-pc/* /boot/grub/
+   if [ -d /usr/lib/grub/i386-pc/ ] ; then
+      cp /usr/lib/grub/i386-pc/* /boot/grub/
+   else
+      # sarge ships grub files in another directory
+      cp /lib/grub/i386-pc/* /boot/grub/
+   fi
 
    # finally install grub
    update-grub -y
 
    # finally install grub
    update-grub -y