changeset 414:42faea138734

Save the expanded .config files for uClibc and linux in each build/temp-$ARCH dir after the build.
author Rob Landley <rob@landley.net>
date Sun, 19 Oct 2008 02:47:44 -0500
parents 2c99f59ec2d7
children acb61c298000
files cross-compiler.sh mini-native.sh
diffstat 2 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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 ..
--- 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 ..