aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
AgeCommit message (Expand)Author
2017-02-03ash: add INT_OFF/ON around allocationsDenys Vlasenko
2017-01-31ash: improve / fix glob expansionFelix Fietkau
2017-01-29*: add comment about APPLET_ODDNAME formatDenys Vlasenko
2017-01-11ash: commented-out possible fix for 7694Denys Vlasenko
2017-01-11ash: 16-bit ->nprocs field is a pain for many CPUsDenys Vlasenko
2017-01-11ash: split bash compatible extensions into separate defines. No code changesDenys Vlasenko
2017-01-10ash: revert "make dot command search current directory first"Denys Vlasenko
2017-01-10shells: make hush test optional, rename ASH_BUILTIN_foo -> ASH_fooDenys Vlasenko
2017-01-10Big cleanup in config help and descriptionDenys Vlasenko
2017-01-09ash: fix a bug in argv restoration after sourcing a fileDenys Vlasenko
2017-01-07ash: fix open fds leaking in redirects. Closes 9561Denys Vlasenko
2017-01-06ash: explicltly group ash optionsKang-Che Sung
2017-01-03ash: fix error code regressionRon Yorston
2016-12-23Make it possible to select "sh" and "bash" aliases without selecting ash or hushDenys Vlasenko
2016-12-22shell: move "config" blocks above their use in coditional includesDenys Vlasenko
2016-12-22Tweak some config defaults; fix MODPROBE_SMALL ordering in "make config"Denys Vlasenko
2016-12-21ash: clarify uclibc glob() bug in commentDenys Vlasenko
2016-12-21ash: error out if ASH_INTERNAL_GLOB is not selected on uClibcDenys Vlasenko
2016-12-12ash: fix signed char expansion bugDenys Vlasenko
2016-12-12shell: suppress "unused var/func" warnings on some configsDenys Vlasenko
2016-11-25ash,hush: make ^C in interactive mode visually much closer to bash behaviorDenys Vlasenko
2016-11-24ash,hush: ^C from command line should set $? to 128+SIGINTDenys Vlasenko
2016-11-23test: make [ and [[ forms individually selectableDenys Vlasenko
2016-11-04ash: fix "duplicate local" code (forgot to re-enable interrupts)Denys Vlasenko
2016-11-03ash: while (!got_sig) pause() is not reliable, use sigsuspend()Denys Vlasenko
2016-10-30ash: if using libc glob(), skip it if no metachars are in wordDenys Vlasenko
2016-10-30ash: fix bit-rotten debug infrastructureDenys Vlasenko
2016-10-30ash: make popfile() anfter popallfiles() safeDenys Vlasenko
2016-10-28ash: use pause(), not sigsuspend(), in wait builtinDenys Vlasenko
2016-10-28ash: fix interactive "command eval STRING" exiting on errors.Denys Vlasenko
2016-10-27ash: [JOBS] Fix dowait signal raceDenys Vlasenko
2016-10-27ash: [SIGNAL] Remove EXSIGDenys Vlasenko
2016-10-27ash: open-code blocking_dowait_with_raise_on_sig()Denys Vlasenko
2016-10-27ash: return to DOWAIT_* constants similar to dash, no logic changesDenys Vlasenko
2016-10-27ash: delete leftovers from "simplify EOF/newline handling in list parser" commitDenys Vlasenko
2016-10-27ash: [EXPAND] Fix ifsfirst/ifslastp leakDenys Vlasenko
2016-10-27ash: move ifsbreakup() and ifsfree() upDenys Vlasenko
2016-10-27ash: partially sync with dash on "fork if traps are set" logicDenys Vlasenko
2016-10-27ash: [SHELL] Expand ENV before using itDenys Vlasenko
2016-10-27ash: comment tweaks, no code changesDenys Vlasenko
2016-10-26ash: optimize tryexec(): avoid one allocationDenys Vlasenko
2016-10-26ash: [CD] Lookup PWD after going through CDPATHDenys Vlasenko
2016-10-26ash: [MEMALLOC] Made grabstackblock an inline wrapper for stallocDenys Vlasenko
2016-10-26ash: [VAR] Remove setvarsafeDenys Vlasenko
2016-10-26ash: use shellparam.optind/optoff in getopts() directly, not through pointersDenys Vlasenko
2016-10-26ash: [PARSER] Size optimisations in parameter expansion parserDenys Vlasenko
2016-10-26ash: [PARSER] Recognise here-doc delimiters terminated by EOFDenys Vlasenko
2016-10-26ash: [PARSER] Fix parsing of ${##1}Denys Vlasenko
2016-10-26ash: [REDIR] Remove redundant CLOEXEC callsDenys Vlasenko
2016-10-26ash: [REDIR] Replace copyfd by savefd and use dup2 elsewhereDenys Vlasenko