Modify update-initramfs call
authorMichael Prokop <mika@grml.org>
Mon, 7 Sep 2009 12:27:59 +0000 (14:27 +0200)
committerMichael Prokop <mika@grml.org>
Mon, 7 Sep 2009 12:27:59 +0000 (14:27 +0200)
debian/changelog
grml-live

index ecbdb41..2552fc5 100644 (file)
@@ -29,8 +29,11 @@ grml-live (0.9.22) UNRELEASED; urgency=low
   * New cmdline option: "-n" skips generation of the ISO file.
   * Introduce support for squashfs-lzma-tools 4.0-1 and support
     configuration variable SQUASHFS_BINARY.
+  * Modify update-initramfs call in grml-live script as the
+    'update-initramfs -u -t' might fail with linux images which have been
+    build using kernel-package.
 
- -- Michael Prokop <mika@grml.org>  Fri, 04 Sep 2009 01:57:39 +0200
+ -- Michael Prokop <mika@grml.org>  Mon, 07 Sep 2009 14:26:14 +0200
 
 grml-live (0.9.21) unstable; urgency=low
 
index 207ccb0..7ed805c 100755 (executable)
--- a/grml-live
+++ b/grml-live
@@ -516,7 +516,8 @@ else
          chmod 644 $CHROOT_OUTPUT/etc/grml_version
          einfo "Rebuilding initramfs"
          # make sure new /etc/grml_version reaches the initramfs:
-         chroot $CHROOT_OUTPUT update-initramfs -u -t
+         # chroot $CHROOT_OUTPUT update-initramfs -u -t => might break when using kernel-package :(
+         chroot $CHROOT_OUTPUT update-initramfs -u -k all
          eend $?
       fi