From: Michael Prokop Date: Tue, 7 Jul 2009 23:20:33 +0000 (+0200) Subject: Install busybox in kernel stage X-Git-Tag: v0.29~14 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=3d63d4407d8113260e4c2e2965699c0c6b280d09;hp=1c65ca6d6854e48535f9b18a5d6f3e82606c433f Install busybox in kernel stage --- diff --git a/chroot-script b/chroot-script index 347bead..5ca8295 100755 --- a/chroot-script +++ b/chroot-script @@ -196,7 +196,8 @@ kernel() { if [ "$RELEASE" = 'sarge' ] ; then KERNELPACKAGES="kernel-image-$KERNEL kernel-headers-$KERNEL" else - KERNELPACKAGES="linux-image-$KERNEL linux-headers-$KERNEL" + # note: install busybox to be able to debug initramfs + KERNELPACKAGES="linux-image-$KERNEL linux-headers-$KERNEL busybox" fi DEBIAN_FRONTEND=$DEBIAN_FRONTEND $APTINSTALL $KERNELPACKAGES fi diff --git a/debian/changelog b/debian/changelog index 6d1a0b6..ab80461 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +grml-debootstrap (0.29) UNRELEASED; urgency=low + + * Install busybox in kernel stage to be able to debug initramfs + problems (thanks, gebi). + + -- Michael Prokop Wed, 08 Jul 2009 01:20:00 +0200 + grml-debootstrap (0.28) unstable; urgency=low * Work around the chpasswd problem. [Closes: issue692]