aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-04-28hush: add ctrl-Z handling for nofork'ed caseDenis Vlasenko
2007-04-21find_root_device: use lstat - don't follow linksDenis Vlasenko
2007-04-21hush: make Ctrl-Z work (at least sometimes)Denis Vlasenko
2007-04-21hust: add a commentDenis Vlasenko
2007-04-21hush: fix more backgrounding bugs. Plenty of them remains still.Denis Vlasenko
2007-04-21hush: explain why "pipe; exit $?" doesn't show correct exitcodeDenis Vlasenko
2007-04-21hush: do not print message if killed by signal;Denis Vlasenko
move some functions up before main()
2007-04-21hush: begin fixing non-functional job controlDenis Vlasenko
2007-04-20hush: small code shrink; style fixesDenis Vlasenko
2007-04-19dd: NOEXEC fixDenis Vlasenko
dd: correct wrongly capitalized constant
2007-04-19dd: fix skip= parse error (spotted by Dirk Clemens <develop@cle-mens.de>)Denis Vlasenko
2007-04-19stty: fix option parsing bug (spotted by Sascha Hauer <s.hauer@pengutronix.de>)Denis Vlasenko
2007-04-19doc: add README on shell job controlDenis Vlasenko
2007-04-19procps: remove all global variablesDenis Vlasenko
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
2007-04-19ps: add -o tty and -o rss supportDenis Vlasenko
1373 14 24 1411 583 busybox.t1/procps/ps.o 1462 14 24 1500 5dc busybox.t2/procps/ps.o
2007-04-19loop device code: readability improvementDenis Vlasenko
2007-04-18switch_root: error_msg -> perror_msg, reduce by 22 bytes while at it.Denis Vlasenko
2007-04-18"Unify base64 handling" is done, remove TODODenis Vlasenko
2007-04-18make "busybox" w/o args work again, and save 10 bytes in the process.Denis Vlasenko
2007-04-18hush: remove stray semicolon (should change nothing)Denis Vlasenko
2007-04-16ether-wake: save a few more bytes of codeDenis Vlasenko
2007-04-16ether-wake: close bug 1317. Reorder fuctions to avoidDenis Vlasenko
forward refs while at it
2007-04-16shells: remove few statics and duplicated codeDenis Vlasenko
(much more of the same remains, alas) function old new delta doset 330 332 +2 warn 53 51 -2 onecommand 463 461 -2 ioecho 40 38 -2 forkexec 1412 1410 -2 err 81 79 -2 setdash 59 56 -3 flag 4 - -4 msh_main 1389 1384 -5 eval 388 381 -7 subgetc 759 747 -12 static.local 14 - -14 b_adduint 70 52 -18 ------------------------------------------------------------------------------ (add/remove: 0/2 grow/shrink: 1/10 up/down: 2/-73) Total: -71 bytes
2007-04-16style fixes, no code changesDenis Vlasenko
2007-04-16applet.c: ruid is needed only if FEATURE_SUID=yDenis Vlasenko
2007-04-16- we unconditionally need ruid. Fixes build error in line 334Bernhard Reutner-Fischer
2007-04-16- fix compilation when ENABLE_FEATURE_IP_RULE was offBernhard Reutner-Fischer
2007-04-16- fix compilation if ENABLE_FEATURE_DD_IBS_OBS is offBernhard Reutner-Fischer
2007-04-15lineedit: state->hist_file doesn't exist if !FEATURE_EDITING_SAVEHISTORY,Denis Vlasenko
#ifdef it out
2007-04-15doc: fix code example which may provoke warningDenis Vlasenko
2007-04-15e2fsprogs: stop using statics in chattr. Minor code shrinkage (-130 bytes)Denis Vlasenko
2007-04-15deluser: add optional support for removing users from groupsDenis Vlasenko
(by Tito <farmatito@tiscali.it>)
2007-04-15update style-guide.txtDenis Vlasenko
2007-04-15xargs: simplify word list managementDenis Vlasenko
2007-04-14msh: style fixesDenis Vlasenko
shell/README - a place to record things about busybox shells
2007-04-14lineedit: nuke two unused variables and code which sets themDenis Vlasenko
applets: do not even try to read config if run by real root msh: use named constants (O_RDONLY etc) in open() instead of magic numbers, other minor code size reduction.
2007-04-14lash: recognize and use NOFORK appletsDenis Vlasenko
lash,hush: fix kill buglet (didn't properly recognize ESRCH)
2007-04-14lineedit: do not try to open NULL history fileDenis Vlasenko
2007-04-14hush: use NOFORK applets as appropriate. Net reduction of code size.Denis Vlasenko
2007-04-13teach find_root_device to deal with /dev/ subdirsDenis Vlasenko
(by "Kirill K. Smirnov" <lich@math.spbu.ru>)
2007-04-13dpkg: use nitfields which are a bit closer to typical ushort.Denis Vlasenko
Code size -800.
2007-04-13style fixesDenis Vlasenko
2007-04-13sourse_route_list -> source_route_listDenis Vlasenko
2007-04-13make xsocket die with address family printed (if VERBOSE_RESOLUTION_ERRORS=y)Denis Vlasenko
2007-04-13hush: more style fixes.Denis Vlasenko
2007-04-13hush: comment out and replace bug in set_local_var:Denis Vlasenko
- if (value == 0 && ++value == 0) { + /*if (value == 0 && ++value == 0) ??? -vda */ + if (value == NULL || value[1] == '\0') { Style fixes.
2007-04-13shell/: add SUSv3 doc for fast & easy referenceDenis Vlasenko
2007-04-13fix typo in commentDenis Vlasenko
2007-04-13find: add support for -delete, -path (by Natanael Copa)Denis Vlasenko
2007-04-12sed: fix escaped newlines in -f; fix multiple -f and -eDenis Vlasenko
(broke when getopt32 was fixed to not reverse the list)