X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=chroot-script;h=7f2669ad986af3f1bdaa4f829492b18f5c220818;hp=4142beb598fd8ea9ad93916d2a95cd6a7f804a7a;hb=fe903287fed5cccc7d382751fe745f5984dc6e37;hpb=e83c790d7989f0671b16c94ddfe5c2f32ea90576 diff --git a/chroot-script b/chroot-script index 4142beb..7f2669a 100644 --- a/chroot-script +++ b/chroot-script @@ -131,6 +131,10 @@ KERNELVER=${KERNELIMG#/boot/vmlinuz-} # generate initrd if [ -n "$INITRD" ] ; then + if [ "$RELEASE" = 'sarge' ] ; then + einfo "Release sarge detected, will not create an initrd." + return 0 + fi echo "Generating initrd." update-initramfs -c -t -k $KERNELVER if [ -f "/boot/initrd.img-$KERNELVER" ] ; then @@ -144,7 +148,12 @@ if [ -n "$GROOT" ] ; then # 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