diff options
author | Denys Vlasenko | 2015-10-11 16:27:55 +0200 |
---|---|---|
committer | Denys Vlasenko | 2015-10-11 16:27:55 +0200 |
commit | 69c8c699aaa69e281e4a01be0f48a6498d3ac7cb (patch) | |
tree | d3357d2791f4d20ab75d2f45004f1ccf7928670d /scripts/randomtest | |
parent | 005c492c40ff833a99abd251872ec60661344474 (diff) | |
download | busybox-69c8c699aaa69e281e4a01be0f48a6498d3ac7cb.zip busybox-69c8c699aaa69e281e4a01be0f48a6498d3ac7cb.tar.gz |
randconfig fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'scripts/randomtest')
-rwxr-xr-x | scripts/randomtest | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/randomtest b/scripts/randomtest index d2b26bc..e2513d0 100755 --- a/scripts/randomtest +++ b/scripts/randomtest @@ -65,14 +65,16 @@ if test x"$LIBC" = x"uclibc"; then | grep -v CONFIG_BUILD_LIBBUSYBOX \ | grep -v CONFIG_PIE \ \ - | grep -v CONFIG_FEATURE_TOUCH_NODEREF \ | grep -v CONFIG_FEATURE_2_4_MODULES \ + | grep -v CONFIG_FEATURE_SYNC_FANCY \ + | grep -v CONFIG_FEATURE_TOUCH_NODEREF \ >.config.new mv .config.new .config echo 'CONFIG_STATIC=y' >>.config echo '# CONFIG_BUILD_LIBBUSYBOX is not set' >>.config echo '# CONFIG_PIE is not set' >>.config echo '# CONFIG_FEATURE_2_4_MODULES is not set' >>.config + echo '# CONFIG_FEATURE_SYNC_FANCY is not set' >>.config echo '# CONFIG_FEATURE_TOUCH_NODEREF is not set' >>.config fi |