aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-09-27kill: fix bugs (kill -l output was horrible), fix style, constify dataDenis Vlasenko
2006-09-27process utilities related style cleanupDenis Vlasenko
2006-09-27ifupdown: fix for standalone shell; removed hardcoded PATHDenis Vlasenko
2006-09-26ifupdown: style cleanup, no code changesDenis Vlasenko
2006-09-26several fixes from openWRT projectDenis Vlasenko
2006-09-26login: fix getopt_ulflags fallout (wasn't taking username supplied by getty)Denis Vlasenko
2006-09-26httpd: sanitize indentationDenis Vlasenko
2006-09-26wget: add (configurable) large file support. Run tested.Denis Vlasenko
2006-09-25fix 'grep -C' which requires an argumentEric Andersen
2006-09-24vlock: make message shorterDenis Vlasenko
2006-09-24mount: fix breakage from recent changes (spurious -ro mounts)Denis Vlasenko
2006-09-23Another attempt at untangling the logic so the compiler can follow it and notRob Landley
generate pointless warnings.
2006-09-23wget: fix bug where wget creates null file if there is no remote one.Denis Vlasenko
add O_LARGEFILE support (not run tested :).
2006-09-23applets.c: fix indentationDenis Vlasenko
2006-09-23remove unneeded #includes, fix indentationDenis Vlasenko
2006-09-23inetd: deindent main loop, other readability enhancementsDenis Vlasenko
2006-09-23hexdump: fixlet for my breakageDenis Vlasenko
2006-09-23inetd: reformat with tabs for indentationDenis Vlasenko
2006-09-23hexdump: deindent, almost fits into 80 columns nowDenis Vlasenko
2006-09-23correct_password: undo whitespace damage.Denis Vlasenko
vlock + correct_password: fix incorrect line breaks in messages.
2006-09-23ifupdown: getopt_ulflags'ification.Denis Vlasenko
2006-09-23arping: fix bug (getopt_ulflags and optarg don't mix),Denis Vlasenko
remove unreachable error path.
2006-09-23insmod: getopt_ulflags'isationDenis Vlasenko
2006-09-23passwd: getopt_ulflags'isationDenis Vlasenko
2006-09-23bb_askpass: shorten static password buffer. 256 is way too large.Denis Vlasenko
simplify code a bit.
2006-09-22Follow-up to 16172: this also doesn't produce a warning for me on gcc 4.1,Rob Landley
without having to feed the compiler nonsense.
2006-09-22"I'll think about it" != "apply it now". It means I need to think about it.Rob Landley
2006-09-22netstat: getopt_ulflags'isationDenis Vlasenko
2006-09-22gzip: getopt_ulflags'isationDenis Vlasenko
2006-09-22losetup: getopt_ulflags'ification + small fix for perror_nomsgDenis Vlasenko
2006-09-22awk: getopt_ulflags'isationDenis Vlasenko
2006-09-22sed: getopt_ulflags'isationDenis Vlasenko
2006-09-22hostname: getopt_ulflags'isationDenis Vlasenko
2006-09-22telnetd: getopt_ulflags'isationDenis Vlasenko
2006-09-22adjtimex: getopt_ulflags'isationDenis Vlasenko
2006-09-22logger: getopt_ulflags'isationDenis Vlasenko
2006-09-22getopt: fix whitespace damageDenis Vlasenko
2006-09-22readprofile: getopt_ulflags'isationDenis Vlasenko
2006-09-22ipcs: fix my recent breakageDenis Vlasenko
2006-09-22- add new applet resize.Bernhard Reutner-Fischer
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
2006-09-22Change license statements (and clean up headers) on some of the files thatRob Landley
Erik or I are primary copyright holders on.
2006-09-21- update and expand TODO a little bitBernhard Reutner-Fischer
2006-09-21- pull r15578 from busybox_scratch branch:Bernhard Reutner-Fischer
- 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
2006-09-21- silence gcc warning about a funcptr possibly being used uninitialized.Bernhard Reutner-Fischer
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.
2006-09-21mount: nfs mount should enable bb_error-to-syslog supportDenis Vlasenko
2006-09-21- gcc-2.95 doesn't support -static-libgccBernhard Reutner-Fischer
- remove Winline
2006-09-21mount: make Rob happy by reinstating #definesDenis Vlasenko
2006-09-20Teach get_terminal_width_height to fall back to $LINES and $COLUMNS whenRob Landley
used via things like a serial console.
2006-09-20The version checked into the tree is a snapshot of an unifinished applet, andRob Landley
you just made lots of ">>>>>>> mine" lines show up in my working copy of this. Please don't do that again.
2006-09-20The Software Freedom Law Center wants us to add a copyright notice to theRob Landley
generated binaries, to make copyright enforcement easier. Our liason with them (Bradley Kuhn) suggested the following text: > Copyright (C) YEAR-2006  Erik Andersen, Rob Landley, and others. > Licensed under GPLv2.  See source distribution for full notice. And the busybox help message seems the least offensive place to put it. (At some point in the future, I need to strip 128 bytes from the binary to feel good about this, though. :) Minor header file cleanup while I was there, since libbb.h already #includes most of that stuff...