changeset 348:d1e73f644c62

Work around the kernel's allnoconfig trying to go nuts while shrinking arch/blackfin/configs/BF548-EZKIT_defconfig in 2.6.25.4.
author Rob Landley <rob@landley.net>
date Tue, 10 Jun 2008 20:10:07 -0500
parents cede0879d885
children 798cdf05aca2
files sources/toys/miniconfig.sh
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/sources/toys/miniconfig.sh	Fri Jun 06 23:18:11 2008 -0500
+++ b/sources/toys/miniconfig.sh	Tue Jun 10 20:10:07 2008 -0500
@@ -52,8 +52,8 @@
   fi
   sed -n "${I}!p" mini.config > .config.test
   # Do a config with this file
-  make allnoconfig KCONFIG_ALLCONFIG=.config.test > /dev/null
-
+  rm .config
+  make allnoconfig KCONFIG_ALLCONFIG=.config.test | head -n 1000000 > /dev/null
   # Compare.  Because we normalized at the start, the files should be identical.
   if cmp -s .config .big.config
   then