aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* crontab: we indent using tabsDenis Vlasenko2006-09-271-272/+277
|
* losetup: with no arguments lists all /dev/loopN. Corrected help text.Denis Vlasenko2006-09-272-5/+18
| | | | (patch by Vladimir Dronnikov <dronnikov@gmail.ru>)
* kill: implement killall5. OpenWRT folks will be happy.Denis Vlasenko2006-09-274-32/+65
| | | | | However their code was unusably different from sysvinit original. Run tested.
* kill: fix bugs (kill -l output was horrible), fix style, constify dataDenis Vlasenko2006-09-273-64/+64
|
* process utilities related style cleanupDenis Vlasenko2006-09-272-26/+24
|
* ifupdown: fix for standalone shell; removed hardcoded PATHDenis Vlasenko2006-09-271-41/+23
|
* ifupdown: style cleanup, no code changesDenis Vlasenko2006-09-261-266/+260
|
* several fixes from openWRT projectDenis Vlasenko2006-09-268-5/+88
|
* login: fix getopt_ulflags fallout (wasn't taking username supplied by getty)Denis Vlasenko2006-09-261-3/+3
|
* httpd: sanitize indentationDenis Vlasenko2006-09-261-1213/+1209
|
* wget: add (configurable) large file support. Run tested.Denis Vlasenko2006-09-263-53/+99
|
* fix 'grep -C' which requires an argumentEric Andersen2006-09-251-1/+1
|
* vlock: make message shorterDenis Vlasenko2006-09-241-1/+1
|
* mount: fix breakage from recent changes (spurious -ro mounts)Denis Vlasenko2006-09-241-19/+11
|
* Another attempt at untangling the logic so the compiler can follow it and notRob Landley2006-09-231-24/+23
| | | | generate pointless warnings.
* wget: fix bug where wget creates null file if there is no remote one.Denis Vlasenko2006-09-232-79/+39
| | | | add O_LARGEFILE support (not run tested :).
* applets.c: fix indentationDenis Vlasenko2006-09-231-64/+64
|
* remove unneeded #includes, fix indentationDenis Vlasenko2006-09-233-61/+47
|
* inetd: deindent main loop, other readability enhancementsDenis Vlasenko2006-09-231-145/+151
|
* hexdump: fixlet for my breakageDenis Vlasenko2006-09-231-1/+1
|
* inetd: reformat with tabs for indentationDenis Vlasenko2006-09-231-1217/+1220
|
* hexdump: deindent, almost fits into 80 columns nowDenis Vlasenko2006-09-231-34/+32
|
* correct_password: undo whitespace damage.Denis Vlasenko2006-09-233-30/+17
| | | | vlock + correct_password: fix incorrect line breaks in messages.
* ifupdown: getopt_ulflags'ification.Denis Vlasenko2006-09-231-59/+29
|
* arping: fix bug (getopt_ulflags and optarg don't mix),Denis Vlasenko2006-09-231-24/+16
| | | | remove unreachable error path.
* insmod: getopt_ulflags'isationDenis Vlasenko2006-09-231-62/+40
|
* passwd: getopt_ulflags'isationDenis Vlasenko2006-09-231-61/+52
|
* bb_askpass: shorten static password buffer. 256 is way too large.Denis Vlasenko2006-09-234-31/+27
| | | | | simplify code a bit.
* Follow-up to 16172: this also doesn't produce a warning for me on gcc 4.1,Rob Landley2006-09-221-1/+1
| | | | without having to feed the compiler nonsense.
* "I'll think about it" != "apply it now". It means I need to think about it.Rob Landley2006-09-225-62/+1
|
* netstat: getopt_ulflags'isationDenis Vlasenko2006-09-221-61/+46
|
* gzip: getopt_ulflags'isationDenis Vlasenko2006-09-221-35/+27
|
* losetup: getopt_ulflags'ification + small fix for perror_nomsgDenis Vlasenko2006-09-222-34/+38
|
* awk: getopt_ulflags'isationDenis Vlasenko2006-09-221-37/+27
|
* sed: getopt_ulflags'isationDenis Vlasenko2006-09-221-34/+22
|
* hostname: getopt_ulflags'isationDenis Vlasenko2006-09-221-39/+28
|
* telnetd: getopt_ulflags'isationDenis Vlasenko2006-09-221-32/+12
|
* adjtimex: getopt_ulflags'isationDenis Vlasenko2006-09-221-31/+26
|
* logger: getopt_ulflags'isationDenis Vlasenko2006-09-221-16/+7
|
* getopt: fix whitespace damageDenis Vlasenko2006-09-221-14/+14
|
* readprofile: getopt_ulflags'isationDenis Vlasenko2006-09-221-38/+6
|
* ipcs: fix my recent breakageDenis Vlasenko2006-09-221-1/+1
|
* - add new applet resize.Bernhard Reutner-Fischer2006-09-225-0/+62
| | | | | | text data bss dec hex filename 185 0 0 185 b9 console-tools/resize.o 255 0 0 255 ff console-tools/resize.o.print
* Change license statements (and clean up headers) on some of the files thatRob Landley2006-09-2220-85/+20
| | | | Erik or I are primary copyright holders on.
* - update and expand TODO a little bitBernhard Reutner-Fischer2006-09-211-3/+11
|
* - pull r15578 from busybox_scratch branch:Bernhard Reutner-Fischer2006-09-211-25/+21
| | | | | | | | | | | | | | | - fix bug where it would behave wrong if ./nohup.out was not writable. - debloat and make it readable while at it. $ size coreutils/nohup.o* text data bss dec hex filename 362 0 0 362 16a coreutils/nohup.o.trunk 344 0 0 344 158 coreutils/nohup.o $ make bloatcheck function old new delta nohup_main 324 310 -14 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-14) Total: -14 bytes
* - silence gcc warning about a funcptr possibly being used uninitialized.Bernhard Reutner-Fischer2006-09-211-2/+2
| | | | | | | This is a perfect example on where we should NOT care if the functor is not initialized since the result will not be what the user may expect. Safe bet would be to init to NULL, but let's try normal uu for good measure. - fix commentary typo while at it.
* mount: nfs mount should enable bb_error-to-syslog supportDenis Vlasenko2006-09-211-0/+1
|
* - gcc-2.95 doesn't support -static-libgccBernhard Reutner-Fischer2006-09-211-2/+5
| | | | - remove Winline
* mount: make Rob happy by reinstating #definesDenis Vlasenko2006-09-211-4/+2
|