Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-09-23 | ifupdown: getopt_ulflags'ification. | Denis Vlasenko | |
2006-09-23 | arping: fix bug (getopt_ulflags and optarg don't mix), | Denis Vlasenko | |
remove unreachable error path. | |||
2006-09-23 | insmod: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-23 | passwd: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-23 | bb_askpass: shorten static password buffer. 256 is way too large. | Denis Vlasenko | |
simplify code a bit. | |||
2006-09-22 | Follow-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-22 | netstat: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-22 | gzip: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-22 | losetup: getopt_ulflags'ification + small fix for perror_nomsg | Denis Vlasenko | |
2006-09-22 | awk: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-22 | sed: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-22 | hostname: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-22 | telnetd: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-22 | adjtimex: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-22 | logger: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-22 | getopt: fix whitespace damage | Denis Vlasenko | |
2006-09-22 | readprofile: getopt_ulflags'isation | Denis Vlasenko | |
2006-09-22 | ipcs: fix my recent breakage | Denis 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-22 | Change license statements (and clean up headers) on some of the files that | Rob Landley | |
Erik or I are primary copyright holders on. | |||
2006-09-21 | - update and expand TODO a little bit | Bernhard 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-21 | mount: nfs mount should enable bb_error-to-syslog support | Denis Vlasenko | |
2006-09-21 | - gcc-2.95 doesn't support -static-libgcc | Bernhard Reutner-Fischer | |
- remove Winline | |||
2006-09-21 | mount: make Rob happy by reinstating #defines | Denis Vlasenko | |
2006-09-20 | Teach get_terminal_width_height to fall back to $LINES and $COLUMNS when | Rob Landley | |
used via things like a serial console. | |||
2006-09-20 | The version checked into the tree is a snapshot of an unifinished applet, and | Rob Landley | |
you just made lots of ">>>>>>> mine" lines show up in my working copy of this. Please don't do that again. | |||
2006-09-20 | The Software Freedom Law Center wants us to add a copyright notice to the | Rob 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... | |||
2006-09-20 | License clarification. | Rob Landley | |
2006-09-20 | - fix documentation for the command-line options of ipcs. Closes #1036 | Bernhard Reutner-Fischer | |
2006-09-20 | - fix embarrassing typo of mine. Closes bug #1038 | Bernhard Reutner-Fischer | |
2006-09-19 | ipcs: fix output (misaligned columns) | Denis Vlasenko | |
2006-09-19 | ipcs: getopt_ulflag'ification, -170 bytes | Denis Vlasenko | |
2006-09-19 | stty: fix few bugs found in testing | Denis Vlasenko | |
2006-09-19 | getty: oops... removing duplicate #include <syslog.h> | Denis Vlasenko | |
2006-09-19 | stty: reorder code, reducing need in forward declarations. | Denis Vlasenko | |
added few missed bits of error checking for parameters. | |||
2006-09-19 | stty: convert "enum mode_type" into unnamed enum | Denis Vlasenko | |
(reduces code obfuscation); deindent set_mode; add _or_die suffixes to few functions | |||
2006-09-19 | stty: reduce #ifdef forest | Denis Vlasenko | |
2006-09-19 | stty: simplify linewrapping code a bit | Denis Vlasenko | |
2006-09-19 | stty: style fixes | Denis Vlasenko | |
2006-09-19 | stty: fix a longstanding FIXME (was able to die half-way setting term params) | Denis Vlasenko | |
2006-09-19 | mount: fstabname needs to be const char* | Denis Vlasenko | |
2006-09-19 | mount: fix warning (printf field width of * wants int, not size_t) | Denis Vlasenko | |
2006-09-19 | getty: #include <syslog.h> | Denis Vlasenko | |
2006-09-19 | change char *string = "foo" -> char string[] = "foo" | Denis Vlasenko | |
function old new delta xsetenv 45 44 -1 iproute_list_or_flush 1834 1833 -1 ipaddr_modify 1915 1914 -1 ipaddr_list_or_flush 1861 1860 -1 invarg 39 38 -1 do_set 1259 1258 -1 bb_verror_msg 268 267 -1 create_icmp_socket 142 140 -2 create_icmp6_socket 142 140 -2 bb_full_fd_action 324 322 -2 bb_path_mtab_file 10 - -10 .rodata 214796 214720 -76 ------------------------------------------------------------------------------ (add/remove: 0/1 grow/shrink: 0/11 up/down: 0/-99) Total: -99 bytes | |||
2006-09-17 | whitespace cleanup | Denis Vlasenko | |
2006-09-17 | mount: style fixlet | Denis Vlasenko | |
2006-09-17 | style fixes | Denis Vlasenko | |