aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * timeout: fix arguments to match coreutilsDenys Vlasenko2018-08-031-9/+12
| * extend fractional duration support to "top -d N.N" and "timeout"Denys Vlasenko2018-08-035-81/+101
| * ntpd: show real, unclamped delays on low-latency networksDenys Vlasenko2018-08-031-14/+17
| * ls: When -h is passed, the total should also be in human unitsLauri Kasanen2018-08-011-1/+9
| * nslookup: add support for search domains, closes 11161Denys Vlasenko2018-08-011-22/+82
| * cp: placate gcc8Denys Vlasenko2018-08-011-1/+1
| * Add chroot support to chpasswdJon Kolb2018-08-011-5/+13
| * udhcpc: add a cooment about sanitizing DHCP_DOMAIN_NAME, no code changesDenys Vlasenko2018-08-011-0/+6
| * udhcpc: do in fact not allow hostname components which start with dashDenys Vlasenko2018-08-011-4/+6
| * sendmail: use on-stack buffer for AUTH PLAINDenys Vlasenko2018-07-311-11/+27
| * sendmail: code shrink 2Denys Vlasenko2018-07-311-9/+9
| * sendfile: code shrinkDenys Vlasenko2018-07-314-22/+26
| * sendmail: support AUTH PLAIN in addition to AUTH LOGINRaffaello D. Di Napoli2018-07-313-14/+45
| * klogd: code shrinkDenys Vlasenko2018-07-311-4/+7
| * install.sh: don't clobber dangling symlinksBaruch Siach2018-07-311-1/+1
| * klogd: better help textDenys Vlasenko2018-07-311-2/+2
| * hush: speed up ${var:+ARG} for literal ARGsDenys Vlasenko2018-07-311-27/+31
| * hush: fix another case where empty "for" wasn't setting exitcode to 0Denys Vlasenko2018-07-285-1/+13
| * hush: disable debug_indent increment/decrement for HUSH_DEBUG < 2 buildsDenys Vlasenko2018-07-281-2/+2
| * hush: make "set -x" output don't redirectable when fd#2 redirectedDenys Vlasenko2018-07-281-45/+84
| * hush: make "set -x" output closer to bashDenys Vlasenko2018-07-271-18/+60
| * hush: fix "set -x" output prefix overlapping for v="..`cmd`.." caseDenys Vlasenko2018-07-271-14/+20
| * hush: in some cases, expand_on_ifs() relied of uninitialized memoryDenys Vlasenko2018-07-271-2/+13
| * hush: improve set -x: make "+++" indent level increase in `cmd` and eval.Denys Vlasenko2018-07-261-9/+19
| * examples/var_service: add /var/run flag file to ntp.scriptDenys Vlasenko2018-07-261-1/+3
| * htpd: increase MIN_FREQHOLD by 3Denys Vlasenko2018-07-251-3/+3
| * fdisk: code shrinkDenys Vlasenko2018-07-251-5/+27
| * fdisk: sync up with some util-linux 2.31 behaviorDenys Vlasenko2018-07-253-48/+46
| * fdisk: use strtoul[l] instead of atoi, closes 11176Denys Vlasenko2018-07-252-4/+7
* | Update default configurationRon Yorston2018-07-252-4/+12
* | Merge branch 'busybox'Ron Yorston2018-07-25213-1398/+2877
|\|
| * gzip: unbreak FEATURE_GZIP_LEVELS, closes 11171Denys Vlasenko2018-07-241-6/+6
| * hush: fix/explain corner cases of redirection colliding with script fdDenys Vlasenko2018-07-241-12/+49
| * hush: add "heredoc.tests" from ash, tweak ash "is a function" messageDenys Vlasenko2018-07-244-2/+120
| * hush: fix nested redirects colliding with script fdsDenys Vlasenko2018-07-248-98/+175
| * hush: handle backslash-newline in heredoc terminatorsDenys Vlasenko2018-07-245-2/+28
| * hush: fix handling of heredocs not enclosed in groups where they are "declared"Denys Vlasenko2018-07-247-45/+84
| * hush: fix heredoc handling in the "cmd <<EOF ;<newline>" caseDenys Vlasenko2018-07-237-24/+50
| * hush: fix handling of heredocs starting with empty linesDenys Vlasenko2018-07-235-0/+20
| * hexedit: fixes for redraw and down movement causing SEGV on attempt to accessDenys Vlasenko2018-07-231-1/+4
| * hush: never glob result of dquoted "${v:+/bin/c*}"Denys Vlasenko2018-07-205-1/+53
| * hush: tidy up code after previous commitsDenys Vlasenko2018-07-201-48/+43
| * hush: better names for o_free_unsafe() / o_free(), no logic changesDenys Vlasenko2018-07-201-16/+17
| * hush: fix handling of '' in ${var:+ARG}Denys Vlasenko2018-07-207-3/+217
| * hush: fix word splitting in ${v:+ARG} - dollar_altvalue1 testDenys Vlasenko2018-07-205-61/+284
| * hush: expand_vars_to_list() should not assume it starts new wordDenys Vlasenko2018-07-201-8/+10
| * hush: remove pointless "next" var, simplify expand_vars_to_list()Denys Vlasenko2018-07-201-19/+16
| * hush: store "ended_in_ifs" flag in o_stringDenys Vlasenko2018-07-201-18/+19
| * hush: propagate (output,n) parameters into expand_one_var()Denys Vlasenko2018-07-201-14/+49
| * hush: make expand_vars_to_list() a bit more saneDenys Vlasenko2018-07-201-28/+32