Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-06-13 | hush: fix read builtin to not read ahead past eol and to not use | Denis Vlasenko | |
insane amounts of stack. Testsuite updated. | |||
2007-06-08 | make busybox --install work even if /proc/self/exe doesn't exist | Denis Vlasenko | |
# size busybox_old busybox_unstripped text data bss dec hex filename 680095 2704 15648 698447 aa84f busybox_old 680099 2704 15648 698451 aa853 busybox_unstripped | |||
2007-05-30 | hush: trivial buglet found by randomconfig testing | Denis Vlasenko | |
2007-05-30 | whitespace fixes | Denis Vlasenko | |
2007-05-26 | usage.c: remove reference to busybox.h | Denis Vlasenko | |
*: s/include "busybox.h"/include "libbb.h" | |||
2007-05-26 | xpipe: introduce (saves ~170 bytes) | Denis Vlasenko | |
udhcp/signalpipe.c: use pipe instead of socketpair. | |||
2007-05-25 | hush: fix 'echo abc`sleep 5`def' + Ctrl-Z and Ctrl-C bugs. +50 bytes of code. | Denis Vlasenko | |
2007-05-25 | hush: avoid duplicating HUSH_VERSION | Denis Vlasenko | |
2007-05-25 | hush: micro-optimization in new variable code | Denis Vlasenko | |
2007-05-25 | hush: we can't do without variable->value member, saving 25 bytes of code | Denis Vlasenko | |
and some runtime memory. Rename few variables. | |||
2007-05-25 | hush: rework variable storage and environment handling. | Denis Vlasenko | |
More that -100 bytes of code + memory leak plugged. Added a testcase for it. | |||
2007-05-24 | hush: fix segfaulting syntax error in interactive hush | Denis Vlasenko | |
2007-05-24 | hush: fix handling of unmatched ${name (without closing '}') - | Denis Vlasenko | |
was eating all remaining input, potentially megabytes. nofork: save/restore die_jmp too nofork: use -2222 instead of -111 as "special" return valur for zero (-111 is used by some applets. -2222 won't fit in exitcode and thus safer) | |||
2007-05-23 | hush: make syntax error messages a bit more useful | Denis Vlasenko | |
2007-05-23 | hush: fix job control with eval /bin/external_prog | Denis Vlasenko | |
hush: fix parsing of unterminated "str with no EOL hush: improved make_string() (smaller, faster, needs less RAM) hush: renamed several functions | |||
2007-05-23 | hush: fix a bit different instance of "No EOL" bug, | Denis Vlasenko | |
add testsuite for that. Expand another testsuite. | |||
2007-05-21 | hush: add 3 CONFIG_xxx, allowing for smaller and less capable hush. | Denis Vlasenko | |
Minimal hush is ~9k now (lash is ~7k). | |||
2007-05-21 | hush: using smallints where we can. save ~20 bytes in code and | Denis Vlasenko | |
some data storage at runtime. | |||
2007-05-20 | hush: fix shift + $0 bug; add testcase | Denis Vlasenko | |
2007-05-20 | hush: trivial size optimization | Denis Vlasenko | |
2007-05-20 | hush: make process substitution configurable; add a testcase | Denis Vlasenko | |
2007-05-17 | hush: do "struct globals" trick. hush.o data+bss = 0 bytes now. | Denis Vlasenko | |
+60 bytes to image, but -8000 bytes in bss. | |||
2007-05-17 | hush: consolidated variable expansion for assignments and "normal" one. | Denis Vlasenko | |
-435 bytes. Tested against testsuite. | |||
2007-05-17 | more compile fixes from randomconfig run | Denis Vlasenko | |
2007-05-16 | hush: take care of several easy FIXMEs. -228 bytes. | Denis Vlasenko | |
2007-05-16 | hush: another microscopic typo fix | Denis Vlasenko | |
2007-05-16 | hush: fix English in comment | Denis Vlasenko | |
2007-05-16 | hush: simplify read builtin; fix set_local_var (misplaced 'goto skip;') | Denis Vlasenko | |
2007-05-16 | hush: fix expansion of quoted $VAR, $* and $@ | Denis Vlasenko | |
2007-05-16 | hush: fix incorrect processing of echo "'$var'". | Denis Vlasenko | |
hush: rename map[] and MAP_xxx, making them easier to understand. hush: move testcase (which now passes) from hush-bugs to hush-parsing | |||
2007-05-14 | hush: more fixes to variable expansion, more testcases | Denis Vlasenko | |
2007-05-14 | hush: move towards more correct variable expansion | Denis Vlasenko | |
hush: fix a few cases in FOR v IN ... construct unfortunately, code growth is big - ~600 bytes | |||
2007-05-13 | hush: fix '{ false; echo $?; }' bug. | Denis Vlasenko | |
hush: expand testsuite. variable expansion is still very broken | |||
2007-05-11 | hush: fix bug in interactive shell introduced yesterday | Denis Vlasenko | |
hush: fix `process subst` (2 bugs) NB: will delete and re-add hush_test in order to change file modes | |||
2007-05-10 | hush: fix "unterminated last line loops forever" bug | Denis Vlasenko | |
hush: add testsuite infrastructure | |||
2007-05-10 | hush: fix recent breakage (VAR=VAL stopped working) | Denis Vlasenko | |
2007-05-06 | hush: fix double-free in "echo TEST &" | Denis Vlasenko | |
2007-05-05 | hush: stop generating extra empty pipes in parse stage. | Denis Vlasenko | |
2007-05-05 | hush: preparatory patch for removing extra empty pipes generation | Denis Vlasenko | |
in parse stage. No real code change here. | |||
2007-05-04 | hush: fix "while true; do true; done" + ctrl-z | Denis Vlasenko | |
2007-05-04 | hush: add parse tree debug print | Denis Vlasenko | |
2007-05-03 | hush: fix "true | exit 3; echo $?" bug | Denis Vlasenko | |
2007-05-02 | hush: remove env builtin (it is buggy). Add comments | Denis Vlasenko | |
2007-05-02 | hush: simplify debugging prints a little bit | Denis Vlasenko | |
2007-05-02 | hush: add debugging for tracing execution, | Denis Vlasenko | |
add FIXME for 'true | exit 3; echo $?' case | |||
2007-05-02 | hush: fix incorrect exitcodes without job control | Denis Vlasenko | |
2007-04-28 | hush: make job control and interactiveness configurable, part 2 | Denis Vlasenko | |
2007-04-28 | hush: make job control and interactiveness configurable, part 1 | Denis Vlasenko | |
2007-04-28 | hush: make hush properly detect EOF on stdin (even interactive one - | Denis Vlasenko | |
think about pty being destroyed) and exit. | |||
2007-04-28 | hush: add Ctrl-C handling to nofork case | Denis Vlasenko | |