summaryrefslogtreecommitdiff
path: root/make_single_applets.sh
Commit message (Collapse)AuthorAgeFilesLines
* make_single_applets.sh: switch off nologin deps optionDenys Vlasenko2020-06-241-0/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* make_single_applets.sh: fix for BSS trickDenys Vlasenko2018-12-311-0/+10
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* fix make_single_applets.shDenys Vlasenko2018-12-061-0/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* randomconfig fixesDenys Vlasenko2017-12-311-1/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* make_single_applets: fix ": $((fail++))" expansion errorKang-Che Sung2017-07-151-3/+3
| | | | | | | | | | | | $((fail++)) is not a required expression in POSIX, and in "dash" it could produce an error like this: ./make_single_applets.sh: 61: arithmetic expression: expecting primary: "fail++" Replace this with something portable: fail=$((fail+1)) would work. Signed-off-by: Kang-Che Sung <explorer09@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* sha512: use larger constant table only if sha512 is in fact selectedDenys Vlasenko2017-01-151-1/+4
| | | | | | | function old new delta sha_K 640 256 -384 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* make_single_applets.sh: show errors and warningsDenys Vlasenko2017-01-091-1/+7
| | | | | | While at it, fix one warning in modprobe-small.c Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* make_single_applets.sh: SH_IS_HUSH needs special handling tooDenys Vlasenko2016-12-231-4/+4
| | | | | | | Well, in fact it works (make oldconfig throws only a warning when it sees both SH_IS_HUSH=y and SH_IS_NONE=y), but let's be nice. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Make it possible to select "sh" and "bash" aliases without selecting ash or hushDenys Vlasenko2016-12-231-0/+11
| | | | | | | The same can be done for msh, but we are probably better off just deleting it in a next versio or two. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* modprobe-small: make applets individually selectableDenys Vlasenko2016-12-231-1/+6
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* make_single_applets.sh: a tool to check single-applet buildsDenys Vlasenko2016-12-231-0/+57
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>