From 31e2e7b86388e4ece09f37866bd1411f357cafbd Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sat, 12 Dec 2009 02:42:35 +0100 Subject: randomconfig fixes Signed-off-by: Denys Vlasenko --- scripts/randomtest | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) (limited to 'scripts/randomtest') diff --git a/scripts/randomtest b/scripts/randomtest index bd5ef4bfe..a7a20250d 100755 --- a/scripts/randomtest +++ b/scripts/randomtest @@ -35,10 +35,6 @@ cat .config \ | grep -v ^CONFIG_SELINUX= \ | grep -v ^CONFIG_EFENCE= \ | grep -v ^CONFIG_DMALLOC= \ -| grep -v ^CONFIG_ACPID= \ -| grep -v ^CONFIG_FLASH_ERASEALL= \ -| grep -v ^CONFIG_FLASH_LOCK= \ -| grep -v ^CONFIG_FLASH_UNLOCK= \ | cat >.config.new mv .config.new .config } @@ -61,15 +57,6 @@ echo 'CONFIG_CROSS_COMPILER_PREFIX="'"$uclibc_cross"'"' >>.config echo 'CONFIG_STATIC=y' >>.config } -# If NOMMU, remove some things -grep -q ^CONFIG_NOMMU= .config && { -cat .config \ -| grep -v ^CONFIG_ASH= \ -| grep -v ^CONFIG_FEATURE_SH_IS_ASH= \ -| cat >.config.new -mv .config.new .config -} - # If STATIC, remove some things # PAM with static linking is probably pointless # (but I need to try - now I don't have libpam.a on my system, only libpam.so) @@ -83,7 +70,7 @@ mv .config.new .config # Regenerate .config with default answers for yanked-off options { yes "" | make oldconfig >/dev/null; } || exit 1 -nice -n 10 make 2>&1 | tee -a make.log +nice -n 10 make $MAKEOPTS 2>&1 | tee -a make.log test -x busybox && { cd .. -- cgit v1.2.3