summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Only remove directories when removing recursively.Matt Kraai2000-09-202-0/+10
|
* Added dos2unix, unix2dos, and unrpm.c thanks to robotti@metconnect.com.Eric Andersen2000-09-2013-18/+442
| | | | -Erik
* When mounting a ro fs rw, print warning and then mount it ro. PatchEric Andersen2000-09-202-0/+8
| | | | | from Dave Cinege. -Erik
* Return failure if ping gets no response.Matt Kraai2000-09-202-4/+16
|
* Reverted my conversion of tar to getopt to ensure tar canEric Andersen2000-09-192-52/+80
| | | | | | handle traditional semantics (i.e. 'tar -xvf -' or 'tar xvf' now both work). -Erik
* Both of these commands were subtly broken. Fortunately when used together theEric Andersen2000-09-194-8/+24
| | | | | | damage was only ugly fscks. Reverted to the static inline code so they work correctly again, -Erik
* I think these featires are fairly safe...Eric Andersen2000-09-193-6/+6
| | | | -Erik
* Avoid segfaults by not using snprintf to copy strings.Matt Kraai2000-09-193-3/+6
|
* Clean up output.Matt Kraai2000-09-192-2/+2
|
* Only defines functions that will compile and are usefull under theGlenn L McGrath2000-09-191-0/+327
|
* Apply a patch from Chip Rosenthal <chip@unicom.com> to fix NFS mounting,Eric Andersen2000-09-192-2/+2
| | | | | which had been inadvertantly broken... -Erik
* Remove definition of basename.Glenn L McGrath2000-09-182-6/+0
| | | | It was defined out so that it would never be seen, and if it was ever seen it wasnt used for anything. It also stops gunzip compiling under the Hurd.
* Path count was out by one, fixed itGlenn L McGrath2000-09-182-2/+2
|
* Simplify and remove dependence on PATH_MAXGlenn L McGrath2000-09-182-62/+24
| | | | | | buf[PATH_MAX] now defined using strlen to the exact size to be used. removed output that was displayed if which didnt find the command, this makes itmatch the behaviour of GNU's which. These modifications result in a slight size decrease.
* Updated stdin/stdout treatment to match that of gnu tar.Matt Kraai2000-09-152-18/+12
|
* Reorganize listing code.Matt Kraai2000-09-152-92/+94
|
* Allow non-verbose listing to work.Matt Kraai2000-09-152-10/+14
|
* Updated to be in sync with the current sample inittabPavel Roskin2000-09-152-15/+19
|
* Fixed compliance with the DTDPavel Roskin2000-09-151-12/+17
|
* + credit markw@lineo.com for his contributionsJohn Beppu2000-09-153-1/+12
|
* Don't suppress output of umount and swapoff - it is both unwisePavel Roskin2000-09-152-4/+4
| | | | and incompatible with lash that doesn't support >&1 yet.
* Don't suppress output of umount and swapoff - it is both unwisePavel Roskin2000-09-152-4/+4
| | | | and incompatible with lash that doesn't support >&1 yet.
* "exit NUMBER" should exit, not returnPavel Roskin2000-09-153-3/+3
|
* 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
|