# HG changeset patch # User Rob Landley # Date 1231485774 21600 # Node ID de6725a2fdad1e6952413e6465dc53b0ab0fb090 # Parent 1277d5ae45077130856a49df7da69b1d20efd9c8 Fix an "it doesn't boot" bug dating back to commit 553. Sigh. diff -r 1277d5ae4507 -r de6725a2fdad package-mini-native.sh --- a/package-mini-native.sh Thu Jan 08 00:13:50 2009 -0600 +++ b/package-mini-native.sh Fri Jan 09 01:22:54 2009 -0600 @@ -24,7 +24,7 @@ make ARCH="${KARCH}" KCONFIG_ALLCONFIG="$(getconfig linux)" \ allnoconfig > /dev/null || dienow -if [ ! -z "USE_INITRAMFS" ] +if [ ! -z "$USE_INITRAMFS" ] then echo "Generating initramfs (in background)" ( @@ -49,13 +49,14 @@ # Embed an initramfs image in the kernel? -if [ ! -z "USE_INITRAMFS" ] +if [ ! -z "$USE_INITRAMFS" ] then # This is a repeat of an earlier make invocation, but if we try to # consolidate them the dependencies build unnecessary prereqisites # and then decide that they're newer than the cpio.gz we supplied, # and thus overwrite it with a default (emptyish) one. + echo "Building kernel with initramfs." [ -f initramfs_data.cpio.gz ] && touch initramfs_data.cpio.gz && mv initramfs_data.cpio.gz usr &&