Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | hush: fix expansion of quoted $VAR, $* and $@ | Denis Vlasenko | 2007-05-16 | 9 | -27/+51 |
| | |||||
* | hush: fix incorrect processing of echo "'$var'". | Denis Vlasenko | 2007-05-16 | 3 | -25/+25 |
| | | | | | | hush: rename map[] and MAP_xxx, making them easier to understand. hush: move testcase (which now passes) from hush-bugs to hush-parsing | ||||
* | netstat: introduce -W: wide, ipv6-friendly output | Denis Vlasenko | 2007-05-15 | 3 | -178/+175 |
| | | | | | | | netstat: shrink by ~500 bytes (patch by Cristian Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com>) netstat: fix for bogus state value for raw sockets | ||||
* | - apply hunk that fixes an issue with (wrong?) dependencies. Initial notes were: | Bernhard Reutner-Fischer | 2007-05-15 | 1 | -10/+5 |
| | | | | | | | There is something wrong in the new buildsys: If one selects ip and has e.g. rule or route unset, ip still wants to build those. This fails (correctly) since rtnl_rttable_n2a and rtnl_rtrealm_n2a aren't available if they were turned off. TODO: Talk to vda about this | ||||
* | - busybox.c was removed a while ago | Bernhard Reutner-Fischer | 2007-05-15 | 1 | -3/+4 |
| | |||||
* | hush: move testsuite files from hush-bugs to hush-parsing | Denis Vlasenko | 2007-05-14 | 4 | -0/+0 |
| | | | | (as these bugs are now fixed) | ||||
* | hush: more fixes to variable expansion, more testcases | Denis Vlasenko | 2007-05-14 | 5 | -29/+60 |
| | |||||
* | hush: move towards more correct variable expansion | Denis Vlasenko | 2007-05-14 | 5 | -63/+404 |
| | | | | | hush: fix a few cases in FOR v IN ... construct unfortunately, code growth is big - ~600 bytes | ||||
* | hush: fix '{ false; echo $?; }' bug. | Denis Vlasenko | 2007-05-13 | 13 | -98/+138 |
| | | | | | hush: expand testsuite. variable expansion is still very broken | ||||
* | hush: reinstate hush_test, add testcases for process subst | Denis Vlasenko | 2007-05-11 | 7 | -0/+80 |
| | |||||
* | hush: fix bug in interactive shell introduced yesterday | Denis Vlasenko | 2007-05-11 | 6 | -118/+46 |
| | | | | | hush: fix `process subst` (2 bugs) NB: will delete and re-add hush_test in order to change file modes | ||||
* | hush: fix "unterminated last line loops forever" bug | Denis Vlasenko | 2007-05-10 | 6 | -59/+146 |
| | | | | hush: add testsuite infrastructure | ||||
* | hush: fix recent breakage (VAR=VAL stopped working) | Denis Vlasenko | 2007-05-10 | 1 | -1/+1 |
| | |||||
* | msh: fix obscure case with backticks and closed fd 1 | Denis Vlasenko | 2007-05-09 | 1 | -7/+12 |
| | |||||
* | awk: don't segfault on printf(%*s). Close 1337. | Denis Vlasenko | 2007-05-09 | 1 | -1/+4 |
| | |||||
* | cryptpw: size reduction | Denis Vlasenko | 2007-05-09 | 1 | -18/+9 |
| | | | | | | | | function old new delta cryptpw_main 198 140 -58 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-58) Total: -58 bytes | ||||
* | mount: fix incorrect usage of strtok (inadvertently used NULL sometimes). | Denis Vlasenko | 2007-05-09 | 1 | -2/+1 |
| | | | | | the change is "for(xxx)...." -> "if(var) for(xxx)...", but my gcc 4.1.2 adds _158 bytes_!! WTF?? 8( | ||||
* | less: fix case when regex search finds nothing | Denis Vlasenko | 2007-05-09 | 1 | -1/+7 |
| | |||||
* | tftp: explain "block# 0" codepath; report our decision to bail out to server | Denis Vlasenko | 2007-05-09 | 1 | -73/+70 |
| | | | | | if blocksize option doesn't look good (it was a FIXME. +33 bytes code); make code more readable. | ||||
* | cryptpw: forgot svn add... how typical of me :( | Denis Vlasenko | 2007-05-08 | 3 | -5/+87 |
| | |||||
* | tftp: code diet, and I think retransmits were broken. | Denis Vlasenko | 2007-05-08 | 1 | -209/+159 |
| | | | | | | | | | | | | function old new delta static.errcode_str - 32 +32 tftp_main 359 345 -14 tftp_bb_error_msg 32 - -32 .rodata 130931 130899 -32 tftp 1720 1558 -162 ------------------------------------------------------------------------------ (add/remove: 1/1 grow/shrink: 0/3 up/down: 32/-240) Total: -208 bytes | ||||
* | cryptpw: new applet (a bit less than 3k added) | Denis Vlasenko | 2007-05-08 | 9 | -73/+74 |
| | | | | | (by Thomas Lundquist <lists@zelow.no>) | ||||
* | tail: fix SEGV on "tail -N" | Denis Vlasenko | 2007-05-08 | 3 | -17/+37 |
| | | | | | config system: clarify PREFER_APPLETS/SH_STANDALONE effects in help text | ||||
* | kill: improve comment | Denis Vlasenko | 2007-05-06 | 1 | -1/+2 |
| | |||||
* | kill: fix recent breakage of vda, also make code smaller by 21 bytes. | Denis Vlasenko | 2007-05-06 | 1 | -5/+12 |
| | |||||
* | hush: fix double-free in "echo TEST &" | Denis Vlasenko | 2007-05-06 | 2 | -79/+123 |
| | |||||
* | svlogd: fix 'SEGV on uninitialized data' and make it honor TERM | Denis Vlasenko | 2007-05-06 | 1 | -4/+6 |
| | |||||
* | hush: stop generating extra empty pipes in parse stage. | Denis Vlasenko | 2007-05-05 | 1 | -13/+15 |
| | |||||
* | hush: preparatory patch for removing extra empty pipes generation | Denis Vlasenko | 2007-05-05 | 1 | -80/+90 |
| | | | | in parse stage. No real code change here. | ||||
* | fix -Werror compile | Denis Vlasenko | 2007-05-04 | 1 | -1/+5 |
| | |||||
* | hush: fix "while true; do true; done" + ctrl-z | Denis Vlasenko | 2007-05-04 | 2 | -92/+123 |
| | |||||
* | applets: fix compile-time warning | Denis Vlasenko | 2007-05-04 | 2 | -3/+8 |
| | |||||
* | hush: add parse tree debug print | Denis Vlasenko | 2007-05-04 | 2 | -5/+66 |
| | |||||
* | udhcpc: stop deleting our own pidfile if we daemonize. | Denis Vlasenko | 2007-05-03 | 3 | -34/+35 |
| | | | | | udhcp[cd]: stop using atexit magic fir pidfile removal. | ||||
* | awk: guard against empty environment | Denis Vlasenko | 2007-05-03 | 1 | -1/+2 |
| | |||||
* | hush: fix "true | exit 3; echo $?" bug | Denis Vlasenko | 2007-05-03 | 2 | -46/+105 |
| | |||||
* | hush: remove env builtin (it is buggy). Add comments | Denis Vlasenko | 2007-05-02 | 1 | -17/+16 |
| | |||||
* | fix suid config handling | Denis Vlasenko | 2007-05-02 | 2 | -16/+27 |
| | |||||
* | ifupdown: small optimization (avoid doing useless work if we are | Denis Vlasenko | 2007-05-02 | 1 | -10/+10 |
| | | | | not going to update state file) | ||||
* | allow people to stick custom things into Makefile.local so they dont need to ↵ | Mike Frysinger | 2007-05-02 | 1 | -0/+2 |
| | | | | update busybox files while integrating into other build systems (like uClinux-dist) | ||||
* | ifupdown: mke it possible to use DHCP clients different from udhcp. | Denis Vlasenko | 2007-05-02 | 2 | -33/+48 |
| | |||||
* | hush: simplify debugging prints a little bit | Denis Vlasenko | 2007-05-02 | 1 | -62/+61 |
| | |||||
* | klogd: remove dependency on syslogd | Denis Vlasenko | 2007-05-02 | 1 | -2/+0 |
| | |||||
* | ifupdown: reread state file before rewriting it. | Denis Vlasenko | 2007-05-02 | 1 | -36/+37 |
| | | | | | | Fixes "ifup started another ifup" state corruption bug. Patch by Natanael Copa <natanael.copa@gmail.com>. | ||||
* | hush: add debugging for tracing execution, | Denis Vlasenko | 2007-05-02 | 1 | -2/+33 |
| | | | | add FIXME for 'true | exit 3; echo $?' case | ||||
* | hush: fix incorrect exitcodes without job control | Denis Vlasenko | 2007-05-02 | 1 | -14/+9 |
| | |||||
* | test: code size saving, no logic changes | Denis Vlasenko | 2007-05-01 | 4 | -116/+228 |
| | | | | | | | | | | | | | | | ps: fix warning, make a bit smaller kill -l: make smaller & know much more signals function old new delta get_signum 121 153 +32 kill_main 826 843 +17 get_signame 44 36 -8 signals 252 224 -28 .rodata 131955 131923 -32 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/3 up/down: 49/-68) Total: -19 bytes | ||||
* | ash,kill: use common code for kill applet/builtin | Denis Vlasenko | 2007-04-29 | 4 | -130/+86 |
| | | | | | | | | | | | | | | | | | | | | | | | | # make bloatcheck function old new delta evaltreenr 644 654 +10 evaltree 644 654 +10 parse_conf 1440 1444 +4 dpkg_deb_main 426 429 +3 ed_main 3319 3321 +2 passwd_main 2093 2091 -2 kill_main 830 826 -4 singlemount 4609 4601 -8 find_command 962 954 -8 get_lcm 123 105 -18 .rodata 132243 132147 -96 killcmd 449 120 -329 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 5/7 up/down: 29/-465) Total: -436 bytes # size busybox_old busybox_unstripped text data bss dec hex filename 723901 2940 27504 754345 b82a9 busybox_old 723457 2940 27504 753901 b80ed busybox_unstripped | ||||
* | run_parts: do not check path portion of a name for "bad chars". | Denis Vlasenko | 2007-04-29 | 1 | -7/+11 |
| | | | | Needed for ifupdown. Patch by "Gabriel L. Somlo" <somlo@cmu.edu> | ||||
* | ash: fix infinite loop on exit if tty is not there anymore | Denis Vlasenko | 2007-04-28 | 2 | -1/+8 |
| |