aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* hush: stop generating extra empty pipes in parse stage.Denis Vlasenko2007-05-051-13/+15
|
* hush: preparatory patch for removing extra empty pipes generationDenis Vlasenko2007-05-051-80/+90
| | | | in parse stage. No real code change here.
* fix -Werror compileDenis Vlasenko2007-05-041-1/+5
|
* hush: fix "while true; do true; done" + ctrl-zDenis Vlasenko2007-05-042-92/+123
|
* applets: fix compile-time warningDenis Vlasenko2007-05-042-3/+8
|
* hush: add parse tree debug printDenis Vlasenko2007-05-042-5/+66
|
* udhcpc: stop deleting our own pidfile if we daemonize.Denis Vlasenko2007-05-033-34/+35
| | | | | udhcp[cd]: stop using atexit magic fir pidfile removal.
* awk: guard against empty environmentDenis Vlasenko2007-05-031-1/+2
|
* hush: fix "true | exit 3; echo $?" bugDenis Vlasenko2007-05-032-46/+105
|
* hush: remove env builtin (it is buggy). Add commentsDenis Vlasenko2007-05-021-17/+16
|
* fix suid config handlingDenis Vlasenko2007-05-022-16/+27
|
* ifupdown: small optimization (avoid doing useless work if we areDenis Vlasenko2007-05-021-10/+10
| | | | not going to update state file)
* allow people to stick custom things into Makefile.local so they dont need to ↵Mike Frysinger2007-05-021-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 Vlasenko2007-05-022-33/+48
|
* hush: simplify debugging prints a little bitDenis Vlasenko2007-05-021-62/+61
|
* klogd: remove dependency on syslogdDenis Vlasenko2007-05-021-2/+0
|
* ifupdown: reread state file before rewriting it.Denis Vlasenko2007-05-021-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 Vlasenko2007-05-021-2/+33
| | | | add FIXME for 'true | exit 3; echo $?' case
* hush: fix incorrect exitcodes without job controlDenis Vlasenko2007-05-021-14/+9
|
* test: code size saving, no logic changesDenis Vlasenko2007-05-014-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/builtinDenis Vlasenko2007-04-294-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 Vlasenko2007-04-291-7/+11
| | | | Needed for ifupdown. Patch by "Gabriel L. Somlo" <somlo@cmu.edu>
* ash: fix infinite loop on exit if tty is not there anymoreDenis Vlasenko2007-04-282-1/+8
|
* hush: make job control and interactiveness configurable, part 2Denis Vlasenko2007-04-282-52/+99
|
* hush: make job control and interactiveness configurable, part 1Denis Vlasenko2007-04-282-14/+111
|
* hush: make hush properly detect EOF on stdin (even interactive one -Denis Vlasenko2007-04-281-5/+8
| | | | think about pty being destroyed) and exit.
* hush: add Ctrl-C handling to nofork caseDenis Vlasenko2007-04-281-3/+15
|
* hush: better signal handling across ctrl-zDenis Vlasenko2007-04-281-87/+127
|
* hush: fix nofork + ctrl-Z clobbering of globalsDenis Vlasenko2007-04-283-37/+58
|
* hush: add ctrl-Z handling for nofork'ed caseDenis Vlasenko2007-04-282-13/+84
|
* find_root_device: use lstat - don't follow linksDenis Vlasenko2007-04-211-1/+2
|
* hush: make Ctrl-Z work (at least sometimes)Denis Vlasenko2007-04-212-176/+229
|
* hust: add a commentDenis Vlasenko2007-04-211-0/+4
|
* hush: fix more backgrounding bugs. Plenty of them remains still.Denis Vlasenko2007-04-212-11/+29
|
* hush: explain why "pipe; exit $?" doesn't show correct exitcodeDenis Vlasenko2007-04-212-12/+21
|
* hush: do not print message if killed by signal;Denis Vlasenko2007-04-211-122/+115
| | | | move some functions up before main()
* hush: begin fixing non-functional job controlDenis Vlasenko2007-04-213-74/+208
|
* hush: small code shrink; style fixesDenis Vlasenko2007-04-202-51/+58
|
* dd: NOEXEC fixDenis Vlasenko2007-04-191-2/+4
| | | | dd: correct wrongly capitalized constant
* dd: fix skip= parse error (spotted by Dirk Clemens <develop@cle-mens.de>)Denis Vlasenko2007-04-192-27/+92
|
* stty: fix option parsing bug (spotted by Sascha Hauer <s.hauer@pengutronix.de>)Denis Vlasenko2007-04-191-15/+16
|
* doc: add README on shell job controlDenis Vlasenko2007-04-191-0/+237
|
* procps: remove all global variablesDenis Vlasenko2007-04-195-45/+76
| | | | | | | | text data bss dec hex filename 1462 14 24 1500 5dc busybox.t2/procps/ps.o 1484 0 0 1484 5cc busybox.t3/procps/ps.o 3122 0 252 3374 d2e busybox.t1/procps/top.o 3117 0 0 3117 c2d busybox.t3/procps/top.o
* ps: add -o tty and -o rss supportDenis Vlasenko2007-04-194-48/+80
| | | | | 1373 14 24 1411 583 busybox.t1/procps/ps.o 1462 14 24 1500 5dc busybox.t2/procps/ps.o
* loop device code: readability improvementDenis Vlasenko2007-04-192-13/+20
|
* switch_root: error_msg -> perror_msg, reduce by 22 bytes while at it.Denis Vlasenko2007-04-181-7/+8
|
* "Unify base64 handling" is done, remove TODODenis Vlasenko2007-04-182-9/+3
|
* make "busybox" w/o args work again, and save 10 bytes in the process.Denis Vlasenko2007-04-181-50/+52
|
* hush: remove stray semicolon (should change nothing)Denis Vlasenko2007-04-181-3/+3
|
* ether-wake: save a few more bytes of codeDenis Vlasenko2007-04-161-8/+7
|