| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | | ash: proper accounting for backspaces in the read builtin | Ron Yorston | 2020-05-14 | 1 | -0/+1 |
* | | inotifyd: WIN32 port | Ron Yorston | 2020-04-15 | 4 | -2/+213 |
* | | winansi: more fine-grained control of ANSI emulation | Ron Yorston | 2020-04-13 | 1 | -2/+34 |
* | | ash: reset ANSI emulation when BB_SKIP_ANSI_EMULATION changes | Ron Yorston | 2020-04-13 | 5 | -10/+22 |
* | | Fix POSIX buildFRP-3445-g10e14d5eb | Ron Yorston | 2020-04-11 | 2 | -2/+2 |
* | | httpd: allow use of MD5-encrypted passwords | Ron Yorston | 2020-04-09 | 1 | -1/+12 |
* | | httpd: prevent access to config file and authenticated URLs | Ron Yorston | 2020-04-08 | 1 | -0/+12 |
* | | httpd: don't change directory in inetd mode | Ron Yorston | 2020-04-07 | 3 | -11/+17 |
* | | time: WIN32 port | Ron Yorston | 2020-04-06 | 6 | -12/+106 |
* | | httpd: enable in default configurations | Ron Yorston | 2020-04-05 | 3 | -13/+15 |
* | | httpd: WIN32 port | Ron Yorston | 2020-04-05 | 1 | -2/+133 |
* | | win32: new functions: getpeername(2), mingw_spawn_detach() | Ron Yorston | 2020-04-05 | 3 | -3/+30 |
* | | libbb: rearrange command line processing | Ron Yorston | 2020-04-05 | 1 | -13/+11 |
* | | xargs: restore correct behaviour of -n option | Ron Yorston | 2020-03-29 | 2 | -1/+12 |
* | | win32: more improvements to 'c:file' paths | Ron Yorston | 2020-03-29 | 2 | -3/+4 |
* | | timeout: fix utter brokenness | Ron Yorston | 2020-03-29 | 1 | -0/+1 |
* | | dd: create a sparse file when seek=N is used | Ron Yorston | 2020-03-24 | 3 | -0/+21 |
* | | win32: stat(2): return correct st_blocks for compressed/sparse files | Ron Yorston | 2020-03-24 | 1 | -1/+13 |
* | | win32: improve handling of 'c:file' paths for executables | Ron Yorston | 2020-03-18 | 2 | -3/+11 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2020-02-25 | 1 | -207/+183 |
|\| |
|
| * | ash: expand: Fix multiple issues with EXP_DISCARD in evalvar | Denys Vlasenko | 2020-02-24 | 1 | -14/+14 |
| * | ash: expand: Do not reprocess data when expanding words | Denys Vlasenko | 2020-02-24 | 1 | -178/+154 |
| * | ash: move TRACE statement in evalcommand() | Ron Yorston | 2020-02-24 | 1 | -1/+2 |
| * | ash: rename some function parameters to match dash | Denys Vlasenko | 2020-02-24 | 1 | -29/+29 |
| * | ash: rename stack_nputstr() back to stnputs() to match dash | Denys Vlasenko | 2020-02-24 | 1 | -3/+3 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2020-02-25 | 8 | -59/+101 |
|\| |
|
| * | ash: Expand here-documents in the current shell environment | Denys Vlasenko | 2020-02-22 | 3 | -13/+22 |
| * | ash: parser: Do not push token back before parseheredoc | Denys Vlasenko | 2020-02-22 | 1 | -1/+4 |
| * | ash: parser: Fix old-style command substitution here-document crash | Denys Vlasenko | 2020-02-22 | 1 | -1/+1 |
| * | hush: fix negative_arith.tests: glob-protect dash in "$((arith))" | Denys Vlasenko | 2020-02-21 | 1 | -5/+19 |
| * | ash: expand: Ensure result is escaped in cvtnum | Denys Vlasenko | 2020-02-21 | 5 | -25/+44 |
| * | ash: memalloc: Avoid looping in growstackto | Denys Vlasenko | 2020-02-21 | 1 | -7/+7 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2020-02-21 | 18 | -77/+226 |
|\| |
|
| * | hush: make "exit" in trap use pre-trap exitcode - fix for nested trap | Denys Vlasenko | 2020-02-21 | 5 | -1/+29 |
| * | hush: make "exit" in trap use pre-trap exitcode | Denys Vlasenko | 2020-02-21 | 1 | -3/+13 |
| * | ash: eval: Only restore exit status on exit/return | Denys Vlasenko | 2020-02-20 | 1 | -48/+51 |
| * | ash: Return without arguments in a trap should use status outside traps | Denys Vlasenko | 2020-02-20 | 1 | -5/+18 |
| * | hush: implement "return NUM in trap sets $? after trap" | Denys Vlasenko | 2020-02-20 | 13 | -1/+98 |
| * | ash: return exit status of nofork applets (again) | Ron Yorston | 2020-02-20 | 1 | -1/+1 |
| * | ash: expand: Merge syntax/quotes in memtodest with flags | Denys Vlasenko | 2020-02-20 | 1 | -21/+19 |
* | | ash: merge changes to local variables from upstream | Ron Yorston | 2020-02-21 | 6 | -176/+156 |
|\| |
|
| * | ash: eval: Always set localvar_stop | Denys Vlasenko | 2020-02-20 | 1 | -11/+12 |
| * | ash: eval: Replace with listsetvar with mklocal/setvareq | Denys Vlasenko | 2020-02-20 | 1 | -35/+28 |
| * | ash: eval: Fail immediately with redirections errors for simple command | Denys Vlasenko | 2020-02-20 | 2 | -17/+16 |
| * | ash: eval: Add assignment built-in support again | Denys Vlasenko | 2020-02-20 | 1 | -85/+91 |
| * | ash,hush: testcase for "exit" without arguments in a trap | Denys Vlasenko | 2020-02-19 | 4 | -0/+20 |
* | | ash: remove unused signal handling variables | Ron Yorston | 2020-02-21 | 1 | -3/+11 |
* | | ash: fixes to make the last merge work | Ron Yorston | 2020-02-20 | 1 | -1/+5 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2020-02-20 | 2 | -91/+106 |
|\| |
|
| * | ash,hush: add comment about masked SIGCHLD, handle SIG_IGNed SIGHUP as in bash | Denys Vlasenko | 2020-02-18 | 2 | -9/+37 |