From b8935d00b0a60be24ee9073349c2a185cebbacd4 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sun, 15 Jan 2017 20:16:27 +0100 Subject: sha512: use larger constant table only if sha512 is in fact selected function old new delta sha_K 640 256 -384 Signed-off-by: Denys Vlasenko --- make_single_applets.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'make_single_applets.sh') diff --git a/make_single_applets.sh b/make_single_applets.sh index 03a5c324f..8ad7a7406 100755 --- a/make_single_applets.sh +++ b/make_single_applets.sh @@ -30,9 +30,12 @@ done trap 'test -f .config.SV && mv .config.SV .config && touch .config' EXIT + # Turn on each applet individually and build single-applet executable +# (give config names on command line to build only those) +test $# = 0 && set -- $apps fail=0 -for app in $apps; do +for app; do # Only if it was indeed originally enabled... { echo "$cfg" | grep -q "^CONFIG_${app}=y\$"; } || continue -- cgit v1.2.3