aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Cut-n-paste strikes againandersen2005-02-092-7/+7
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9822 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Remove mention of CVS and instead point to Subversionandersen2005-02-0912-152/+112
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9821 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Update the bug submission stuff to point to bugs.busybox.netandersen2005-01-311-36/+20
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9787 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add me as sort maintainer.landley2005-01-241-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9768 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Sort rewrite to be SUSv3 compliant. New config option, updated help, andlandley2005-01-245-70/+351
| | | | | | | a couple of infrastructure bits. git-svn-id: svn://busybox.net/trunk/busybox@9767 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Much bigger to-do list.landley2005-01-241-2/+98
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9766 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix spellingandersen2005-01-141-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9704 69ca8d6d-28ef-0310-b511-8ec308f3f277
* minor doc cleanupandersen2005-01-131-1/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9700 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Mention the new bug tracking systemandersen2005-01-132-0/+20
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9697 69ca8d6d-28ef-0310-b511-8ec308f3f277
* cp: make -P a synonym for -dvapier2005-01-072-2/+8
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9650 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Dear andersen: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>. git-svn-id: svn://busybox.net/trunk/busybox@9641 69ca8d6d-28ef-0310-b511-8ec308f3f277
* perhaps a better fixandersen2005-01-031-0/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9633 69ca8d6d-28ef-0310-b511-8ec308f3f277
* alpha/parisc supportvapier2004-12-261-2/+23
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9620 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix typoandersen2004-12-201-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9573 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Minor in-passing crapectomy.landley2004-12-171-26/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9569 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Workaround for uClibc-specific header problem described here:landley2004-12-091-1/+1
| | | | | | | | | http://www.busybox.net/lists/busybox/2004-December/013276.html Rob git-svn-id: svn://busybox.net/trunk/busybox@9545 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - CONFIG_FEATURE_READLINK_FOLLOW readlink -f patch from Colin Watson ↵solar2004-12-083-4/+39
| | | | | | <cjwatson@debian.org> on busybox mailing list 08/11/04 git-svn-id: svn://busybox.net/trunk/busybox@9542 69ca8d6d-28ef-0310-b511-8ec308f3f277
* merge from udhcp modulevapier2004-12-066-4/+30
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9539 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Hiroshi found another bug. Currently sed's $ triggers at end of every file,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 git-svn-id: svn://busybox.net/trunk/busybox@9530 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Don't document compiler warnings. _FIX_ compiler warnings.landley2004-11-161-12/+13
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9517 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Correct the install-hardlinks target the same way as was already donepkj2004-11-021-1/+1
| | | | | | | for the install target. git-svn-id: svn://busybox.net/trunk/busybox@9497 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Alright, I guess I should be in this too...landley2004-10-301-0/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9487 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Hiroshi Ito found some bugs. The 'c' command (cut and paste) was hardwiredlandley2004-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. git-svn-id: svn://busybox.net/trunk/busybox@9486 69ca8d6d-28ef-0310-b511-8ec308f3f277
* 1.00 is stableandersen2004-10-271-8/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9472 69ca8d6d-28ef-0310-b511-8ec308f3f277
* mention scratchbox and openembeddedandersen2004-10-181-1/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9447 69ca8d6d-28ef-0310-b511-8ec308f3f277
* egor duda writes: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 git-svn-id: svn://busybox.net/trunk/busybox@9418 69ca8d6d-28ef-0310-b511-8ec308f3f277
* prepare for releaseandersen2004-10-138-462/+1256
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9416 69ca8d6d-28ef-0310-b511-8ec308f3f277
* return failure when nslookup failsandersen2004-10-131-2/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9415 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Simon Poole writes: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. git-svn-id: svn://busybox.net/trunk/busybox@9414 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make certain clients of bb_make_directory default to honoringandersen2004-10-133-3/+10
| | | | | | | the user's umask git-svn-id: svn://busybox.net/trunk/busybox@9413 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from David Daney: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. git-svn-id: svn://busybox.net/trunk/busybox@9406 69ca8d6d-28ef-0310-b511-8ec308f3f277
* oopsandersen2004-10-081-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9337 69ca8d6d-28ef-0310-b511-8ec308f3f277
* unmerged fixandersen2004-10-081-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9336 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Bump versionandersen2004-10-081-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9335 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix the supported architectures sectionandersen2004-10-081-7/+8
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9334 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add an initial FAQandersen2004-10-082-0/+303
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9332 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix CONFIG_ASH_MATH_SUPPORT_64 so it actually worksandersen2004-10-081-4/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9331 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Claus Klein to increase, and make more apparentandersen2004-10-081-2/+4
| | | | | | | the hard coded limit on the number of mounts git-svn-id: svn://busybox.net/trunk/busybox@9330 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Wade Berrier writes:andersen2004-10-089-5/+260
| | | | | | | | | | | | | | | | | | | | | | Hello, Here's a patch for a first attempt at static leases for udhcpd. Included in the tarball are 2 files (static_leases.c, static_leases.h) and a patch against the latest cvs. In the config file you can configure static leases with the following format: static_lease 00:60:08:11:CE:4E 192.168.0.54 static_lease 00:60:08:11:CE:3E 192.168.0.44 Comments/suggestions/improvements are welcome. Wade git-svn-id: svn://busybox.net/trunk/busybox@9329 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Denis Vlasenko to fix a problem whereandersen2004-10-081-4/+8
| | | | | | | wget http://1.2.3.4/abc/ loses last '/' git-svn-id: svn://busybox.net/trunk/busybox@9328 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Hiroshi Ito writes:andersen2004-10-081-5/+31
| | | | | | | | | | | | | | | | | | | | | | | Hello, all. Busybox init does not handle removed inittab entry correctly. # I'm sorry about my poor english, but you can find # what I would like to say from patch, isn't it? even if you apply this path, when yoy try to change a command line option in inittab, you have to do following steps. 1. remove old line from initrd 2. send HUP signal to init 3. kill old proces which is invoked from init. 4. append new line to inittab 5. send HUP signal to init, again patch is against current CVS + last patch witch I send it last. git-svn-id: svn://busybox.net/trunk/busybox@9327 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Hiroshi Ito writes:andersen2004-10-081-4/+5
| | | | | | | | | | "kill -HUP 1" reloads inittab, and when I append one line to inittab and send HUP signal two times, It will starts 2 process. patch against current CVS is attached. git-svn-id: svn://busybox.net/trunk/busybox@9326 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Hiroshi Ito writes:andersen2004-10-081-0/+1
| | | | | | | | | | | ash "unset OLDPWD; cd -" causes segmentation fault. ( OLDPWD is not set when sh is invoked from getty. ) patch against current CVS is attached. git-svn-id: svn://busybox.net/trunk/busybox@9325 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Hiroshi Ito writes:andersen2004-10-081-4/+4
| | | | | | | | | | | | | | | | | | | | | | | Hello I'm using busy box on mipsel machine. "grep -f file" will cause segmentation fault. Vladimir N. Oleynik writes: Hiroshi, Thank for bug report, but your patch is full broken. Worked patch attached. (really changes is zero initialize, and indent correcting). --w vodz git-svn-id: svn://busybox.net/trunk/busybox@9324 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Tito writes:andersen2004-10-082-14/+14
| | | | | | | | | | | | | | | | Hi to all, This patch contains just some fixes for some misleading comments in my_getpwuid.c and my_getug.c. The code is untouched so this patch will not cause troubles. Please apply. Thanks in advance and Ciao, Tito git-svn-id: svn://busybox.net/trunk/busybox@9323 69ca8d6d-28ef-0310-b511-8ec308f3f277
* last_patch139.gz from Vladimir N. Oleynik:andersen2004-10-081-31/+83
| | | | | | | | | | | | | | | | | >I also don't mean to disagree about leaving 30x status codes until after >1.0. In fact, although redirecting http://host/dir to http://host/dir/ >with a 301 is common practice (e.g. Apache, IIS), AFAIK it isn't >actually required (or mentioned) by the HTTP specs. Ok. Attached patch have 302 and 408 implemented features. --w vodz git-svn-id: svn://busybox.net/trunk/busybox@9322 69ca8d6d-28ef-0310-b511-8ec308f3f277
* As noticed by egor duda, current_menu is declared as 'extern struct menuandersen2004-10-081-1/+1
| | | | | | | | *current_menu;' in scripts/config/lkc.h line 63, and this conflicts with static definition in mconf.c. git-svn-id: svn://busybox.net/trunk/busybox@9321 69ca8d6d-28ef-0310-b511-8ec308f3f277
* egor duda writes:andersen2004-10-0866-241/+459
| | | | | | | | | | | | | | | | | | | | | | | | | | | Hi! I've created a patch to busybox' build system to allow building it in separate tree in a manner similar to kbuild from kernel version 2.6. That is, one runs command like 'make O=/build/some/where/for/specific/target/and/options' and everything is built in this exact directory, provided that it exists. I understand that applyingc such invasive changes during 'release candidates' stage of development is at best unwise. So, i'm currently asking for comments about this patch, starting from whether such thing is needed at all to whether it coded properly. 'make check' should work now, and one make creates Makefile in build directory, so one can run 'make' in build directory after that. One possible caveat is that if we build in some directory other than source one, the source directory should be 'distclean'ed first. egor git-svn-id: svn://busybox.net/trunk/busybox@9320 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Michael Tokarev:andersen2004-10-081-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Scenario: touch x -- creates plain file name `x' mkdir x -- exits successefully libbb/make_directory.c, bb_make_directory(), contains the following code: if (mkdir(path, 0777) < 0) { /* If we failed for any other reason than the directory * already exists, output a diagnostic and return -1.*/ if (errno != EEXIST) { fail_msg = "create"; umask(mask); break; } /* Since the directory exists, don't attempt to change * permissions if it was the full target. Note that * this is not an error conditon. */ if (!c) { umask(mask); return 0; } } The assumption that EEXIST error is due to that the *directory* already exists is wrong: any file type with that name will cause this error to be returned. Proper way IMHO will be is to stat() the path and check whenever this is really a directory. Below (attached) is a patch to fix this issue. git-svn-id: svn://busybox.net/trunk/busybox@9319 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make it more apparent that archive creation is not supportedandersen2004-10-071-6/+10
| | | | git-svn-id: svn://busybox.net/trunk/busybox@9309 69ca8d6d-28ef-0310-b511-8ec308f3f277