view linux-kernel.sh @ 1375:a9685aea2a2c 1.0.2

Don't require objective C on the host, no matter what weird things ./configure does.
author Rob Landley <rob@landley.net>
date Sun, 12 Jun 2011 22:37:01 -0500
parents 9252453c40d0
children b74d36876c0a
line wrap: on
line source

#!/bin/bash

# Package a root filesystem directory into a filesystem image file

source sources/include.sh || exit 1

# Parse the sources/targets/$1 directory

read_arch_dir "$1"

# If we have an initramfs, incorporate it into the kernel image.

[ -e "$BUILD/root-image-$ARCH/initramfs_data.cpio" ] &&
  MORE_KERNEL_CONFIG="CONFIG_BLK_DEV_INITRD=y\nCONFIG_INITRAMFS_SOURCE=\"$BUILD/root-image-$ARCH/initramfs_data.cpio\"\nCONFIG_INITRAMFS_COMPRESSION_GZIP=y"

# Build linux kernel for the target

setupfor linux
[ -z "$BOOT_KARCH" ] && BOOT_KARCH=$KARCH
make ARCH=$BOOT_KARCH $LINUX_FLAGS KCONFIG_ALLCONFIG=<(getconfig linux && echo -e "$MORE_KERNEL_CONFIG") allnoconfig >/dev/null &&
make -j $CPUS ARCH=$BOOT_KARCH $DO_CROSS $LINUX_FLAGS $VERBOSITY &&
cp "$KERNEL_PATH" "$STAGE_DIR"

cleanup

create_stage_tarball