aboutsummaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
2002-03-27* archival/bunzip2.c: Include <unistd.h>.Matt Kraai
(bunzip2_main): Read data from standard input if FILE argument is `-' or omitted. * include/usage.h (bunzip2_trivial_usage, bunzip2_full_usage): Rewrite. * testsuite/bunzip2/bunzip2-reads-from-standard-input: New.
2002-03-20* include/applets.h (CONFIG_LOSETUP): New.Matt Kraai
* include/usage.h (losetup_trivial_usage, losetup_full_usage): New. * util-linux/Makefile: Add losetup.o. * util-linux/config.in: Add losetup prompt. * util-linux/losetup.c: New.
2002-03-20Fix devfs loop device supportEric Andersen
2002-03-16Try to pull in PATH_MAX properlyEric Andersen
2002-02-05* archival/gzip.c (ifname, ofname): Delete.Matt Kraai
(gzip_main): Handle multiple files. * include/usage.h (gzip_trivial_usage): Allow multiple FILEs. (gzip_full_usage): Ditto. * testsuite/gzip/gzip-accepts-multiple-files: New. * testsuite/gzip/gzip-removes-original-file: New.
2002-02-05* include/usage.h (gzip_trivial_usage): Make FILE optional.Matt Kraai
(gzip_full_usage): Note behavior when FILE is unspecified.
2002-01-26If PATH_MAX isn't defined, define it outselvesEric Andersen
2002-01-03* include/usage.h: Fix route and unzip usage messages (patch fromMatt Kraai
Laurence Anderson).
2002-01-02unzip applet by Laurence AndersonGlenn L McGrath
----------------------------------------------------------------------
2001-12-18Vodz' last_patch31Eric Andersen
Very minimal last corrections: 1) busybox.c: fix warining 2) docs/: add applets for list from pwd_grp 3) usage.h: add -n option for route 4) run_parts.c: many todo fix for busybox style 5) addgroup.c: add #ifdef CONFIG_FEATURE_SHADOWPASSWDS, reduce one perror_msg 6) adduser.c: fix bug "variable i not initialize" and add #ifdef CONFIG_FEATURE_SHADOWPASSWDS
2001-12-17Add in a new restart init target, triggered by SIGHUP. Patch fromEric Andersen
Russ Dill, with adjustments by me. -Erik
2001-12-17Make cp and mv optionally preserve hard links.Matt Kraai
2001-12-16Some minor usage cleanups from David Douthitt <ssrat@mailbag.com>Eric Andersen
2001-12-06Remove documentation for the --file option to hostname (noted byMatt Kraai
David Douthitt).
2001-12-06Merge in the cal applet from Steve Merrifield <steve@labyrinth.net.au>Eric Andersen
2001-12-06If find_pid_by_name() had an error, it was returning -1, but storingEric Andersen
that into a pid_t, which is unsigned on a number archs. Furthermore, find_pid_by_name() would _never_ return an error if the intended proces was "init", but instead would return 1, meaning we would fail to work on 2.4.x kernels running an initrd... -Erik
2001-12-06Patch from Steve Merrifield <steve@labyrinth.net.au> toEric Andersen
fixup the merge of the time applet, which I messed up. -Erik
2001-11-30Add in a 'time' applet. Adds 4.5k.Eric Andersen
-Erik
2001-11-18bzcat and bunzip -c support from Thomas LundquistGlenn L McGrath
2001-11-10I forgot to add these. Part of the patch from vodzEric Andersen
2001-11-02Required for od and hexdump appletsGlenn L McGrath
2001-11-02Introduce od and hexdump appletsGlenn L McGrath
2001-10-31Move usage.h to include/usage.hEric Andersen
2001-10-31Run parts applet by Emanuele Aina <faina.mail@tiscalinet.it>Eric Andersen
2001-10-29Use extended regular expressions when invoked as egrep (noted and initialMatt Kraai
patch by Charles Steinkuehler).
2001-10-27include unistd which provides off_t for the header and hence unarchive appletsGlenn L McGrath
2001-10-25libunarchive, and recovery from my previous commitGlenn L McGrath
2001-10-25Modify applets to use libunarchiveGlenn L McGrath
2001-10-24Split true and false into separate applets.Matt Kraai
2001-10-24Ignore generated filesEric Andersen
2001-10-24Major rework of the directory structure and the entire build system.Eric Andersen
-Erik
2001-10-18Commit the start-stop-daemon applet. This was contributed by DavidEric Andersen
Kimdon <dwhedon@gordian.com> on october 7th -- the day I was fired from Lineo. So it seems I totally forgot about this patch until now. Sorry about that David!
2001-10-13unarchive function changed to support both exclude and include lists, ↵Glenn L McGrath
applets that use unarchive changed to match.
2001-10-05Remove duplicate tftp -l option helpGlenn L McGrath
2001-10-05Apply Magnus Damm's patch, adds tftp blocksize support, and some cleanups.Glenn L McGrath
2001-10-05Initial support for for bunzip2....Glenn L McGrath
This code could be improvemed by 1) supporting more options, 2) Creating a shared crc table with gunzip, or perhaps generated on the fly. 3) Removing any remaining unneccessary code (e.g. if (noisy))
2001-10-05Invert FILEUTILS_PRESERVE_SYMLINKS into FILEUTILS_DEREFERENCE.Matt Kraai
2001-09-21Fix tftp usage information (closes: #1216).Matt Kraai
2001-09-16closes bug#1215?Tim Riker
2001-08-27Remove traces of rpmunpack (patch by Laurence Anderson).Matt Kraai
2001-08-24Eliminate improper consts and allow standard version to override.Matt Kraai
2001-08-21Initial merge of all tinylogin applets that do not require crypt.Eric Andersen
There is some optimization that can be done to better use libbb in these applets. There is also redundancy between stty and getty which could be eliminated. -Erik
2001-08-10Commit Vladimir's simplify_path.Matt Kraai
2001-08-02More libc5 fixupsEric Andersen
-Erik
2001-08-02make_directory used mode as if it were an signed entity, but in factEric Andersen
it was a mode_t which is unsigned. Fix it to be signed... -Erik
2001-08-02Ok, if no shell is enabled, don't include any of the SH_IS_<name>Eric Andersen
options or the build will fail -Erik
2001-08-02Latest patch from vodz. Adds a check for divide by zero in the posixEric Andersen
math suport, cleaner math syntax error checking, moves redundant signal string tables (from kill and ash) into libbb and provides a few cleanups elsewhere.
2001-08-01Allow multiple shells to be enabled.Matt Kraai
2001-07-31I just wrote up a simple pidof applet, closing bug #1197Eric Andersen
-Erik
2001-07-30This incorporates Posix math support into ash. The Posix math supportEric Andersen
was written by Aaron Lehmann <aaronl@vitelus.com> for busybox. This patch makes a few trivial changes to Aaron's code so that it can be used (in theory) by the other shells as well... -Erik