summaryrefslogtreecommitdiff
path: root/libbb (follow)
Commit message (Collapse)AuthorAgeFilesLines
* More extern removal from Robert P. Day.Rob Landley2006-03-296-16/+4
|
* find ./ -name .cvsignore | xargs svn rmBernhard Reutner-Fischer2006-03-291-1/+0
|
* just whitespace fixesMike Frysinger2006-03-281-7/+7
|
* More dead code removal.Rob Landley2006-03-261-27/+1
|
* Bug spotted by Stephane Billiart: losetup depends on loop.c.Rob Landley2006-03-231-0/+1
|
* Very nice patch from Rich Felker to portably set the stream error indicator andRob Landley2006-03-231-104/+27
| | | | thus remove a lot of nasty old code that didn't.
* Patch from Shaun Jackman to make loop.c build only when needed.Rob Landley2006-03-211-1/+2
|
* - fix order of includes.Bernhard Reutner-Fischer2006-03-181-1/+6
|
* Whitespace cleanup and minor tweak (return -ERRNO instead of ERRNO soRob Landley2006-03-181-13/+6
| | | | EPERM doesn't register as a successful read-only mount.
* Random in-passing tweak.Rob Landley2006-03-161-6/+2
|
* More "extern" removals from Robert P. DayRob Landley2006-03-141-2/+4
|
* Attempt to make a warning go away without increasing size.Rob Landley2006-03-141-4/+3
|
* - revert back to r14406Bernhard Reutner-Fischer2006-03-131-56/+49
|
* Patch from Denis Vlasenko to add xstat() and use it.Rob Landley2006-03-133-4/+13
|
* Patch from Denis Vlasenko turning static const int (which gets emitted intoRob Landley2006-03-103-3/+3
| | | | the busybox binary) into enums (which don't).
* Portability patch from rfelker. The bb_asprintf.c thing needs an eventualRob Landley2006-03-091-0/+10
| | | | | follow up in platform.h to set the #ifdef, but the workaround works for everybody, so...
* - backout using features which are not available with the previous stableBernhard Reutner-Fischer2006-03-091-2/+7
| | | | version of make (3.71.1).
* Robert P. Day removed 8 gazillion occurrences of "extern" on functionRob Landley2006-03-0637-54/+54
| | | | definitions. (That should only be on prototypes.)
* - remove unused lists *-mBernhard Reutner-Fischer2006-03-021-1/+1
|
* - use absolute path for top_builddir and top_srcdir.Bernhard Reutner-Fischer2006-03-021-0/+4
| | | | Fixes make trying to include the very same file in an endless loop.
* - fixes parallel builds (make -j)Bernhard Reutner-Fischer2006-03-011-50/+52
| | | | - use less resources for the buildsystem itself
* A few changes falling out from the effort to make sed handle embedded NUL bytes.Rob Landley2006-02-241-46/+20
| | | | Checking in to reduce the diff between my tree and svn...
* document leading + optionMike Frysinger2006-02-221-0/+7
|
* Forgot to check this in last night, part of the hash_fd breakup.Rob Landley2006-02-211-3/+3
|
* Patch from Devin Bayer to split up hash_fd.c into md5.c and sha1.c. (I tweakedRob Landley2006-02-213-383/+264
| | | | md5_sha1_sum.c to convert some #ifdef CONFIG to if(ENABLE).)
* a few more comment touchupsMike Frysinger2006-02-211-4/+6
|
* translate Russian-English to just plain EnglishMike Frysinger2006-02-211-4/+8
|
* sync with mainstream, but check more"Vladimir N. Oleynik"2006-02-201-5/+5
|
* getdomainname() isn't guaranteed to null terminate the string if it wasRob Landley2006-02-201-6/+6
| | | | | | truncated for length. SVN 14135 made sure that the truncated version would always be null terminated. SVN 14144 broke this for no readily apparent reason, and I have no idea what it was even trying to accomplish. Reverted.
* remove #undef strlen, use #define strlen always but without ↵"Vladimir N. Oleynik"2006-02-201-3/+7
| | | | xfunc/BB_STRLEN_IMPLEMENTATION
* correction get(host/domain)name usage, revert 742 bug"Vladimir N. Oleynik"2006-02-201-6/+6
|
* svn 14077 was completely broken and apparently never tested.Rob Landley2006-02-201-14/+4
|
* rfelker writes in Bug 742: make sure string is null terminated after calling ↵Mike Frysinger2006-02-191-1/+2
| | | | gethostname
* rfelker writes in Bug 740: s/u_char/unsigned char/Mike Frysinger2006-02-191-12/+12
|
* type typo. Thanks, Devin Bayer"Vladimir N. Oleynik"2006-02-171-1/+1
|
* moved BB_BANNER to applets/version.c file: make kernel like version, "Vladimir N. Oleynik"2006-02-161-1/+6
| | | | removed depend loop: busybox.h depend with BB_BT, and all sources depend with busybox.h
* removed #undef strlen, use builtins and prototuped strlen from xfunc file ↵"Vladimir N. Oleynik"2006-02-161-1/+0
| | | | (only\!)
* cleanups after changes by Denis Vlasenko. Size optimization"Vladimir N. Oleynik"2006-02-141-6/+9
|
* Cleanups from Denis Vlasenko.Rob Landley2006-02-131-14/+23
|
* Bug fix from Kim B. Heino, manifested via:Rob Landley2006-02-131-0/+1
| | | | echo > foo && zip foo.zip foo && ./busybox unzip foo.zip
* Save a few bytes in error message.Rob Landley2006-02-051-1/+1
|
* destroy bug 679, use getopt_ulflags with new feature: usage option. Removed ↵"Vladimir N. Oleynik"2006-02-021-0/+10
| | | | two strdup
* make the build system puuuuuuuuuuurtyMike Frysinger2006-02-021-11/+9
|
* - bzero -> memsetBernhard Reutner-Fischer2006-01-311-14/+2
| | | | | | | | | | | | | | | text data bss dec hex filename 1652855 14444 1215616 2882915 2bfd63 busybox.oorig.gcc-3.3 1652823 14444 1215616 2882883 2bfd43 busybox.gcc-3.3 1603655 14412 1215552 2833619 2b3cd3 busybox.oorig.gcc-3.4 1603655 14412 1215552 2833619 2b3cd3 busybox.gcc-3.4 1609755 14508 1215744 2840007 2b55c7 busybox.oorig.gcc-4.0 1609755 14508 1215744 2840007 2b55c7 busybox.gcc-4.0 1590495 13516 1215392 2819403 2b054b busybox.oorig.gcc-4.1-HEAD 1590495 13516 1215392 2819403 2b054b busybox.gcc-4.1-HEAD 1589079 13036 1213248 2815363 2af583 busybox.oorig.gcc-4.2-HEAD 1589079 13036 1213248 2815363 2af583 busybox.gcc-4.2-HEAD
* more obscure"Vladimir N. Oleynik"2006-01-311-1/+4
|
* avoid signed<->unsigned warning"Vladimir N. Oleynik"2006-01-311-1/+1
|
* - fix typo i introduced yesterday.Bernhard Reutner-Fischer2006-01-311-1/+1
|
* with 2.4 kernel headers, lo_file_name is char, but with 2.6Eric Andersen2006-01-301-3/+3
| | | | | headers we get a u8 for lo_file_name, so always cast to (char *) when treating it as such.
* - add some ATTRIBUTE_UNUSED.Bernhard Reutner-Fischer2006-01-302-28/+6
| | | | - use shorter boilerplate while at it.
* - make linking against libcrypt optional by looking if pw_encrypt() orBernhard Reutner-Fischer2006-01-301-2/+8
| | | | correct_password() is configured. Fixes allnoconfig pulling in -lcrypt.