# HG changeset patch # User Rob Landley # Date 1201750769 21600 # Node ID f878f79763c7cd3e57fce8c2f40875f05c916b1e # Parent ffef8c1fe240b0b3a2628811e997096752c0569f Use make -j to install kernel headers. diff -r ffef8c1fe240 -r f878f79763c7 mini-native.sh --- a/mini-native.sh Wed Jan 30 21:37:51 2008 -0600 +++ b/mini-native.sh Wed Jan 30 21:39:29 2008 -0600 @@ -20,7 +20,7 @@ setupfor linux # Install Linux kernel headers (for use by uClibc). -make headers_install ARCH="${KARCH}" INSTALL_HDR_PATH="${TOOLS}" && +make headers_install -j "$CPUS" ARCH="${KARCH}" INSTALL_HDR_PATH="${TOOLS}" && # build bootable kernel for target make ARCH="${KARCH}" allnoconfig KCONFIG_ALLCONFIG="${WORK}/miniconfig-linux" && make -j $CPUS ARCH="${KARCH}" CROSS_COMPILE="${ARCH}-" &&