summaryrefslogtreecommitdiff
AgeCommit messageAuthorFilesLines
2017-06-088.0 and 7.1 share one code, distinguish different parts with PLATFORM_SDK_VER...Xindong Xu8-3/+13665
2017-05-25merge with busybox 1.26.2Xindong Xu1303-57138/+32187
2017-01-10ash: fix open fds leaking in redirects. Closes 9561Denys Vlasenko5-4/+39
2017-01-10hush: correct exitcode for unterminated ')' - exitcode2.tests testcaseDenys Vlasenko1-2/+7
2017-01-10ash: fix error code regressionRon Yorston5-2/+38
2017-01-01Make it possible to select "sh" and "bash" aliases without selecting ash or hushDenys Vlasenko9-118/+120
2017-01-01shell: move "config" blocks above their use in coditional includesDenys Vlasenko2-111/+110
2017-01-01Tweak some config defaults; fix MODPROBE_SMALL ordering in "make config"Denys Vlasenko5-39/+41
2017-01-01ash: clarify uclibc glob() bug in commentDenys Vlasenko1-0/+3
2017-01-01ash: error out if ASH_INTERNAL_GLOB is not selected on uClibcDenys Vlasenko1-0/+8
2016-12-12ash: fix signed char expansion bugDenys Vlasenko1-9/+21
2016-12-12shell: suppress "unused var/func" warnings on some configsDenys Vlasenko2-10/+10
2016-11-25ash,hush: make ^C in interactive mode visually much closer to bash behaviorDenys Vlasenko3-8/+15
2016-11-24ash,hush: ^C from command line should set $? to 128+SIGINTDenys Vlasenko2-5/+22
2016-11-23test: make [ and [[ forms individually selectableDenys Vlasenko3-9/+29
2016-11-08hush: make getch/peek functions directly calledDenys Vlasenko1-27/+24
2016-11-08hush: renumber PIPE_foo, make PIPE_SEQ = 0Denys Vlasenko1-5/+4
2016-11-08hush: small optimization in run_listDenys Vlasenko1-7/+8
2016-11-08hush: deindent large block of code, no code changesDenys Vlasenko1-58/+57
2016-11-08hush: simplify insert_bg_jobsDenys Vlasenko1-10/+8
2016-11-08hush: make "wait %1" less likely to play with signal maskDenys Vlasenko1-8/+7
2016-11-07hush: rework "wait %jobspec" to work in non-interactive shells tooDenys Vlasenko9-13/+28
2016-11-07hush: "wait $!; echo $?" should return 127 if $! already exitedDenys Vlasenko1-4/+5
2016-11-07hush: implement "wait %jobspec"Denys Vlasenko1-29/+88
2016-11-07hush: factor out %jobspec parsingDenys Vlasenko1-11/+22
2016-11-07hush: comment fixDenys Vlasenko1-2/+2
2016-11-07hush: do not allow sh -c '{ echo boo }'Denys Vlasenko1-2/+4
2016-11-04hush: case logic for setting $? was still wrongDenys Vlasenko1-4/+12
2016-11-04hush: non-matching "case" statement sets $? to 0Denys Vlasenko1-0/+2
2016-11-04hush: allow { cmd } to not be terminated by semicolon in some casesDenys Vlasenko5-6/+58
2016-11-04ash: fix "duplicate local" code (forgot to re-enable interrupts)Denys Vlasenko1-3/+20
2016-11-03ash: while (!got_sig) pause() is not reliable, use sigsuspend()Denys Vlasenko1-5/+6
2016-10-30ash: if using libc glob(), skip it if no metachars are in wordDenys Vlasenko1-0/+15
2016-10-30ash: fix bit-rotten debug infrastructureDenys Vlasenko1-14/+7
2016-10-30ash: make popfile() anfter popallfiles() safeDenys Vlasenko1-2/+5
2016-10-28hush: fix "(sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?"Denys Vlasenko1-4/+14
2016-10-28hush: fix "wait PID"Denys Vlasenko7-174/+246
2016-10-28ash: use pause(), not sigsuspend(), in wait builtinDenys Vlasenko1-26/+31
2016-10-28ash: fix interactive "command eval STRING" exiting on errors.Denys Vlasenko3-1/+33
2016-10-27ash: [JOBS] Fix dowait signal raceDenys Vlasenko1-13/+70
2016-10-27ash: [SIGNAL] Remove EXSIGDenys Vlasenko1-64/+23
2016-10-27ash: open-code blocking_dowait_with_raise_on_sig()Denys Vlasenko1-18/+7
2016-10-27ash: return to DOWAIT_* constants similar to dash, no logic changesDenys Vlasenko1-11/+16
2016-10-27ash: delete leftovers from "simplify EOF/newline handling in list parser" commitDenys Vlasenko1-4/+0
2016-10-27ash: [EXPAND] Fix ifsfirst/ifslastp leakDenys Vlasenko1-9/+20
2016-10-27ash: move ifsbreakup() and ifsfree() upDenys Vlasenko1-110/+110
2016-10-27ash: partially sync with dash on "fork if traps are set" logicDenys Vlasenko1-5/+6
2016-10-27ash: [SHELL] Expand ENV before using itDenys Vlasenko2-10/+8
2016-10-27ash: comment tweaks, no code changesDenys Vlasenko1-7/+12
2016-10-26ash: optimize tryexec(): avoid one allocationDenys Vlasenko1-20/+11
[next]