summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Patch from Shaun Jackman to detect "name=value" variable assignments. RandomRob Landley2006-06-131-10/+11
| | | | cleanup at the end by me to make some unrelated #ifdefs go away...
* Make lash smaller. (Use llist_t for file closing, and different allocationRob Landley2006-06-131-71/+24
| | | | functions.)
* Rewrite of dmesg, smaller and simpler.Rob Landley2006-06-131-70/+25
|
* Random cleanup of platform.h.Rob Landley2006-06-133-29/+24
|
* Work around a persistent uClibc bug, since 0.9.29 still hasn't shipped.Rob Landley2006-06-131-5/+6
| | | | Poked to do this by Jason Schoon.
* Patch from Denis Vlasenko:Rob Landley2006-06-131-57/+44
| | | | | | | | | | | | * Rename a var: statbytes -> transferred * cursize == transferred, always. Nuke cursize. * Make progressmeter() a nop if !CONFIG_FEATURE_WGET_STATUSBAR (reduces #ifdef forest) * double elapsed -> int elapsed * Do not sprintf to buf first and then write(STDERR) it, just fprintf directly to stderr * Progress bar printing code made smaller * Style fixes
* Whitespace cleanup from Denis Vlasenko.Rob Landley2006-06-131-9/+8
|
* Use -ffunction-sections -fdata-sections --gc-sections if the compiler supportsRob Landley2006-06-131-0/+2
| | | | it. If nothing else, this gives us better granularity in bloatcheck.
* Use xstat() instead of if(stat()) die()Rob Landley2006-06-133-13/+5
|
* Patch from Denis Vlasenko, tweak error messages.Rob Landley2006-06-131-52/+50
|
* Minor size shrinkage.Rob Landley2006-06-131-4/+2
|
* Patch from Denis Vlasenko: unlzma was make files with mode 777. TweakRob Landley2006-06-133-8/+15
| | | | everything to do stat() and use xopen3().
* Fix from Paul Fox to make compressed help text notice config changes.Rob Landley2006-06-131-1/+1
|
* - make VERBOSE= and V= work equally; use BUILD_VERBOSE internally.Bernhard Reutner-Fischer2006-06-132-49/+58
| | | | - move the link flags to cmd_link* so they are printed when requesting verbose output
* - fix stupid typo from last checkinBernhard Reutner-Fischer2006-06-121-1/+1
|
* - remove superfluous CONFIG_BEGIN and CONFIG_ENDBernhard Reutner-Fischer2006-06-111-2/+2
|
* - add fancy mode to start-stop-daemon to support --oknodo and --verboseBernhard Reutner-Fischer2006-06-113-47/+72
|
* - invert logic for nocheck_targets to exclude the empty default target.Bernhard Reutner-Fischer2006-06-111-3/+3
|
* - don't check for toolchain-setting for make targets that don't need themBernhard Reutner-Fischer2006-06-102-2/+16
| | | | | - we already depend on sed, so do away with tr. Avoids pulling in yet another dependency.
* - revert incorrect select changeBernhard Reutner-Fischer2006-06-101-7/+5
|
* - fix two segfaults (reported by Horst Kronstorfer)Bernhard Reutner-Fischer2006-06-101-147/+139
| | | | | | | | | | - remove dangling file if get fails (spotted and fixed by Jason Schoon) - shrink it (Bernhard Fischer) Thanks, all! text data bss dec hex filename 2684 0 0 2684 a7c networking/tftp.o.orig 2748 0 0 2748 abc networking/tftp.o.allfixed 2666 0 0 2666 a6a networking/tftp.o.+shrink
* - use bb_xbindBernhard Reutner-Fischer2006-06-101-1/+1
| | | | Thanks Erik Hovland
* - use bb_xchdir instead of ignoring eventual errors of chdirBernhard Reutner-Fischer2006-06-102-3/+3
| | | | Thanks to Erik Hovland
* - fix bug #887, in bb_get_chomped_line_from_file(), the last char was removedBernhard Reutner-Fischer2006-06-101-9/+14
| | | | | | unconditionally, even if it was not a newline. This was apparently broken by r14254 - whitespace while at it.
* add ordering warning on enum LocationPaul Fox2006-06-091-0/+1
|
* - make sure that we see string_insert only if we need it.Bernhard Reutner-Fischer2006-06-091-2/+2
|
* remove leading "Enable" from the config option text. not only is itPaul Fox2006-06-081-12/+12
| | | | | redundant, but it made the menuconfig shortcut mechanism mostly useless, since so many of the entries started with 'E'.
* made "test" an ash built-in.Paul Fox2006-06-088-232/+270
| | | | | | | | | | | | | | | | | | | moved the contents of libbb/bb_echo.c back into coreutils/echo.c, which is a more reasonable place for them than libbb. this forces anyone who wants echo and test to be builtin to ash to also have them available as applets. their cost is very small, and the number of people who wouldn't want them as applets is also very small. added warning about shell builtins vs. CONFIG_FEATURE_SH_STANDALONE_SHELL, which conflicts with their use. thanks to nathanael copa for debugging help. some string size optimization in test.c may have been lost with this commit, but this is a good new baseline.
* Patch from Erik Hovland, via Tito.Rob Landley2006-06-081-2/+2
|
* Some day, maybe gcc will be able to optimize out static functions that areRob Landley2006-06-081-1/+2
| | | | never used so we don't have to #ifdef them. Wouldn't that be nice?
* need prototype for new vfork_daemon()Mike Frysinger2006-06-071-0/+1
|
* initial support for no-mmu systemsMike Frysinger2006-06-071-0/+4
|
* sometimes daemonizing and vfork()/exit() is okMike Frysinger2006-06-071-5/+19
|
* bb_xdaemon() isnt available on no-mmu systemsMike Frysinger2006-06-071-1/+3
|
* comment all fieldsMike Frysinger2006-06-071-4/+4
|
* hint at where the Magic comes fromMike Frysinger2006-06-071-1/+1
|
* - do away with the comment that noted that the current implementationBernhard Reutner-Fischer2006-06-071-1/+1
| | | | unly supports linux.
* Fix from Tito to read from stdin only when it's not a tty.Rob Landley2006-06-072-4/+4
|
* - spellingBernhard Reutner-Fischer2006-06-071-1/+1
|
* add reference to proc(5)Mike Frysinger2006-06-071-0/+1
|
* - reuse strings and messages. Saves about 600BBernhard Reutner-Fischer2006-06-0722-86/+77
|
* Consolidate devfs garbage and mark it as obsolete.Rob Landley2006-06-072-13/+16
|
* use bb_xbind/bb_xlistenMike Frysinger2006-06-071-5/+2
|
* whitespaceMike Frysinger2006-06-071-1/+1
|
* whitespaceMike Frysinger2006-06-071-1/+1
|
* add a --noclobber flagMike Frysinger2006-06-071-2/+8
|
* add support for cleaning out previous busybox installMike Frysinger2006-06-071-0/+18
|
* dont install emtpy libdirsMike Frysinger2006-06-071-1/+1
|
* dont mix tabs and spaces, kthxMike Frysinger2006-06-071-13/+13
|
* remove cvs $Id tagMike Frysinger2006-06-071-3/+0
|