Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ash: fix CONFIG_ASH_OPTIMIZE_FOR_SIZE off + high-bit chars case | Denis Vlasenko | 2008-12-15 | 1 | -10/+15 |
| | | | | | (do we even need CONFIG_ASH_OPTIMIZE_FOR_SIZE conditional?) | ||||
* | ash: remove TODO which seems to actually work now. | Denis Vlasenko | 2008-12-03 | 1 | -8/+8 |
| | | | | | no code changes | ||||
* | ash: finally installed it as /bin/sh on my machine. | Denis Vlasenko | 2008-12-03 | 1 | -67/+131 |
| | | | | | | | | | | | | | | | | | some breakage noticed, the most dire is mishandled ^C. fixing it. function old new delta blocking_wait_with_raise_on_sig - 40 +40 waitforjob 85 100 +15 setsignal 280 278 -2 evalvar 1376 1374 -2 waitcmd 186 182 -4 dowait 350 316 -34 redirect 1231 1185 -46 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 1/5 up/down: 55/-88) Total: -33 bytes | ||||
* | ash: add FIXME | Denis Vlasenko | 2008-11-28 | 1 | -2/+7 |
| | |||||
* | ash: "ash: syntax error: XXX unexpected" -> "ash: syntax error: unexpected XXX" | Denis Vlasenko | 2008-11-28 | 1 | -1/+1 |
| | |||||
* | ash: shrink on top of previous change | Denis Vlasenko | 2008-11-28 | 1 | -111/+128 |
| | | | | | | | | | | | | | | | | | | | | | | | | function old new delta readtoken1 3201 3221 +20 xxreadtoken 306 313 +7 pungetc 13 12 -1 ash_main 1380 1379 -1 setinputfile 196 192 -4 plinno 4 - -4 parsenleft 4 - -4 parsenextc 4 - -4 parselleft 4 - -4 setinputstring 67 62 -5 pushstring 123 114 -9 pgetc 455 438 -17 pushfile 69 31 -38 popfile 114 76 -38 ------------------------------------------------------------------------------ (add/remove: 0/4 grow/shrink: 2/8 up/down: 27/-129) Total: -102 bytes text data bss dec hex filename 798750 564 7756 807070 c509e busybox_old 798664 560 7748 806972 c503c busybox_unstripped | ||||
* | ash: better fix for ash -c 'echo 5&' and ash -c 'sleep 5&' | Denis Vlasenko | 2008-11-28 | 3 | -29/+56 |
| | | | | | with testcase | ||||
* | ash,hush: add TODO for rare build failure | Denis Vlasenko | 2008-11-25 | 2 | -2/+25 |
| | | | | | *: remove some redundant includes | ||||
* | ash: fix bad interaction between ash -c '....&' and bash compat | Denis Vlasenko | 2008-11-25 | 1 | -2/+6 |
| | |||||
* | ash: NTO2 needs #if ENABLE_ASH_BASH_COMPAT | Denis Vlasenko | 2008-11-22 | 1 | -0/+2 |
| | |||||
* | ash: fix miscalculation of memory needed for eval tree | Denis Vlasenko | 2008-11-21 | 1 | -33/+35 |
| | | | | | found by Timo Teras (timo.teras AT iki.fi) | ||||
* | whitespace fixes, no code changes | Denis Vlasenko | 2008-10-29 | 1 | -1/+1 |
| | |||||
* | ash: add testcase for bug 5304 | Denis Vlasenko | 2008-10-27 | 2 | -0/+15 |
| | |||||
* | ash: fix "while kill -0 $child; do true; done" looping forever. | Denis Vlasenko | 2008-10-27 | 1 | -46/+20 |
| | |||||
* | dc: conditionalize parts which require libm | Denis Vlasenko | 2008-10-20 | 2 | -0/+4 |
| | |||||
* | ash: fix NOEXEC mode - we were forgetting to pass environment! | Denis Vlasenko | 2008-10-20 | 3 | -2/+10 |
| | | | | | | env: promote to NOEXEC hd: promote to NOEXEC, as hexdump is NOEXEC already | ||||
* | ash: fix a bug in standalone mode (corrupted getopt() state) | Denis Vlasenko | 2008-10-20 | 2 | -0/+7 |
| | |||||
* | hush: add TODO | Denis Vlasenko | 2008-10-14 | 1 | -0/+2 |
| | |||||
* | hush: next small step towards functions | Denis Vlasenko | 2008-10-14 | 1 | -19/+53 |
| | |||||
* | hush: fix NOMMU bug (analogous to preceding commit for MMU) | Denis Vlasenko | 2008-10-13 | 3 | -77/+95 |
| | |||||
* | testcase for the last fix | Denis Vlasenko | 2008-10-13 | 2 | -0/+20 |
| | |||||
* | hush: fix trashing of environment by local env vars: | Denis Vlasenko | 2008-10-13 | 1 | -60/+104 |
| | | | | | | | | | | | | | | | | a=a; a=b cmd; - a was unset! +57 bytes function old new delta add_string_to_strings - 110 +110 putenv_all - 27 +27 run_list 2086 2111 +25 free_strings - 7 +7 free_pipe 210 208 -2 add_malloced_string_to_strings 110 - -110 ------------------------------------------------------------------------------ (add/remove: 3/1 grow/shrink: 1/1 up/down: 169/-112) Total: 57 bytes | ||||
* | hush: fix environment and memory leaks, add tests for them | Denis Vlasenko | 2008-10-09 | 6 | -58/+218 |
| | | | | | | | | | | | | | | | function old new delta add_malloced_string_to_strings - 110 +110 run_list 1999 2086 +87 free_strings_and_unsetenv - 87 +87 hush_version_str - 18 +18 pseudo_exec_argv 139 146 +7 static.version_str 17 - -17 free_pipe 237 210 -27 done_word 790 642 -148 ------------------------------------------------------------------------------ (add/remove: 3/1 grow/shrink: 2/2 up/down: 309/-192) Total: 117 bytes | ||||
* | hush: preparatory work for implementing functions | Denis Vlasenko | 2008-10-09 | 1 | -66/+89 |
| | |||||
* | hush: massive renaming of ill-named structures and fields | Denis Vlasenko | 2008-10-09 | 1 | -202/+206 |
| | | | | | | | hush: error out on constructs like: $ abc(def) - was working as if it was (abcdef) $ case b in abc(a|(b) echo YES; esac - was ignoring 'abc' and extra '(' | ||||
* | ash: support &> redirection (bashism). ~90 bytes of code | Denis Vlasenko | 2008-10-07 | 1 | -49/+68 |
| | |||||
* | ash: some beautification work, no code changes | Denis Vlasenko | 2008-10-06 | 1 | -41/+38 |
| | |||||
* | ash: implement ">&file" bashism. ~100 bytes. | Denis Vlasenko | 2008-10-05 | 1 | -47/+111 |
| | |||||
* | style fixes, no code changes | Denis Vlasenko | 2008-09-27 | 1 | -2/+2 |
| | |||||
* | - fix compilation on OSF/1 | Bernhard Reutner-Fischer | 2008-09-25 | 1 | -2/+2 |
| | |||||
* | ash: fix "(cat < file)" hang introduced by rev 22944. | Denis Vlasenko | 2008-08-16 | 3 | -11/+20 |
| | |||||
* | - fix typo | Bernhard Reutner-Fischer | 2008-08-06 | 1 | -1/+1 |
| | |||||
* | hush: fix mishandling of a'b'c=fff as assignments. They are not. | Denis Vlasenko | 2008-08-04 | 5 | -58/+127 |
| | | | | | | | | | | | | | | function old new delta parse_stream 1920 2004 +84 done_word 715 752 +37 parse_and_run_stream 328 333 +5 builtin_exec 25 29 +4 pseudo_exec_argv 138 139 +1 run_list 2006 1999 -7 is_assignment 215 134 -81 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 5/2 up/down: 131/-88) Total: 43 bytes | ||||
* | hush: remove a comment about already fixed bug | Denis Vlasenko | 2008-08-03 | 1 | -2/+0 |
| | |||||
* | hush: support $_NUMBERS variable names | Denis Vlasenko | 2008-07-31 | 5 | -4/+19 |
| | |||||
* | hush: fix "case ... in <newline> word)..." | Denis Vlasenko | 2008-07-31 | 3 | -1/+20 |
| | |||||
* | hush: support "pattern1|pattern2...)" in case statements | Denis Vlasenko | 2008-07-31 | 1 | -8/+18 |
| | | | | | | parse_stream 1847 1861 +14 run_list 1995 2006 +11 | ||||
* | ash: bash compat: "shift $BIGNUM" is equivalent to "shift 1" | Denis Vlasenko | 2008-07-30 | 3 | -1/+20 |
| | |||||
* | hush: trivial code shrink | Denis Vlasenko | 2008-07-29 | 1 | -8/+4 |
| | | | | | | function old new delta builtin_continue 48 22 -26 | ||||
* | hush: use G.xxx instead of #define xxx G.xxx. We have too many globals | Denis Vlasenko | 2008-07-29 | 1 | -234/+198 |
| | | | | | there and #defines get messy. Remove one write-only G.variable. | ||||
* | randomconfig fix | Denis Vlasenko | 2008-07-29 | 1 | -2/+2 |
| | |||||
* | hush: small fix for repeated continue and fix for wrong loop depth count | Denis Vlasenko | 2008-07-29 | 3 | -1/+17 |
| | | | | | after Ctrl-C; with testcase for first one | ||||
* | hush: fix inverted check (was making all break's to act as "break 99999") | Denis Vlasenko | 2008-07-29 | 1 | -1/+1 |
| | |||||
* | hush: fix break'ing out of {} and () groups; with testcase | Denis Vlasenko | 2008-07-29 | 3 | -13/+43 |
| | | | | | | | | function old new delta builtin_break 93 129 +36 builtin_continue 21 47 +26 run_list 1973 1976 +3 | ||||
* | randomconfig fixes | Denis Vlasenko | 2008-07-29 | 1 | -2/+6 |
| | |||||
* | hush: add #defines to switch off break/continue if loops are not supported | Denis Vlasenko | 2008-07-29 | 3 | -1/+24 |
| | | | | | | *: remove a few inline keywords no code changes | ||||
* | hush: fix "while false; ..." exitcode; add testsuites | Denis Vlasenko | 2008-07-28 | 5 | -1/+24 |
| | |||||
* | hush: support "break N" and "continue N" | Denis Vlasenko | 2008-07-28 | 7 | -35/+82 |
| | | | | | | | | | | | | | | | fix non-detection of builtins and applets in "v=break; ...; $v; ..." case add testsuite entries for the above function old new delta builtin_break 12 93 +81 run_list 1948 1971 +23 builtin_continue 12 21 +9 pseudo_exec_argv 132 138 +6 builtin_exec 23 25 +2 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 5/0 up/down: 121/0) Total: 121 bytes | ||||
* | hush: implement break and continue | Denis Vlasenko | 2008-07-28 | 2 | -77/+107 |
| | | | | | | | | | | | | function old new delta bltins 252 276 +24 builtin_continue - 12 +12 builtin_break - 12 +12 static.version_str 18 17 -1 run_list 1984 1948 -36 ------------------------------------------------------------------------------ (add/remove: 2/0 grow/shrink: 1/2 up/down: 48/-27) Total: 11 bytes | ||||
* | hush: in run_list(), some loop_top ops seems to be superfluous. | Denis Vlasenko | 2008-07-28 | 1 | -15/+15 |
| | | | | | | | | | comment them out. Also, use separate temp variable for verification loop, helps gcc to optimize better. function old new delta run_list 2039 1984 -55 |