aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* - 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
|
* Teach get_terminal_width_height to fall back to $LINES and $COLUMNS whenRob Landley2006-09-203-37/+27
| | | | used via things like a serial console.
* The version checked into the tree is a snapshot of an unifinished applet, andRob Landley2006-09-201-7/+7
| | | | | | you just made lots of ">>>>>>> mine" lines show up in my working copy of this. Please don't do that again.
* The Software Freedom Law Center wants us to add a copyright notice to theRob Landley2006-09-202-15/+8
| | | | | | | | | | | | | | | 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...
* License clarification.Rob Landley2006-09-202-4/+51
|
* - fix documentation for the command-line options of ipcs. Closes #1036Bernhard Reutner-Fischer2006-09-201-4/+4
|
* - fix embarrassing typo of mine. Closes bug #1038Bernhard Reutner-Fischer2006-09-201-2/+2
|
* ipcs: fix output (misaligned columns)Denis Vlasenko2006-09-191-2/+2
|
* ipcs: getopt_ulflag'ification, -170 bytesDenis Vlasenko2006-09-191-39/+16
|
* stty: fix few bugs found in testingDenis Vlasenko2006-09-191-25/+27
|
* getty: oops... removing duplicate #include <syslog.h>Denis Vlasenko2006-09-191-2/+0
|
* stty: reorder code, reducing need in forward declarations.Denis Vlasenko2006-09-191-211/+198
| | | | added few missed bits of error checking for parameters.
* stty: convert "enum mode_type" into unnamed enumDenis Vlasenko2006-09-191-157/+169
| | | | | (reduces code obfuscation); deindent set_mode; add _or_die suffixes to few functions
* stty: reduce #ifdef forestDenis Vlasenko2006-09-191-52/+45
|
* stty: simplify linewrapping code a bitDenis Vlasenko2006-09-191-55/+33
|
* stty: style fixesDenis Vlasenko2006-09-191-102/+93
|
* stty: fix a longstanding FIXME (was able to die half-way setting term params)Denis Vlasenko2006-09-191-171/+241
|
* mount: fstabname needs to be const char*Denis Vlasenko2006-09-191-2/+3
|
* mount: fix warning (printf field width of * wants int, not size_t)Denis Vlasenko2006-09-191-1/+1
|
* getty: #include <syslog.h>Denis Vlasenko2006-09-191-0/+1
|
* change char *string = "foo" -> char string[] = "foo"Denis Vlasenko2006-09-193-53/+53
| | | | | | | | | | | | | | | | | | 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
* whitespace cleanupDenis Vlasenko2006-09-1792-218/+218
|
* mount: style fixletDenis Vlasenko2006-09-171-2/+4
|
* style fixesDenis Vlasenko2006-09-171-5/+4
|
* mount: revert mount --bind to using "bind" as fstype.Denis Vlasenko2006-09-171-1/+1
|
* mount: mount_it_now() - char *dir is not really needed.Denis Vlasenko2006-09-171-3/+3
|
* mount: fix "duplicate mount options in mtab" bugDenis Vlasenko2006-09-171-3/+21
|
* mount: nfs_strerror's static buffer was bigger than needed.Denis Vlasenko2006-09-171-1/+1
|
* mount: getopt_ulflag'ificationDenis Vlasenko2006-09-171-38/+24
|
* mount: style fixesDenis Vlasenko2006-09-171-34/+34
|
* mount: fix bugs: free(mp->mnt_fsname) of non-malloced ptr;Denis Vlasenko2006-09-171-17/+20
| | | | check for "more than 2 arguments" was actually checking for -2.
* mount: use bb_simplify_path as appropriateDenis Vlasenko2006-09-171-21/+13
|
* mount: style fixesDenis Vlasenko2006-09-171-21/+24
|
* login: apply fixes + getopt_ulflag'ification by BernhardDenis Vlasenko2006-09-171-44/+29
|
* - Steven Scholz pointed out that ssd's make-pid doesn't take an argument.Bernhard Reutner-Fischer2006-09-151-1/+1
|
* mount: reorder things, fix NFS-less mount.Denis Vlasenko2006-09-151-380/+360
|
* Unbreak allbareconfig.Rob Landley2006-09-151-5/+2
|
* So, in the cornucopia of superfulous warning directives I didn't add to theRob Landley2006-09-151-1/+1
| | | | | | | | | | | | | | | | | tree, we have the warning about failed inlines (which with our inline limit set to zero means any usage of the "inline" keyword at all). Note that setting the inline limit to zero, and using -Werror, both predated adding the warning about inlines to the tree. So whatever checkin added that did nothing but break the tree. But oh well. The second category of superfluous warnings is warning about functions with no previous declaration. Apparently, if you add ALWAYS_INLINE to an empty function definition, it considers the sucker undeclared as far as the warning is concerned. (I.E. it's a buggy warning. I try not to ask the compiler to generate warnings it can't competently generate.) This is why I removed "inline" (unbreak allbareconfig), and couldn't replace it with "ALWAYS_INLINE" (still broke allbareconfig).
* Unbreak allbareconfig.Rob Landley2006-09-151-15/+3
| | | | | | We've had -Werror in the tree for quite a while, so adding #warning somewhat counterproductve way to make comments on the code that belong on the mailing list anyway.
* Strangely, using // in the comments I added was not a persistent accident.Rob Landley2006-09-141-65/+62
|
* login: eliminate forward decls and #ifdefsDenis Vlasenko2006-09-141-191/+166
|
* umount: do not try to close FILE* which is NULL.Denis Vlasenko2006-09-141-11/+13
|
* mount: -o remount should not add lines to /etc/mtabDenis Vlasenko2006-09-141-1/+1
|
* mount: move code from nfsmount.c into mount.cDenis Vlasenko2006-09-144-1031/+1018
|
* - make sure that the 'build' dir exists even if we are about to build just ↵Bernhard Reutner-Fischer2006-09-141-0/+7
| | | | one applet.
* - do away with silly comment and do the Right Thing wrt building the archives.Bernhard Reutner-Fischer2006-09-141-28/+1
| | | | You have to provide the absolute path to the objdir/target.ext you want to build, as can be seen in the respective makefiles..
* mount: fix mtab support (but it is still rather buggy)Denis Vlasenko2006-09-141-13/+27
|