aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bandaid to make "gzip file1 file2 ..." set the decompression lengths correctlyManuel Novoa III2005-03-021-0/+1
| | | | in the 2nd and later headers. But this and gunzip really need to be rewritten.
* When filling the bit buffer, gzip decompression apparently never checked for ↵Manuel Novoa III2005-03-011-1/+4
| | | | end of file, causing it to hang on corrupted input.
* Update buildroot pointersEric Andersen2005-02-213-3/+4
|
* remove whitespaceEric Andersen2005-02-131-1/+1
|
* remove whitespaceEric Andersen2005-02-131-2/+2
|
* Remove whitespaceEric Andersen2005-02-131-1/+1
|
* Add 'nice' and replace 'renice' with a new implementation.Manuel Novoa III2005-02-137-22/+227
|
* Takeharu KATO writes:Eric Andersen2005-02-111-1/+1
| | | | | | | | | | | | | | | | | | | | | Hi, I found that gcc in cvs (HEAD in 2005/02/11) reject the gzip source in the busybox. This is caused by changing gcc's error handling behavior( The gcc check the function prototype more strictly). I show the compilation log as follow: -- compilation log -- compilation log To fix the problem, apply the patch which is attached with this mail. Please take a look the patch and apply the patch into svn repository.
* - no need to check if JOBS is defined. Config.in ensures it.Ned Ludd2005-02-101-7/+6
|
* - add ash read -t timeout support. initial code provided by Tim Yamin on ↵Ned Ludd2005-02-092-3/+74
| | | | Oct/21/2004 on the busybox mailing list. Edited his code a little to keep syntax highlighers happy and make it optional when CONFIG_ASH_TIMEOUT is defined
* fix typoEric Andersen2005-02-091-1/+1
|
* updateEric Andersen2005-02-091-4/+2
|
* Cut-n-paste strikes againEric Andersen2005-02-092-7/+7
|
* Remove mention of CVS and instead point to SubversionEric Andersen2005-02-0912-152/+112
|
* Update the bug submission stuff to point to bugs.busybox.netEric Andersen2005-01-311-36/+20
|
* Add me as sort maintainer.Rob Landley2005-01-241-0/+1
|
* Sort rewrite to be SUSv3 compliant. New config option, updated help, andRob Landley2005-01-245-70/+351
| | | | a couple of infrastructure bits.
* Much bigger to-do list.Rob Landley2005-01-241-2/+98
|
* fix spellingEric Andersen2005-01-141-1/+1
|
* minor doc cleanupEric Andersen2005-01-131-1/+2
|
* Mention the new bug tracking systemEric Andersen2005-01-132-0/+20
|
* cp: make -P a synonym for -dMike Frysinger2005-01-072-2/+8
|
* Dear andersen:Eric Andersen2005-01-041-1/+2
| | | | | | | | | | | | | Is the change on libbb/loop.c which you commited in 2005/1/3 effective really? The __GLIBC__ macro and __UCLIBC__ macro are defined in feature.h in glibc source, so the change may not be effective. If you want to check this with __GLIBC__, feature.h header is needed. Some architectures(e.g. PPC series) need to include linux/posix_types.h in stead of asm/posix_types.h, so the patch which is attached with this mail include <linux/posix_types.h>.
* perhaps a better fixEric Andersen2005-01-031-0/+2
|
* alpha/parisc supportMike Frysinger2004-12-261-2/+23
|
* fix typoEric Andersen2004-12-201-1/+1
|
* Minor in-passing crapectomy.Rob Landley2004-12-171-26/+6
|
* Workaround for uClibc-specific header problem described here:Rob Landley2004-12-091-1/+1
| | | | | | http://www.busybox.net/lists/busybox/2004-December/013276.html Rob
* - CONFIG_FEATURE_READLINK_FOLLOW readlink -f patch from Colin Watson ↵Ned Ludd2004-12-083-4/+39
| | | | <cjwatson@debian.org> on busybox mailing list 08/11/04
* merge from udhcp moduleMike Frysinger2004-12-066-4/+30
|
* Hiroshi found another bug. Currently sed's $ triggers at end of every file,Rob Landley2004-11-251-28/+46
| | | | | | | | | | | | | | | | | | | | | | | | and with multiple files SuSv3 says it should only trigger at the end of the LAST file. The trivial fix I tried first broke if the last file is empty. Fixing this properly required restructuring things to create a file list (actually a FILE * list), and then processing it all in one go. (There's probably a smaller way to do this, merging with append_list perhaps. But let's get the behavior correct first.) Note that editing files in place (-i) needs the _old_ behavior, with $ triggering at the end of each file. Here's a test of all the things this patch fixed. gnu and busybox seds produce the same results with this patch, and different without it. echo -n -e "1one\n1two\n1three" > ../test1 echo -n > ../test2 echo -e "3one\n3two\n3three" > ../test3 sed -n "$ p" ../test1 ../test2 ../test3 sed -n "$ p" ../test1 ../test2 sed -i -n "$ p" ../test1 ../test2 ../test3
* Don't document compiler warnings. _FIX_ compiler warnings.Rob Landley2004-11-161-12/+13
|
* Correct the install-hardlinks target the same way as was already donePeter Kjellerstedt2004-11-021-1/+1
| | | | for the install target.
* Alright, I guess I should be in this too...Rob Landley2004-10-301-0/+5
|
* Hiroshi Ito found some bugs. The 'c' command (cut and paste) was hardwiredRob Landley2004-10-301-12/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | to not put a newline at the end (which was backwards, it should have been hardwired _to_ put a newline at the end, whether or not the input line ended with a newline). Test case for that: echo | sed -e '$ctest' And then this would segfault: echo | sed -e 'g' Because pattern_space got freed but the dead pointer was only overwritten in an if statement that didn't trigger if the hold space was empty. Oops. While debugging it, I found out that the hold space is persistent between multiple input files, so I promoted it to a global and added it to the memory cleanup. The relevant test case (to compare with That Other Sed) is: echo -n woo > woo sed -e h -e g woo echo "fish" | sed -e '/woo/h' -e "izap" -e 's/woo/thingy/' -e '/fish/g' woo - And somebody gratuitously stuck in a c99 int8_t type for something that's just a flag, so I grouped the darn ints.
* 1.00 is stableEric Andersen2004-10-271-8/+3
|
* mention scratchbox and openembeddedEric Andersen2004-10-181-1/+3
|
* egor duda writes:Eric Andersen2004-10-131-1/+1
| | | | | | | | | | | | | egor duda wrote: >Ok, here's an updated patch. >'make check' should work now, and one make creates Makefile in build >directory, so one can run 'make' in build directory after that. ahem. It looks like i'm slightly late with it but... Here's a little addition to make 'make O=/some/where PREFIX=/some/where/else install' work. Sorry for delay :( egor
* prepare for release1_00Eric Andersen2004-10-138-462/+1256
|
* return failure when nslookup failsEric Andersen2004-10-131-2/+5
|
* Simon Poole writes:Eric Andersen2004-10-133-3/+6
| | | | | | | | | | | | | Erik, Attached is a patch for the udhcpc sample scripts, to correct the order in which routers are applied if the DHCP server provides more than one (as per section 3.5 of RFC2132). Apologies for not being on the mailing list and thanks for your continued efforts. Simon.
* Make certain clients of bb_make_directory default to honoringEric Andersen2004-10-133-3/+10
| | | | the user's umask
* Patch from David Daney:Eric Andersen2004-10-111-0/+9
| | | | | | | | It seems that date -s MMDDHHMMYYYY.ss will ignore the .ss part. This patch tries to fix the problem. David Daney.
* oopsEric Andersen2004-10-081-1/+1
|
* unmerged fixEric Andersen2004-10-081-1/+1
|
* Bump versionEric Andersen2004-10-081-1/+1
|
* Fix the supported architectures sectionEric Andersen2004-10-081-7/+8
|
* Add an initial FAQEric Andersen2004-10-082-0/+303
|
* Fix CONFIG_ASH_MATH_SUPPORT_64 so it actually worksEric Andersen2004-10-081-4/+4
|
* Patch from Claus Klein to increase, and make more apparentEric Andersen2004-10-081-2/+4
| | | | the hard coded limit on the number of mounts