aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-02-15add a test case for usage strings to catch people forgetting to add trailing ↵Mike Frysinger
escape in middle of usage
2008-02-15fix microcom usageMike Frysinger
2008-02-14tar: real support for -p. +200 if selected.Denis Vlasenko
By Natanael Copa <natanael.copa at gmail.com>
2008-02-14libbb: filename completion should match dangling symlinks tooDenis Vlasenko
2008-02-14ash: explain why "set -o BOGUS" doesn't abortDenis Vlasenko
2008-02-14ash: make ash -c 'if set -o barfoo 2>/dev/null; then echo foo; else echo ↵Denis Vlasenko
bar; fi' work (fixes bug 1142) function old new delta options 551 565 +14 ash_main 1397 1411 +14 setcmd 77 90 +13 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 3/0 up/down: 41/0) Total: 41 bytes
2008-02-14build system: pass CFLAGS to link stage too (closes bug 1376)Denis Vlasenko
2008-02-14umount: instead of non-standard -D, use -d with opposite meaningDenis Vlasenko
(closes bug 1604) umount: do not try to free loop device or erase mtab if remounted ro umount: do not complain several times about the same mountpoint function old new delta umount_main 646 638 -8 packed_usage 23662 23652 -10 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/2 up/down: 0/-18) Total: -18 bytes
2008-02-14typo fixDenis Vlasenko
2008-02-14tar: do "short EOF" compat only if CONFIG_DESKTOP.Denis Vlasenko
ash: add a comment about new minor bug
2008-02-14add ',' and 'gg' commands (patch from Leo Jay)Paul Fox
2008-02-13reinstate redir.tests with correct permsDenis Vlasenko
2008-02-13ash: add a testcase for recently fixed signal bugDenis Vlasenko
2008-02-13tar: compat: handle tarballs with only one zero block at the endDenis Vlasenko
2008-02-13switch_root: stop at first non-option. Closes bug 1425.Denis Vlasenko
2008-02-13tar: move FNM_LEADING_DIR #define to tar.c - no other users.Denis Vlasenko
Closes bug 1332.
2008-02-13cp: add ENABLE_FEATURE_VERBOSE_CP_MESSAGE. Closes bug 1470Denis Vlasenko
2008-02-13mkswap: fix help text to not lie about supported options.Denis Vlasenko
mkswap: use uint32, not int, to match kernel. mkswap: optimization: use pre-zeroed buffer
2008-02-13sort: -z outputs NUL terminated lines. Closes bug 1591.Denis Vlasenko
2008-02-13syslogd: send '\n'-terminated messages over the network.Denis Vlasenko
fully closes bug 1574. +8 bytes.
2008-02-13build system: don't use -o /dev/null, old gcc can delete /dev/null!Denis Vlasenko
2008-02-12website: add direct links to every last stable release tarballDenis Vlasenko
2008-02-12website: fix EnglishDenis Vlasenko
2008-02-12Announce 1.9.1Denis Vlasenko
2008-02-12msh: stop trying to parse variables in "msh SCRIPT VAR=val param".Denis Vlasenko
They should be passed as ordinary parameters.
2008-02-12msh: instead of fixing "ls | cd", "cd | ls" etc just disallowDenis Vlasenko
builtins in pipes. They make no sense there anyway. msh: shrink umask builtin. function old new delta execute 2508 2509 +1 doset 326 317 -9 forkexec 1370 1345 -25 doumask 165 101 -64 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/3 up/down: 1/-98) Total: -97 bytes
2008-02-12ash: fix warning about _GNU_SOURCE being redefined, fix typo in comment.Denis Vlasenko
2008-02-12msh: shrink, mainly by using smallintsDenis Vlasenko
function old new delta synio 251 263 +12 filechar 310 315 +5 subgetc 781 785 +4 brkcontin 106 109 +3 ... yylex 981 976 -5 execute 2513 2508 -5 waitfor 321 315 -6 onintr 103 97 -6 doset 332 326 -6 doexec 186 180 -6 yyparse 65 57 -8 thenpart 135 126 -9 forkexec 1379 1370 -9 onecommand 457 433 -24 newtp 52 28 -24 command 1086 1061 -25 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 7/23 up/down: 27/-163) Total: -136 bytes
2008-02-11msh: do not run pipes where last command is a builtinDenis Vlasenko
msh: code shrink and some renames for better readability
2008-02-11httpd: fix bug where we did chdir("") if CGI path had only one "/".Denis Vlasenko
httpd: fix bug 2004: wrong argv when interpreter is invoked +8 bytes growth
2008-02-11- shrink a tiny bit (-30Bytes)Bernhard Reutner-Fischer
2008-02-11- spelling fixesBernhard Reutner-Fischer
2008-02-11hush: die_sllep needs restoring only if job control is onDenis Vlasenko
2008-02-11hush: close-on-exec interactive_fdDenis Vlasenko
2008-02-11hush: set CLOEXEC on script file being executedDenis Vlasenko
2008-02-11hush: fix the commentDenis Vlasenko
2008-02-11hush: reset die_sleep to 0 in child after forkDenis Vlasenko
2008-02-10getpot: add support for "a+" specifier for nonnegative int parameters.Denis Vlasenko
By Vladimir Dronnikov <dronnikov at gmail.com>. fdisk and top are converted as an example. function old new delta getopt32 1340 1370 +30 top_main 1137 1120 -17 fdisk_main 3033 2949 -84 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/2 up/down: 30/-101) Total: -71 bytes
2008-02-10microcom: read more than 1 byte from device, if possibleDenis Vlasenko
2008-02-10ash: fix "orwell bug" 1984. Testcase:Denis Vlasenko
trap_handler() { echo trap } trap trap_handler USR1 sleep 3600 & while true; do wait; done
2008-02-10hush: small fixes to docs/testsuiteDenis Vlasenko
2008-02-10hush: reinstate `cmd` handling for NOMMU (with fat big warning).Denis Vlasenko
hush: fix a case where none of pipe members could be started because of fork failure hush: rename functions: xxx_real -> xxx hush: try to add a bit more of vfork-friendliness hush: add rudimentary design docs hush: add TODO (newly discovered bug with globbing)
2008-02-09microcom: compile fixesDenis Vlasenko
2008-02-09microcom: split -d (delay) option away from -tDenis Vlasenko
2008-02-09build system: make it do without od -tDenis Vlasenko
2008-02-09mktemp: don't advertise -q optionDenis Vlasenko
2008-02-09mktemp: support -p DIR (Timo Teras <timo.teras at iki.fi>)Denis Vlasenko
packed_usage 23595 23660 +65 mktemp_main 139 157 +18
2008-02-09test: fix mishandling of 'test ! arg1 op arg2 more args'; add testsuiteDenis Vlasenko
2008-02-08sendmail: update from maintainerDenis Vlasenko
2008-02-08microcom: update from maintainerDenis Vlasenko