# HG changeset patch # User Rob Landley # Date 1224402464 18000 # Node ID 42faea138734c621ea75e59773da9e7f6709e0ab # Parent 2c99f59ec2d757c5476bf0d2515c4e1ec8ef5b17 Save the expanded .config files for uClibc and linux in each build/temp-$ARCH dir after the build. diff -r 2c99f59ec2d7 -r 42faea138734 cross-compiler.sh --- a/cross-compiler.sh Sun Oct 19 02:46:37 2008 -0500 +++ b/cross-compiler.sh Sun Oct 19 02:47:44 2008 -0500 @@ -100,6 +100,7 @@ fi make CROSS= KCONFIG_ALLCONFIG="${CONFIG_DIR}"/$CONFIGFILE allnoconfig && +cp .config ../config-uClibc && make CROSS="${ARCH}-" KERNEL_HEADERS="${CROSS}/include" PREFIX="${CROSS}/" \ RUNTIME_PREFIX=/ DEVEL_PREFIX=/ $BUILDIT && cd .. diff -r 2c99f59ec2d7 -r 42faea138734 mini-native.sh --- a/mini-native.sh Sun Oct 19 02:46:37 2008 -0500 +++ b/mini-native.sh Sun Oct 19 02:47:44 2008 -0500 @@ -35,6 +35,7 @@ # build bootable kernel for target make ARCH="${KARCH}" KCONFIG_ALLCONFIG="${CONFIG_DIR}/miniconfig-linux" \ allnoconfig && +cp .config ../config-linux && make -j $CPUS ARCH="${KARCH}" CROSS_COMPILE="${ARCH}-" && cp "${KERNEL_PATH}" "${WORK}/zImage-${ARCH}" && cd ..