view linux-kernel.sh @ 1759:ef7b355302ef draft

Another guess at elf2flt build invocation for sh2eb.
author Rob Landley <rob@landley.net>
date Thu, 07 May 2015 15:58:42 -0500
parents b89324905ca2
children
line wrap: on
line source

#!/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