aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/randomtest15
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 \
35| grep -v ^CONFIG_SELINUX= \ 35| grep -v ^CONFIG_SELINUX= \
36| grep -v ^CONFIG_EFENCE= \ 36| grep -v ^CONFIG_EFENCE= \
37| grep -v ^CONFIG_DMALLOC= \ 37| grep -v ^CONFIG_DMALLOC= \
38| grep -v ^CONFIG_ACPID= \
39| grep -v ^CONFIG_FLASH_ERASEALL= \
40| grep -v ^CONFIG_FLASH_LOCK= \
41| grep -v ^CONFIG_FLASH_UNLOCK= \
42| cat >.config.new 38| cat >.config.new
43mv .config.new .config 39mv .config.new .config
44} 40}
@@ -61,15 +57,6 @@ echo 'CONFIG_CROSS_COMPILER_PREFIX="'"$uclibc_cross"'"' >>.config
61echo 'CONFIG_STATIC=y' >>.config 57echo 'CONFIG_STATIC=y' >>.config
62} 58}
63 59
64# If NOMMU, remove some things
65grep -q ^CONFIG_NOMMU= .config && {
66cat .config \
67| grep -v ^CONFIG_ASH= \
68| grep -v ^CONFIG_FEATURE_SH_IS_ASH= \
69| cat >.config.new
70mv .config.new .config
71}
72
73# If STATIC, remove some things 60# If STATIC, remove some things
74# PAM with static linking is probably pointless 61# PAM with static linking is probably pointless
75# (but I need to try - now I don't have libpam.a on my system, only libpam.so) 62# (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
83# Regenerate .config with default answers for yanked-off options 70# Regenerate .config with default answers for yanked-off options
84{ yes "" | make oldconfig >/dev/null; } || exit 1 71{ yes "" | make oldconfig >/dev/null; } || exit 1
85 72
86nice -n 10 make 2>&1 | tee -a make.log 73nice -n 10 make $MAKEOPTS 2>&1 | tee -a make.log
87 74
88test -x busybox && { 75test -x busybox && {
89 cd .. 76 cd ..