summaryrefslogtreecommitdiff
AgeCommit messageAuthorFilesLines
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-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-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-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
2016-10-26ash: [CD] Lookup PWD after going through CDPATHDenys Vlasenko1-10/+10
2016-10-26ash: [MEMALLOC] Made grabstackblock an inline wrapper for stallocDenys Vlasenko1-4/+2
2016-10-26ash: [VAR] Remove setvarsafeDenys Vlasenko1-50/+20
2016-10-26ash: use shellparam.optind/optoff in getopts() directly, not through pointersDenys Vlasenko1-12/+14
2016-10-26ash: [PARSER] Size optimisations in parameter expansion parserDenys Vlasenko1-10/+7
2016-10-26ash: [PARSER] Recognise here-doc delimiters terminated by EOFDenys Vlasenko9-3/+29
2016-10-26ash: [PARSER] Fix parsing of ${##1}Denys Vlasenko5-10/+38
2016-10-26ash: [REDIR] Remove redundant CLOEXEC callsDenys Vlasenko1-13/+4
2016-10-26ash: [REDIR] Replace copyfd by savefd and use dup2 elsewhereDenys Vlasenko1-27/+31
2016-10-26ash: [BUILTIN] Treat OPTIND=0 in the same way as OPTIND=1Denys Vlasenko1-3/+1
2016-10-25ash: [PARSER] Report substition errors at expansion timeDenys Vlasenko1-9/+12
2016-10-25ash: [REDIR] Move null redirect checks into callerDenys Vlasenko1-15/+6
2016-10-25ash: [PARSER] Do not show prompts in expandstrDenys Vlasenko1-0/+6
2016-10-25ash: [EXPAND] Removed herefd hackDenys Vlasenko1-39/+22
2016-10-25ash: [SHELL] Move flushall to the point just before _exitDenys Vlasenko1-1/+1
2016-10-25ash: [EVAL] Let funcnode refer to a function definition, not its first commandDenys Vlasenko1-4/+4
2016-10-25ash: [REDIR] Remove EMFILE special caseDenys Vlasenko1-7/+1
2016-10-25ash: [EVAL] Check exit for eval NSUBSHELLDenys Vlasenko1-3/+1
2016-10-25ash: add comment explaining "set -e; $(cmd)" discrepancyDenys Vlasenko1-0/+8
[next]