# HG changeset patch # User Rob Landley # Date 1432608472 18000 # Node ID fd7e3b9ede04f8e5e0360ba798b90ad80f5715f5 # Parent 67a19abd420ce51f5f786c1f1d8327463b539223 Removed linux-kernel from the build but not the repo. (Deleted it locally, didn't check in. Oops.) diff -r 67a19abd420c -r fd7e3b9ede04 linux-kernel.sh --- a/linux-kernel.sh Sun May 24 01:13:55 2015 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,26 +0,0 @@ -#!/bin/bash - -# Package a root filesystem directory into a filesystem image file - -source sources/include.sh || exit 1 - -# Parse sources/targets/$1 - -load_target "$1" - -setupfor linux - -# Build linux kernel for the target - -getconfig linux > mini.conf -[ "$SYSIMAGE_TYPE" == rootfs ] && - echo -e "CONFIG_INITRAMFS_SOURCE=\"$BUILD/rootfs-$ARCH.cpio\"\n" \ - >> mini.conf -make ARCH=${BOOT_KARCH:-$KARCH} $LINUX_FLAGS KCONFIG_ALLCONFIG=mini.conf \ - allnoconfig >/dev/null && -make -j $CPUS ARCH=${BOOT_KARCH:-$KARCH} $DO_CROSS $LINUX_FLAGS $VERBOSITY && -cp "$KERNEL_PATH" "$STAGE_DIR" - -cleanup - -ARCH="$ARCH_NAME" create_stage_tarball