aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Thomas Koeller writes:andersen2004-04-262-2/+2
| | | | | | | | | | | | | | | | | Hi, the following output is from BusyBox 1.0.0-pre10: ~ # ip link help ip: Command "help" is unknown, try "ip link help". tk This patch fixes it by removing the advertisements for the "ip blah help" stuff that is not implemented. git-svn-id: svn://busybox.net/trunk/busybox@8784 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Sync my tasks with AUTHORS filebug12004-04-251-2/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8783 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Update my email address, document some of my tasks in the AUTHORS filebug12004-04-2519-25/+27
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8782 69ca8d6d-28ef-0310-b511-8ec308f3f277
* This sed patch can only be described as "duh". Stat the source file, chmodandersen2004-04-211-1/+1
| | | | | | | | | | | | | | the _destination_ file. (Ah hah! That works _much_ better...) I implemented the behavior, I just forgot to test this corner of it. My fault, sorry... No, gnu sed -i doesn't preverve ownership information. I checked. Permissions, yes, ownership info, no. Rob git-svn-id: svn://busybox.net/trunk/busybox@8776 69ca8d6d-28ef-0310-b511-8ec308f3f277
* So I'm building a linux from scratch system, using a working script to do thisandersen2004-04-211-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that the _only_ change to is that gnu sed has been replaced with busybox sed. And ncurses' install phase hangs. I trace it down, and it's trying to run gawk. (Insert obligatory doubletake, but this is FSF code we're talking about, so...) It turns out gawk shells out to sed, ala "sed -f /tmp/blah file.h". The /tmp/blah file is basically empty (it contains one character, a newline). So basically, gawk is using sed as "cat". With gnu sed, it works like cat, anyway. With busybox sed, it tests if its command list is empty after parsing the command line, and if the list is empty it takes the first file argument as a sed command string, and if that leaves the file list empty it tries to read the data to operate on from stdin. (Hence the hang, since nothing's coming in on stdin...) It _should_ be testing whether there were any instances of -f or -e, not whether it actually got any commands. Using sed as cat may be kind of stupid, but it's valid and gawk relies on this behavior. Here's a patch to fix it, turning a couple of ints into chars in hopes of saving a bit of the space this adds. Comments? Rob git-svn-id: svn://busybox.net/trunk/busybox@8775 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Dont try and preserve hard links to directories.bug12004-04-191-1/+3
| | | | | | | | | | The linux kernel doesnt allow hard links to directories, SUS says its implementation specific. cramfs gives empty directories and 0 length files the same node it makies it difficult to distinguish from hard links. git-svn-id: svn://busybox.net/trunk/busybox@8767 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add two fundamental tests for copying directoriesbug12004-04-182-0/+9
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8766 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Thats odd. I guess this was cut-n-paste error, but vodzandersen2004-04-161-1/+1
| | | | | | | email address was wrong! git-svn-id: svn://busybox.net/trunk/busybox@8765 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Update Acronis and Belkinandersen2004-04-152-6/+7
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8762 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Steven Scholz writes:andersen2004-04-141-0/+2
| | | | | | | | | | | | | | | Hi there, the "-h" option of httpd is not described in the usage text. Please find the attached patch. Thanks. Steven git-svn-id: svn://busybox.net/trunk/busybox@8761 69ca8d6d-28ef-0310-b511-8ec308f3f277
* remove a warningandersen2004-04-141-2/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8760 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Larry Doolittle writes:andersen2004-04-1470-170/+170
| | | | | | | | | | | | | | | | | | | | | | | | | This is a bulk spelling fix patch against busybox-1.00-pre10. If anyone gets a corrupted copy (and cares), let me know and I will make alternate arrangements. Erik - please apply. Authors - please check that I didn't corrupt any meaning. Package importers - see if any of these changes should be passed to the upstream authors. I glossed over lots of sloppy capitalizations, missing apostrophes, mixed American/British spellings, and German-style compound words. What is "pretect redefined for test" in cmdedit.c? Good luck on the 1.00 release! - Larry git-svn-id: svn://busybox.net/trunk/busybox@8759 69ca8d6d-28ef-0310-b511-8ec308f3f277
* bump version, prepare for -pre10andersen2004-04-134-1658/+293
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8754 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix incorrect ipcalc usage textandersen2004-04-131-16/+10
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8753 69ca8d6d-28ef-0310-b511-8ec308f3f277
* slightly clean the whacked out formattingandersen2004-04-131-46/+47
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8752 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix several problems with start-stop-daemon, add -m supportandersen2004-04-132-27/+46
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8751 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Put the glibc nss junk back at the endandersen2004-04-132-23/+25
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8750 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Sigh. The patch from David Anders (prpplague) broke standardandersen2004-04-121-1/+3
| | | | | | | securetty files since the /dev was not stripped. git-svn-id: svn://busybox.net/trunk/busybox@8749 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Wolfgang Denk writes:andersen2004-04-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | He, there is a bug in HUSH's handling of "if" / "elif" commands: $ if true > then > echo 1 > elif > true > then > echo 2 > elif > true > then > echo 3 > else > echo 4 > fi 1 2 3 $ The same bug exists in all versions of HUSH from BB v0.60.x up to and including v1.00-pre9. The attached patch fixes this: $ if true > then > echo 1 > elif > true > then > echo 2 > elif > true > then > echo 3 > else > echo 4 > fi 1 $ Best regards, Wolfgang Denk git-svn-id: svn://busybox.net/trunk/busybox@8747 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Eric Spakman noticed that ifdown' will attempt to run 'ifconfig'andersen2004-04-121-1/+1
| | | | | | | | even if built with CONFIG_FEATURE_IFUPDOWN_IP when shutting down a dhcp connection. git-svn-id: svn://busybox.net/trunk/busybox@8743 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Silly meandersen2004-04-121-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8741 69ca8d6d-28ef-0310-b511-8ec308f3f277
* As reported by Quy Tonthat, init has problems with inittab's thatandersen2004-04-121-8/+1
| | | | | | | | contain only actions sysinit/wait/once. It does not clean up zombies in that case. git-svn-id: svn://busybox.net/trunk/busybox@8740 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Peter Milne writes:andersen2004-04-121-3/+22
| | | | | | | | | | | | | | | | | | | Just upgraded from 0.6 to 1.00-pre8 Dot command handling handled args correctly (same as bash) in 0.60, but failed in 1.00: I fixed this by reverting the dotcmd function back to previous 0.60 instantiation, please consider using the older version. Thanks Peter git-svn-id: svn://busybox.net/trunk/busybox@8739 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Jamie Guinan writes:andersen2004-04-123-6/+6
| | | | | | | | | | | | | | It looks like latest uClibc defines ARCH_HAS_MMU, but a few busybox files test UCLIBC_HAS_MMU, resulting in vfork() getting called instead of fork(), etc. Patch below. Only tested for lash. Cheers, -Jamie git-svn-id: svn://busybox.net/trunk/busybox@8738 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add an extra linkandersen2004-04-121-5/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8737 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Rob Landley to fix sed documentation.andersen2004-04-121-4/+8
| | | | | | | | The -i option was not documented, and in genereal the formatting was a bit ugly. git-svn-id: svn://busybox.net/trunk/busybox@8736 69ca8d6d-28ef-0310-b511-8ec308f3f277
* "Mac OS X" is how it is written on the Apple websiteandersen2004-04-121-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8735 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix spelling. "sort of" is two words.andersen2004-04-122-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8734 69ca8d6d-28ef-0310-b511-8ec308f3f277
* make mount ignore -n when CONFIG_FEATURE_MTAB_SUPPORT is disabledandersen2004-04-121-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8733 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix compile error if CONFIG_FEATURE_IP_ADDR isnt enabledbug12004-04-121-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8732 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix up conditional compile of files needed by ip appletsbug12004-04-121-0/+36
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8731 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add a comment explaining why we have to check for an extra \nbug12004-04-091-1/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8727 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix ftp resumebug12004-04-081-5/+9
| | | | | | | Terminate returned message at <CRLF> so strtoul returns without error git-svn-id: svn://busybox.net/trunk/busybox@8726 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Vladimir N. Oleynik writes:andersen2004-04-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Hi. Last changes (rev 1.12) to recursive_actions() by Christian Grigis have problem. Test for demonstrate: $ mkdir aaa bbb ccc $ su # chown root bbb # chmod 700 bbb # exit $ busybox chmod 777 -R . ./bbb: Permision denied But "./ccc" mode not changed. Previous variant works fine, errors skiped and continued recursion. --w vodz git-svn-id: svn://busybox.net/trunk/busybox@8725 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add the Tritton Technologies NAS120andersen2004-04-071-0/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8724 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Document insmod -oandersen2004-04-071-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8723 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Update for releaseandersen2004-04-071-0/+26
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8721 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Update changelog for releaseandersen2004-04-071-393/+1511
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8720 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix urlandersen2004-04-071-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8719 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Minor updateandersen2004-04-071-4/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8718 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Mention Acronis PartitionExpertandersen2004-04-071-0/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8717 69ca8d6d-28ef-0310-b511-8ec308f3f277
* More doc updatesandersen2004-04-073-20/+33
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8716 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add an example inetd.conf fileandersen2004-04-071-0/+73
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8715 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Remove the CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN option. It was sortofandersen2004-04-078-43/+8
| | | | | | | stupid and didn't work properly anyways. git-svn-id: svn://busybox.net/trunk/busybox@8714 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Update the default configandersen2004-04-071-50/+81
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8713 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Bump version to -pre9andersen2004-04-061-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8712 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix buffalo urlandersen2004-04-061-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8711 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Yet more doc updatesandersen2004-04-063-93/+178
| | | | git-svn-id: svn://busybox.net/trunk/busybox@8710 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Yet more doc cleanups. Many thanks to Robert P. J. Day forandersen2004-04-061-41/+46
| | | | | | | kindly reviewing the existing docs and providing helpful feedback. git-svn-id: svn://busybox.net/trunk/busybox@8709 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Seem not many people are using 'ipaddr' since it hasandersen2004-04-061-1/+1
| | | | | | | never worked.... Most people use 'ip addr foo' I suppose. git-svn-id: svn://busybox.net/trunk/busybox@8708 69ca8d6d-28ef-0310-b511-8ec308f3f277