index
:
busybox-w32
ansi
awk_faster
busybox
dscho-kill-gently
embed
fix_backslash
manifest
master
merge
merge_1_19
merge_1_20
noconsole
noconsole2
old
path_search
realpath
stty
su_cmd
su_cmd2
su_cmd3
symlink
tab_completion
tab_completion2
tilde
ucrt_hack
w32_1_26_2
wget-post-file
wip
A mirror of https://github.com/rmyorston/busybox-w32.git
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
shell
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
...
|
*
hush: make export builtin optional
Denys Vlasenko
2017-01-08
1
-11
/
+26
|
*
hush: make umask builtin optional
Denys Vlasenko
2017-01-08
1
-0
/
+13
|
*
hush: make set/unset builtins optional
Denys Vlasenko
2017-01-08
1
-5
/
+35
|
*
hush: make read and trap builtins optional
Denys Vlasenko
2017-01-08
1
-71
/
+118
|
*
hush: kill builtin and kill %jobspec support
Denys Vlasenko
2017-01-08
1
-4
/
+130
|
*
hush: support %%, %+ and % jobspec (meaning "current job")
Denys Vlasenko
2017-01-08
1
-9
/
+21
*
|
ash: make the noconsole option configurable at build time
Ron Yorston
2017-02-07
1
-4
/
+20
*
|
Merge branch 'busybox' into merge
Ron Yorston
2017-01-08
6
-5
/
+72
|
\
|
|
*
ash: fix open fds leaking in redirects. Closes 9561
Denys Vlasenko
2017-01-07
5
-4
/
+39
|
*
ash: explicltly group ash options
Kang-Che Sung
2017-01-06
2
-0
/
+11
|
*
shell: clarify help text of CONFIG_{SH,BASH}_IS_* options
Kang-Che Sung
2017-01-04
1
-1
/
+22
*
|
Merge branch 'busybox' into merge
Ron Yorston
2017-01-04
9
-229
/
+275
|
\
|
|
*
hush: correct exitcode for unterminated ')' - exitcode2.tests testcase
Denys Vlasenko
2017-01-03
1
-2
/
+7
|
*
ash: fix error code regression
Ron Yorston
2017-01-03
5
-2
/
+38
|
*
Make it possible to select "sh" and "bash" aliases without selecting ash or hush
Denys Vlasenko
2016-12-23
5
-110
/
+93
|
*
shell: move "config" blocks above their use in coditional includes
Denys Vlasenko
2016-12-22
2
-111
/
+110
|
*
Tweak some config defaults; fix MODPROBE_SMALL ordering in "make config"
Denys Vlasenko
2016-12-22
1
-3
/
+2
|
*
ash: clarify uclibc glob() bug in comment
Denys Vlasenko
2016-12-21
1
-0
/
+3
|
*
ash: error out if ASH_INTERNAL_GLOB is not selected on uClibc
Denys Vlasenko
2016-12-21
1
-0
/
+8
|
*
ash: fix signed char expansion bug
Denys Vlasenko
2016-12-12
1
-9
/
+21
|
*
shell: suppress "unused var/func" warnings on some configs
Denys Vlasenko
2016-12-12
2
-10
/
+10
*
|
Merge branch 'busybox' into merge
Ron Yorston
2016-11-29
2
-12
/
+36
|
\
|
|
*
ash,hush: make ^C in interactive mode visually much closer to bash behavior
Denys Vlasenko
2016-11-25
2
-7
/
+14
|
*
ash,hush: ^C from command line should set $? to 128+SIGINT
Denys Vlasenko
2016-11-24
2
-5
/
+22
|
*
test: make [ and [[ forms individually selectable
Denys Vlasenko
2016-11-23
1
-2
/
+2
*
|
Merge branch 'busybox' into merge
Ron Yorston
2016-11-10
14
-168
/
+329
|
\
|
|
*
hush: make getch/peek functions directly called
Denys Vlasenko
2016-11-08
1
-27
/
+24
|
*
hush: renumber PIPE_foo, make PIPE_SEQ = 0
Denys Vlasenko
2016-11-08
1
-5
/
+4
|
*
hush: small optimization in run_list
Denys Vlasenko
2016-11-08
1
-7
/
+8
|
*
hush: deindent large block of code, no code changes
Denys Vlasenko
2016-11-08
1
-58
/
+57
|
*
hush: simplify insert_bg_jobs
Denys Vlasenko
2016-11-08
1
-10
/
+8
|
*
hush: make "wait %1" less likely to play with signal mask
Denys Vlasenko
2016-11-08
1
-8
/
+7
|
*
hush: rework "wait %jobspec" to work in non-interactive shells too
Denys Vlasenko
2016-11-08
9
-13
/
+28
|
*
hush: "wait $!; echo $?" should return 127 if $! already exited
Denys Vlasenko
2016-11-07
1
-4
/
+5
|
*
hush: implement "wait %jobspec"
Denys Vlasenko
2016-11-07
1
-29
/
+88
|
*
hush: factor out %jobspec parsing
Denys Vlasenko
2016-11-07
1
-11
/
+22
|
*
hush: comment fix
Denys Vlasenko
2016-11-07
1
-2
/
+2
|
*
hush: do not allow sh -c '{ echo boo }'
Denys Vlasenko
2016-11-07
1
-2
/
+4
|
*
hush: case logic for setting $? was still wrong
Denys Vlasenko
2016-11-04
1
-4
/
+12
|
*
hush: non-matching "case" statement sets $? to 0
Denys Vlasenko
2016-11-04
1
-0
/
+2
|
*
hush: allow { cmd } to not be terminated by semicolon in some cases
Denys Vlasenko
2016-11-04
5
-6
/
+58
|
*
ash: fix "duplicate local" code (forgot to re-enable interrupts)
Denys Vlasenko
2016-11-04
1
-3
/
+20
|
*
ash: while (!got_sig) pause() is not reliable, use sigsuspend()
Denys Vlasenko
2016-11-03
1
-5
/
+6
*
|
Post-merge fix
Ron Yorston
2016-11-02
1
-1
/
+1
*
|
Merge branch 'busybox' into merge
Ron Yorston
2016-11-02
10
-217
/
+348
|
\
|
|
*
ash: if using libc glob(), skip it if no metachars are in word
Denys Vlasenko
2016-10-30
1
-0
/
+15
|
*
ash: fix bit-rotten debug infrastructure
Denys Vlasenko
2016-10-30
1
-14
/
+7
|
*
ash: make popfile() anfter popallfiles() safe
Denys Vlasenko
2016-10-30
1
-2
/
+5
|
*
hush: fix "(sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?"
Denys Vlasenko
2016-10-28
1
-4
/
+14
|
*
hush: fix "wait PID"
Denys Vlasenko
2016-10-28
7
-174
/
+246
[prev]
[next]