view sources/sections/linux-headers.sh @ 964:edf9264f2d26

Make root filesystem's usr/src has config-linux and config-uClibc as well as config-busybox.
author Rob Landley <rob@landley.net>
date Tue, 02 Feb 2010 04:46:07 -0600
parents 5e0cbc73da55
children a34a4954c640
line wrap: on
line source

# Install Linux kernel headers.

setupfor linux

# This isn't strictly necessary, but if we have a kernel config, expand
# and copy it.

cp "$(getconfig linux)" mini.conf &&
if [ "$SYSIMAGE_TYPE" == "initramfs" ]
then
  echo "CONFIG_BLK_DEV_INITRD=y" >> mini.conf
fi
[ -e mini.conf ] &&
make ARCH=${BOOT_KARCH:-$KARCH} KCONFIG_ALLCONFIG=mini.conf $LINUX_FLAGS \
  allnoconfig >/dev/null &&
cp .config "$STAGE_DIR/config-linux"


# Install Linux kernel headers (for use by uClibc).
make -j $CPUS headers_install ARCH="${KARCH}" INSTALL_HDR_PATH="$STAGE_DIR" &&
# This makes some very old package builds happy.
ln -s ../sys/user.h "$STAGE_DIR/include/asm/page.h"

cleanup