aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* | ash: revise handling of builtin environment variables during forkRon Yorston2018-03-311-32/+24
* | ash: copy environment variables when importing themRon Yorston2018-03-301-0/+4
* | ash: use SIGTERM to kill processesRon Yorston2018-03-271-1/+9
* | win32: add a function to convert backslashes to slashesRon Yorston2018-03-181-6/+2
* | ash: remove special treatment of device filesRon Yorston2018-03-151-20/+0
* | Merge branch 'busybox' into mergeRon Yorston2018-03-011-6/+17
|\|
| * ash : fix double-quoted "\z" handlingDenys Vlasenko2018-02-131-6/+17
* | Remove fake signal-handling codeRon Yorston2018-03-011-3/+10
* | ash: changes to command resolution, execution and displayRon Yorston2018-02-281-23/+55
* | win32: move detection of file formats to stat(2)Ron Yorston2018-02-261-5/+1
* | win32: add support for batch filesRon Yorston2018-02-261-18/+22
* | ash: tidy up /dev/null redirectionRon Yorston2018-02-221-11/+6
* | ash: use correct size for tblentryRon Yorston2018-02-191-2/+2
* | ash: allow waitpid_child to blockRon Yorston2018-02-171-1/+1
* | 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