diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-12-12 02:42:35 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-12-12 02:42:35 +0100 |
commit | 31e2e7b86388e4ece09f37866bd1411f357cafbd (patch) | |
tree | d87ab658d71ea54decdf6f6c94a0de1133124ea1 /scripts | |
parent | 1315c30fefe6e64cd2cbc95fe484b02ce70afec1 (diff) | |
download | busybox-31e2e7b86388e4ece09f37866bd1411f357cafbd.tar.gz |
randomconfig fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/randomtest | 15 |
1 files changed, 1 insertions, 14 deletions
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 .. |