aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* | Merge branch 'busybox' into mergeRon Yorston2018-02-131-79/+251
|\|
| * ash: make it possible to disable "const global ptr" optimizationDenys Vlasenko2018-01-281-3/+16
| * ash: add LINENO supportDenys Vlasenko2018-01-271-32/+95
| * hush: add HUSH_BASH_SOURCE_CURDIR config option, to be on par with ashDenys Vlasenko2018-01-271-2/+2
| * ash: introduce a config option to search current directory for sourced filesDenys Vlasenko2018-01-261-1/+12
| * ash: add support for command_not_found_handle hook function (bashism)William Pitcock2018-01-241-1/+23
| * ash: a bit of NOFORK code should only be active if FEATURE_SH_STANDALONE=yDenys Vlasenko2018-01-151-1/+3
| * ash: ALWAYS_INLINE grabstackblock()Denys Vlasenko2018-01-101-1/+1
| * ash: make ${v:N:M} more robust for very large M by clamping to MIN/MAX_INTDenys Vlasenko2018-01-101-13/+25
| * ash: add comment explaining last changeDenys Vlasenko2018-01-091-6/+6
| * ash: fix var_bash5.tests - ${VAR/pattern/repl} constructDenys Vlasenko2018-01-091-25/+72
| * ash: fail if 'shift' operand is out of rangeIngo van Lil2018-01-071-1/+1
| * randomconfig fixesDenys Vlasenko2017-12-311-1/+1
* | Merge branch 'busybox' into mergeRon Yorston2017-11-031-21/+84
|\|
| * ash: fix nofork bug where environment is not properly passed to a commandDenys Vlasenko2017-11-031-5/+40
| * ash: retain envvars with bad names in initial environment. Closes 10231Denys Vlasenko2017-11-021-4/+22
| * whitespace fixesDenys Vlasenko2017-10-121-3/+3
| * typo fixDenys Vlasenko2017-10-121-1/+1
| * ash: survive failures in $PS1 expansion. Closes 10371Denys Vlasenko2017-10-121-1/+18
| * use %m printf specifier where appropriateDenys Vlasenko2017-09-291-8/+1
* | Merge branch 'busybox' into mergeRon Yorston2017-09-271-7/+7
|\|
| * ash: more s/error/perror/ for better error reportingDenys Vlasenko2017-08-231-5/+5
| * ash: when cd fails, say whyJohannes Schindelin2017-08-231-1/+1
| * ash: report reason when a script file could not be openedJohannes Schindelin2017-08-231-1/+1
* | ash: stop assuming that pointers and ints are interchangeableJohannes Schindelin2017-08-311-3/+3
* | ash: avoid assumption about sizeof(long) == sizeof(void *)Johannes Schindelin2017-08-311-1/+1
* | win32: shrink code to detect .exe filesRon Yorston2017-08-301-9/+4
* | Revert "ash: allow long-running nofork applets to be interrupted"Ron Yorston2017-08-221-9/+1
* | Merge branch 'busybox' into mergeRon Yorston2017-08-221-42/+110
|\|
| * ash: unset OPTARG if getopts exits 1, support OPTERR=0 behaviorDenys Vlasenko2017-08-151-2/+11
| * ash,hush: comment and debug tweaks, no code changesDenys Vlasenko2017-08-151-2/+3
| * ash: one "current line = 1" might be missing, fix thatDenys Vlasenko2017-08-141-4/+5
| * ash: [PARSER] Catch variable length expansions on non-existant specialsDenys Vlasenko2017-08-141-3/+9
| * ash: fix "unset OPTIND" throwing an error messageDenys Vlasenko2017-08-111-1/+3
| * hush: optional times builtinDenys Vlasenko2017-08-101-7/+9
| * ash: implement -d DELIM option for readJohannes Schindelin2017-08-091-3/+12
| * noexec: consolidate codeDenys Vlasenko2017-08-071-7/+1
| * noexec: do GETOPT_RESET() before entering APPLET_main()Denys Vlasenko2017-08-071-0/+1
| * noexec: set comm field for noexecsDenys Vlasenko2017-08-071-1/+4
| * free,stat: make NOEXECDenys Vlasenko2017-08-071-0/+2
| * ash: do not set a signal to SIG_DFL if it already isDenys Vlasenko2017-08-061-1/+7
| * ash: BASH_XTRACEFD bashismDenys Vlasenko2017-08-041-0/+10
| * ash: remove no-longer-used variableJohannes Schindelin2017-08-041-2/+0
| * ash: INT_OFF/INT_ON around run_nofork_applet()Denys Vlasenko2017-08-041-3/+19
| * sheel: improve comments on signal handlingDenys Vlasenko2017-08-041-11/+16
| * ash: add a fixme comment at run_nofork_appletDenys Vlasenko2017-08-031-1/+3
| * line editing: make read_line_input() not take timeout paramDenys Vlasenko2017-08-021-2/+3
| * do not use `a' quoting style in commentsDenys Vlasenko2017-08-021-1/+1
* | ash: improvements to ctrl-c handlingRon Yorston2017-08-031-1/+4
* | ash: fixes to wait statusRon Yorston2017-08-031-2/+2