summaryrefslogtreecommitdiff
path: root/Makefile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Some minor updates. Bump version number in preparation for release.Eric Andersen2001-07-071-1/+3
| | | | -Erik
* Forgot thisEric Andersen2001-07-061-4/+1
|
* Simplify a commentEric Andersen2001-06-301-2/+0
|
* Vladimir's last_patch_15Glenn L McGrath2001-06-261-1/+1
|
* Fix the build process so it does not do the evil #ifdef BB_FOO stuff.Eric Andersen2001-06-221-2/+11
| | | | | | Build exactly one .o file per function, and let the linker throw away the junk it doesn't want. -Erik
* Rewrote mkdir (and touched lots of things in the process).Matt Kraai2001-06-211-2/+3
|
* Reorganise unarchiving functions, more code re-use, only does single pass(no ↵Glenn L McGrath2001-06-201-13/+11
| | | | | | more linked lists), basis for supporting a cpio (and cheaper untar) applet, but cpio applet isnt included in this. It effects ar, dpkg-deb applets only
* Reorganise archive extraction codeGlenn L McGrath2001-06-131-14/+14
|
* Do not purge the .cvsignore files on 'make release' so thatEric Andersen2001-06-041-5/+0
| | | | | people can properly import into their own CVS trees. -Erik
* Vladimir's last_patch13, containing several bugfixes.Eric Andersen2001-06-011-1/+1
|
* Make hush the default shell. Ensure the applets_list getsEric Andersen2001-05-301-2/+2
| | | | the axe on a distclean.
* Add xgethostbyname and herror_msg* functions.Matt Kraai2001-05-161-2/+3
|
* This patch from Adam Heath <doogie@debian.org>, makes print_fileEric Andersen2001-05-151-1/+1
| | | | (used by cat, grep, sed, etc) quite a bit faster.
* Per suggestion from Vladimir, eliminate check_wildcard_match(), whichEric Andersen2001-05-141-1/+1
| | | | | | | | | | | was only being used by insmod these days. Also, I spent a minute adjusting insmod so that it first searches /lib/modules/`uname -r` and then (if that fails) searches /lib/modules, which makes bb insmod behave much more like the real insmod, and should avoid nasty surprises (such as the recent "Modutils vs. Busybox..." thread). -Erik
* Fix a segfault in lash, hush, and cmdedit. Each of these usedEric Andersen2001-05-111-1/+1
| | | | | | xgetcwd, but did not check the return for a NULL, and then continued to call strlen on the NULL when the cwd had been removed from under it. -Erik
* Bump version to 0.52preEric Andersen2001-05-091-1/+1
|
* Update comment re USE_SYSTEM_PWD_GRPEric Andersen2001-05-071-5/+6
| | | | -Erik
* Oops. The dangers of applying patches by hand...Eric Andersen2001-05-011-1/+1
|
* A patch from Larry to fix pristine source builds (again).Eric Andersen2001-05-011-1/+1
| | | | I just can't seem to _not_ break it. Sigh.
* Made new xreadlink function for libbb and changed applets to use it instead ofMark Whitley2001-04-301-2/+2
| | | | readlink(2).
* Per suggestion by Matt, make sh.c a real target. There is noEric Andersen2001-04-301-4/+4
| | | | | need for the useless sh_link dummy target -- use the real thing. -Erik
* fix to applet_source_list rule so Debian package continues to buildDavid Kimdon2001-04-281-1/+1
|
* Matt was complaining. Hopefully this helps the sh.c link situationEric Andersen2001-04-271-4/+4
|
* Be a bit more sneaky about the sh.c symlink so you don't need toEric Andersen2001-04-261-2/+4
| | | | | do a mke clean for it to happen. -Erik
* This is the initial checkin of Larry Doolittle's hush.c, using hisEric Andersen2001-04-261-0/+1
| | | | | | | | | | | | April 25, 2001 snapshot, adjusted a bit by me so it has cmdedit support. This checkin also removes sh.c. In the future sh.c will be a symlink to your shell of choice. For now, this symlink will default to pointing to lash.c (as in the past). If you change the symlink to point to hush.c, then thats what you will get. This symlink business is a temporary situation, which will be cleaned up Real Soon Now(tm). -Erik
* Another nice cleanup from Larry. This adds a new last_char_is() function andEric Andersen2001-04-261-1/+1
| | | | | | uses it to avoid possible buffer underruns whn strlen is zero, and avoid the possible space-hogging inline of strlen() in several cases. -Erik
* Applied patch from Larry Doolittle to fix pristine build breakage.Mark Whitley2001-04-251-0/+1
|
* Move messages.c to libbb. Make each string in messages.c be its own .o file.Eric Andersen2001-04-251-3/+11
| | | | | | | This way, we can new get rid of all that tedious #define rubbish we used to need to enable specific messages. This way is enormously simpler, and as a bonus also ends up saving us 96 bytes. -Erik
* Cleanup more carefully after pod2htmlEric Andersen2001-04-241-2/+2
|
* Rewrote rm.Matt Kraai2001-04-241-1/+2
|
* Change link order so that libbb functions use libpwd.a when appropriate.Matt Kraai2001-04-231-1/+1
|
* This has two patches. First it moves interface.c to libbb (it isEric Andersen2001-04-191-1/+1
| | | | | | | support code after all). It also contains a patch from Larry Doolittle that removes two instances of "strlen([^)]*) *- *1", un-shadows two variables, relaxes requirement for a sprintf(3) that returns number of bytes written, and eliminates a duplicate subroutine.
* NEw functions read_package_field and read_text_file_to_bufferGlenn L McGrath2001-04-151-4/+4
|
* Use date -u instead of date --utc and consolidate version string.Matt Kraai2001-04-121-1/+1
| | | | Patch by Larry Doolittle <ldoolitt@recycle.lbl.gov>.
* use tmpfile() and revert my previous changes... convert() belongs hereGlenn L McGrath2001-04-121-11/+12
|
* copy_file_chunk uses streams now.Glenn L McGrath2001-04-111-10/+10
|
* Move unzip, gz_open, gz_close to libbbGlenn L McGrath2001-04-111-7/+7
|
* Move deb_extract() to libbb, dpkg now independent of dpkg-debGlenn L McGrath2001-04-111-7/+7
|
* Move get_ar_headers to libbb, make dpkg_deb.c independent of ar.cGlenn L McGrath2001-04-111-10/+11
|
* Fix up the uClibc compiler name (its format was recently changed slightly)Eric Andersen2001-04-101-1/+1
|
* Apply Vladimir's latest cleanup patch.Eric Andersen2001-04-091-1/+2
| | | | -Erik
* Bump version number to 0.51Eric Andersen2001-04-091-1/+1
|
* - use docs/autodocifier.pl to merge POD togetherJohn Beppu2001-04-051-1/+6
|
* Some further syscall adjustments. Split the module syscalls out ofEric Andersen2001-04-051-1/+1
| | | | | | insmod and into libbb. Only enable them for libc5. glibc and uClibc don't need them. -Erik
* Failed to name "Electric-fence" explicitlyEric Andersen2001-04-041-1/+1
|
* Seems that stupid libc5 doesn't implement daemon(), so conditionallyEric Andersen2001-04-041-1/+1
| | | | | inclde that here. -Erik
* Add in easy-to-use electric-fence support.Eric Andersen2001-04-031-0/+10
| | | | -Erik
* Fix for bug 1143 from Larry DoolittleEric Andersen2001-04-031-2/+5
| | | | -Erik
* Move the mtab support stuff into libbbEric Andersen2001-04-011-2/+2
| | | | -Erik
* Fixed the Makefile so busybox can link against libc5 again. Putting libbb.a atMark Whitley2001-03-271-1/+1
| | | | the end broke it.