| Commit message (Expand) | Author | Age | Files | Lines |
* | ash: allow nofork applets in Windows on ARM + UCRT | Ron Yorston | 2024-02-08 | 1 | -1/+2 |
* | win32: rearrange applet override handling | Ron Yorston | 2024-02-02 | 1 | -5/+5 |
* | Fix POSIX build in standalone shell mode | Ron Yorston | 2024-01-23 | 1 | -2/+2 |
* | ash: workaround environment issue in Windows on ARM | Ron Yorston | 2024-01-18 | 1 | -1/+2 |
* | ash: further reduce forkshell relocation block | Ron Yorston | 2024-01-16 | 1 | -17/+22 |
* | ash: reduce size of forkshell relocation block | Ron Yorston | 2024-01-15 | 1 | -12/+12 |
* | ash: code shrink forkshell debug | Ron Yorston | 2024-01-15 | 1 | -6/+0 |
* | ash: add more checks to forkshell debug | Ron Yorston | 2024-01-14 | 1 | -15/+36 |
* | ash: special case in creation of pipeline | Ron Yorston | 2024-01-14 | 1 | -1/+3 |
* | win32: make the clang build less crashy | Ron Yorston | 2024-01-03 | 1 | -6/+2 |
* | ash: avoid crash when job table is empty | Ron Yorston | 2023-12-25 | 1 | -6/+8 |
* | win32: code shrink applet overrides | Ron Yorston | 2023-12-10 | 1 | -45/+4 |
* | Merge branch 'busybox' into mergeFRP-5236-g7dff7f376 | Ron Yorston | 2023-12-05 | 1 | -8/+0 |
|\ |
|
| * | sleep: fix "sleep -- ARGS" | Denys Vlasenko | 2023-10-02 | 1 | -8/+0 |
* | | ash: add options to control globbing of hidden files | Ron Yorston | 2023-09-20 | 1 | -8/+41 |
* | | win32: convert exit codes | Ron Yorston | 2023-09-14 | 1 | -13/+2 |
* | | ash: fix signal handling | Ron Yorston | 2023-09-13 | 1 | -1/+2 |
* | | ash: initialize basepf.buf in ash (2) | Ron Yorston | 2023-08-31 | 1 | -1/+1 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2023-08-31 | 1 | -1/+1 |
|\| |
|
| * | ash: initialize basepf.buf in ash | zhuyan | 2023-08-31 | 1 | -1/+1 |
* | | ash: changes to login shell functionality | Ron Yorston | 2023-08-30 | 1 | -0/+7 |
* | | ash: detect console state on shell start upnoconsole2 | Ron Yorston | 2023-08-20 | 1 | -0/+31 |
* | | ash: detect native Windows environment on WineFRP-5181-g5c1a3b00e | Ron Yorston | 2023-08-17 | 1 | -2/+18 |
* | | ash: improved support for trap built-in | Ron Yorston | 2023-08-15 | 1 | -9/+23 |
* | | ash: code shrink | Ron Yorston | 2023-08-15 | 1 | -10/+6 |
* | | ash: improved support for jobs built-in | Ron Yorston | 2023-08-08 | 1 | -7/+141 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2023-07-13 | 78 | -387/+874 |
|\| |
|
| * | Update applet size estimates | Denys Vlasenko | 2023-07-10 | 3 | -3/+3 |
| * | ash: tweak comments, no code changes | Denys Vlasenko | 2023-07-10 | 1 | -6/+7 |
| * | ash: remove "volatile" specifier from suppress_int | Denys Vlasenko | 2023-07-10 | 1 | -4/+11 |
| * | ash: disable sleep as builtin, closes 15619 | Denys Vlasenko | 2023-07-10 | 1 | -5/+17 |
| * | hush: fix a compile failure | Denys Vlasenko | 2023-07-08 | 1 | -1/+1 |
| * | ash: disable check for "good" function name, bash does not check this | Denys Vlasenko | 2023-07-04 | 3 | -11/+17 |
| * | hush: quote values in "readonly" output | Denys Vlasenko | 2023-07-03 | 1 | -4/+11 |
| * | shell/math: avoid $((3**999999999999999999)) to take years | Denys Vlasenko | 2023-07-02 | 1 | -3/+14 |
| * | shell/math: do not accept $((36#@)) | Denys Vlasenko | 2023-07-02 | 1 | -16/+22 |
| * | shell/math: code shrink | Denys Vlasenko | 2023-06-30 | 1 | -4/+7 |
| * | shell/math: code shrink | Denys Vlasenko | 2023-06-29 | 1 | -11/+13 |
| * | shell/math: code shrink | Denys Vlasenko | 2023-06-28 | 1 | -8/+10 |
| * | shell/math: improve comments | Denys Vlasenko | 2023-06-26 | 1 | -2/+4 |
| * | shell/math: rename TOK_NUM to TOK_VALUE, improve comments | Denys Vlasenko | 2023-06-26 | 1 | -24/+25 |
| * | shell/math: bash-compatible handling of too large numbers | Denys Vlasenko | 2023-06-25 | 9 | -44/+118 |
| * | shell/math: disable debug again | Denys Vlasenko | 2023-06-19 | 1 | -1/+1 |
| * | shell/math: $((1?)) has one-too-small opstack, fix this | Denys Vlasenko | 2023-06-19 | 1 | -1/+2 |
| * | shell/math: fix comments about jammed-together num+num corner cases | Denys Vlasenko | 2023-06-19 | 1 | -8/+16 |
| * | shell/math: add note on ERANGE | Denys Vlasenko | 2023-06-18 | 1 | -4/+11 |
| * | shell/math: explain why we use separate &end | Denys Vlasenko | 2023-06-18 | 1 | -1/+1 |
| * | shell/math: code shrink | Denys Vlasenko | 2023-06-18 | 1 | -2/+5 |
| * | shell/math: eliminate redundant endofname() | Denys Vlasenko | 2023-06-18 | 1 | -8/+8 |
| * | shell: typo fix in tests | Denys Vlasenko | 2023-06-18 | 2 | -2/+2 |