aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Oops. Unmatched #ifandersen2000-12-121-0/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1433 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Some compile fixes found by Larry Doolittleandersen2000-12-124-5/+7
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1431 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Script updates for better portabilityandersen2000-12-124-12/+30
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1430 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Matt Kraai pointed out that we can rely on strncpy to NULLandersen2000-12-111-1/+1
| | | | | | | terminate shorter cases, so we can save a few cycles... git-svn-id: svn://busybox.net/trunk/busybox@1429 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from larry doolittle to make sure we don't reallocandersen2000-12-112-0/+2
| | | | | | | a pointer that was not yet malloced mem. git-svn-id: svn://busybox.net/trunk/busybox@1428 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Keep unknown priorities from segfaulting.kraai2000-12-112-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1427 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix spelling error s/defaut/default/gandersen2000-12-115-6/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1426 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix non-NULL terminated strings.andersen2000-12-111-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1425 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix a thinko -- when REMOTE_LOG support is compiled in,andersen2000-12-112-0/+12
| | | | | | | | but the user has not specified remote logging, then be sure to log locally... duh. git-svn-id: svn://busybox.net/trunk/busybox@1424 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Matt Kraai to fox sh.c escape problem such thatandersen2000-12-113-3/+9
| | | | | | | | running things like 'echo "\n\tHi\n\t\!"' and 'echo -e "\n\tHi\n\t\!"' behave as under bash. git-svn-id: svn://busybox.net/trunk/busybox@1423 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Test suite update from Larry Doolittle to disable some problematicandersen2000-12-112-3/+10
| | | | | | | ambiguous cases. Everything now passes the test suite... git-svn-id: svn://busybox.net/trunk/busybox@1422 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from kent robotti to fix a buglet whereandersen2000-12-112-6/+4
| | | | | | | | | | # du doesn't_exist du: doesn't_exist: No such file or directory 0 doesn't_exist which was on course wrong. I simplified it a bit... git-svn-id: svn://busybox.net/trunk/busybox@1421 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix the option parsing to use getopt, which seems to fix bug #1050andersen2000-12-112-62/+26
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1420 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Larry Doolittle, fix up logging across multilple lines, hopefullyandersen2000-12-112-60/+50
| | | | | | | fixing bug #1061. git-svn-id: svn://busybox.net/trunk/busybox@1419 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Reverse logic so when network logging, it by default does not log locally.andersen2000-12-116-13/+13
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1418 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add a linker warning for symbol conflicts.andersen2000-12-111-5/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1417 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Some .deb updateandersen2000-12-103-3/+19
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1416 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Support for tar -z option for uncompressing onlybug12000-12-106-48/+163
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1415 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Introduce new function gunzip_init()bug12000-12-102-64/+70
| | | | | | | gunzip_init() will make it easier to use gunzip from other bb functions. git-svn-id: svn://busybox.net/trunk/busybox@1414 69ca8d6d-28ef-0310-b511-8ec308f3f277
* NFS_PORT and NFS_FHSIZE are not defined in the kernel headers that come with ↵bug12000-12-092-0/+12
| | | | | | | | | libc6-2.2-5 This just defines that if they arent found in the kernel header git-svn-id: svn://busybox.net/trunk/busybox@1413 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix problem where 'du file_that_exists' doesn't work.andersen2000-12-092-4/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1412 69ca8d6d-28ef-0310-b511-8ec308f3f277
* More wget cleanups I've been working on...andersen2000-12-092-60/+106
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1411 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Some little cleanups from Larry Doolittleandersen2000-12-094-4/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1410 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Matt Kraai to implement uniq -[cdu]andersen2000-12-096-15/+103
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1409 69ca8d6d-28ef-0310-b511-8ec308f3f277
* add quiet mode support.bug12000-12-092-10/+20
| | | | | | | | If wget compiled without statusbar then -q option is accepted but has no effect. If wget compiled with statusbar -q turns it off. git-svn-id: svn://busybox.net/trunk/busybox@1408 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Forget to set final argv entry to NULL, breaking sh.c amoungandersen2000-12-092-0/+2
| | | | | | | other things... git-svn-id: svn://busybox.net/trunk/busybox@1407 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Some updates. Wrong name was on a patch, plus a spelling fix.andersen2000-12-081-2/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1406 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Put in i to getopt, so i will work...andersen2000-12-083-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1405 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Update inittab docsandersen2000-12-082-17/+73
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1404 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make no local logging a runtime option for network logging...andersen2000-12-086-55/+69
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1403 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Gennady Feldman <gfeldman@mail.com> to make syslogd not logandersen2000-12-083-8/+10
| | | | | | | | when compiled for remote logging. Not the ideal way to fix it (it should really be a runtime switch), but good enough for now I guess... git-svn-id: svn://busybox.net/trunk/busybox@1402 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Matt Kraai to make logger log all arguments.andersen2000-12-083-6/+25
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1401 69ca8d6d-28ef-0310-b511-8ec308f3f277
* when invoked as 'busybox foo args' remove the "busybox"andersen2000-12-082-8/+50
| | | | | | | so ps shows only what we want it to show... git-svn-id: svn://busybox.net/trunk/busybox@1400 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Matt Kraai to enable proxy support.andersen2000-12-073-8/+30
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1399 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Changed names of functions in utility.c and all affected files, to makemarkw2000-12-07155-1021/+1021
| | | | | | | compliant with the style guide. Everybody rebuild your tags file! git-svn-id: svn://busybox.net/trunk/busybox@1398 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix by Tim Robbins <fyre@box3n.gumbynet.org> to prevent bad formatkraai2000-12-072-2/+2
| | | | | | | strings from being passed to syslog(3). git-svn-id: svn://busybox.net/trunk/busybox@1397 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Get rid of redundant TRUE and FALSE definitions.kraai2000-12-072-14/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1396 69ca8d6d-28ef-0310-b511-8ec308f3f277
* oops, didn't mean to commit that last one... revertingtausq2000-12-071-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1395 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Write progress meter to stderr instead of stdouttausq2000-12-073-5/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1394 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fixed URL parsing bugtausq2000-12-072-16/+28
| | | | | | | Fixed -O - output-to-stdout bug git-svn-id: svn://busybox.net/trunk/busybox@1393 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Jim Gleason <jimg@lineo.com> to fix tar so it no longer breaks hardandersen2000-12-075-10/+192
| | | | | | | links, and no longer segfault in a certain wierd case. git-svn-id: svn://busybox.net/trunk/busybox@1392 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add some more changlog stuff suggested by Larry Doolittle.andersen2000-12-071-2/+20
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1391 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Bettwr document the hidden internal sh.c #defines, and which folksandersen2000-12-063-6/+30
| | | | | | | might want to use... git-svn-id: svn://busybox.net/trunk/busybox@1390 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Close but #1071...andersen2000-12-062-34/+28
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1389 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Ignore the newdocs as wellandersen2000-12-061-0/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1388 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Matt Kraai to fix 'echo "1 2 3" | tr -s " "'andersen2000-12-062-2/+2
| | | | | | | so it properly outputs "1 2 3". git-svn-id: svn://busybox.net/trunk/busybox@1387 69ca8d6d-28ef-0310-b511-8ec308f3f277
* patch from Larry Doolittle to rename BB_FEATURE_SH_BUILTINS_ALWAYS_WINandersen2000-12-064-12/+12
| | | | | | | to the more pedantically correct BB_FEATURE_SH_APPLETS_ALWAYS_WIN. git-svn-id: svn://busybox.net/trunk/busybox@1386 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Added insmod support for ARM, and lsmod support for older kernels,andersen2000-12-066-191/+498
| | | | | | | | | thanks to Alcove, Julien Gaulmin <julien.gaulmin@alcove.fr> and Nicolas Ferre <nicolas.ferre@alcove.fr>. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1385 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Must compile before committing.kraai2000-12-062-4/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1384 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix exit status on failure.kraai2000-12-068-36/+42
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1383 69ca8d6d-28ef-0310-b511-8ec308f3f277