aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* For "askfirst" don't just read one char from stdin,Pavel Roskin2000-09-142-4/+2
| | | | | read the whole line using getc(), so that everything before Enter gets discarded.
* Add in a patch from robotti@metconnect.com and Chip Rosenthal to makeEric Andersen2000-09-144-38/+134
| | | | | init do login shell stuff. -Erik
* Note the syslogd bug fixEric Andersen2000-09-141-0/+2
|
* Bug fix for wget, and proper attribution of Chip Rosenthal andEric Andersen2000-09-144-16/+13
| | | | | Covad Communications for the contribution of wget. -Erik
* Fix the halt/reboot/poweroff segfault when used from within an initrd...Eric Andersen2000-09-141-15/+3
| | | | -Erik
* Backslashes shouldn't be treated as backticks.Matt Kraai2000-09-143-30/+33
|
* Copy the string terminator.Matt Kraai2000-09-143-3/+3
|
* Fix looping bug, use fullReadGlenn L McGrath2000-09-132-4/+4
|
* Add in BasicLinux by requestEric Andersen2000-09-131-0/+1
|
* Added _installPavel Roskin2000-09-131-0/+1
|
* Ensure forked processes always are on a controlling tty, so theEric Andersen2000-09-132-2/+4
| | | | | ^C can be properly sent to /dev/console. -Erik
* Make syslogd ignore SIGCLD only if SIGCLD is defined. This should fix SPARC.Pavel Roskin2000-09-132-0/+6
| | | | Also ignore SIGCHLD - it must have been meant.
* List of signals updated from util-linux-2.10oPavel Roskin2000-09-132-110/+152
| | | | Architecture names are no longer used - should now compile on SPARC
* Don't fork for the . (source) command so that environment settings areMatt Kraai2000-09-133-3/+6
| | | | preserved.
* Fix calls to {m,c,re}alloc so that they use x{m,c,re}alloc instead ofMatt Kraai2000-09-1325-108/+70
| | | | segfaulting or handling errors the same way themselves.
* Fix unchecked calls to {m,c,re}alloc so that they print an error andMatt Kraai2000-09-133-48/+45
| | | | exit rather than segfaulting (what an improvement).
* Typo fix: resolv -> resolvePavel Roskin2000-09-122-2/+2
|
* Formatting cleanup patch from Bryan Rittmeyer <bryan@ixiacom.com>.Eric Andersen2000-09-122-14/+14
| | | | -Erik
* Fix .deb unpack and experimental TAR supportGlenn L McGrath2000-09-112-174/+356
| | | | | | | | | The previous ar.c fialed to recognise one record in .debs Experimental tar support, this is currently *very* cheap because ar and tar are functionally similar. It will need lots of testing so by default tar support code is defined out. To test uncomment the line "#define BB_AR_EXPERIMENTAL_UNTAR"
* Extra defines for arGlenn L McGrath2000-09-111-4/+4
|
* Simplify a few little things, and merge in a patch fromEric Andersen2000-09-112-22/+22
| | | | | | robotti@metconnect.com so that 'ar -xv' and 'ar -x -v' both work. -Erik
* New dd behaviourGlenn L McGrath2000-09-112-0/+2
|
* dd now truncates files at the end its write, this can be turned of byGlenn L McGrath2000-09-112-6/+20
| | | | | | specifying conv=notrunc in the command line This conforms to GNU dd behaviour
* MAke lsmod act just like modutils lsmod, by printing which modules useEric Andersen2000-09-102-0/+40
| | | | | other modules, and state info like (deleted) and such. -Erik
* Make init handle current 2.4.x sysinfo behaviorEric Andersen2000-09-102-24/+18
| | | | -Erik
* Update free for current 2.4.x behavior...Eric Andersen2000-09-102-42/+26
| | | | -Erik
* Remove some debugging codeGlenn L McGrath2000-09-102-4/+2
|
* Using seek=? used to cause part of the original file to be zero'ed, iGlenn L McGrath2000-09-102-10/+8
| | | | think this was caused by opening the file in truncate mode.
* My previous attempt to make dd use fullRead, fullWrite was very broken,Glenn L McGrath2000-09-102-26/+28
| | | | this should actually work.
* remove some printf statements i forgot aboutGlenn L McGrath2000-09-092-6/+0
|
* Updated to match new -R ar functionalityGlenn L McGrath2000-09-092-2/+4
|
* Implemented new ar functionality unique to busybox ar (i think), the -RGlenn L McGrath2000-09-092-38/+30
| | | | | | | | | | | | | | | option enable a Recursive extraction (or listing) to take place. i.e. if any files being extracted are themselves ar archives then busybox ar will extract their contents as well. e.g. take bar.deb and do (with GNU ar) ar -q foo.deb b.ar then with busybox ar can do ar -x b.ar data.tar.gz -R isnt used for anything in GNU ar so i think it should be ok, could have used long options This functionality will become (more) usufull with tar, gz support.
* Changed getopt so that options can be grouped together, the sourceGlenn L McGrath2000-09-094-30/+26
| | | | | | archive is now assumed to be the first non parameter. This is how GNU ar behaves.
* Fix permisionsGlenn L McGrath2000-09-092-2/+4
|
* Now supports GNU style long filenames.Glenn L McGrath2000-09-092-170/+360
| | | | | | | | | | If no filenames are specifed to be (extracted/listed) it will act on all files in the archive (i dont think the old version did this) Code is structured to better support upcoming recursive extraction functionality. The old code was a bit strange in places, dont know what i was thinking.
* New ls sorting patch, as written by Sterling Huxley, and then updatedEric Andersen2000-09-076-980/+1394
| | | | | | by kent robotti. I then updated it to use my_getpwuid and my_getgrgid (per busybox policy). -Erik
* Stop leaking file handles.Matt Kraai2000-09-072-0/+2
|
* Fix more typos.Matt Kraai2000-09-061-1/+1
|
* Reset optind so that getopt works in busybox applets called directly by sh.Matt Kraai2000-09-063-51/+21
| | | | Change the behavior of -c to correctly handle $1..$9.
* Fixed a grammatical error.Matt Kraai2000-09-061-1/+1
|
* Fixed for when BB_CP_MV is enabled.Eric Andersen2000-09-051-2/+2
|
* Add BB_SH to get_last_path_component()... Fix thanks toEric Andersen2000-09-051-1/+1
| | | | Bj�rn Eriksson.
* Apply segfault on no-args fix from robotti@metconnect.comEric Andersen2000-09-052-2/+2
|
* Set environment variable to make ash happy. ash is a frequent enoughEric Andersen2000-09-052-0/+2
| | | | target....
* Added expr, from Edward Betts <edward@debian.org>, with some fixupsEric Andersen2000-09-0516-6/+1247
| | | | | and docs added by me. -Erik
* Allow compilation when not using BB_FEATURE_TAR_EXCLUDE, and fixMatt Kraai2000-09-042-44/+38
| | | | handling of --exclude option.
* Forgot this part of wgetEric Andersen2000-09-042-0/+22
|
* Initial implementation of wget, from Chip Rosenthal <chip@laserlink.net>.Eric Andersen2000-09-046-0/+537
| | | | | | Very cool. Still lacks "chunked" transfer-coding, so not totally RFC compliant for HTTP1.1, but very nice nonethe less, and very small. -Erik
* Allow selective extraction and listing of files. And fix an uncheckedMatt Kraai2000-09-042-8/+54
| | | | return value of realloc (with xrealloc).
* Add in byldEric Andersen2000-09-011-0/+1
|