changeset 1762:fd7e3b9ede04 draft

Removed linux-kernel from the build but not the repo. (Deleted it locally, didn't check in. Oops.)
author Rob Landley <rob@landley.net>
date Mon, 25 May 2015 21:47:52 -0500
parents 67a19abd420c
children b6e4e49cec5e
files linux-kernel.sh
diffstat 1 files changed, 0 insertions(+), 26 deletions(-) [+]
line wrap: on
line diff
--- 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