aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Patch from Lars Kellogg-Stedman:andersen2003-07-141-1/+1
| | | | | | | | Busybox vi is installed in /bin/vi, but crontab was looking for /usr/bin/vi. This patch makes crontab look for /bin/vi instead. git-svn-id: svn://busybox.net/trunk/busybox@7054 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Require that LFS is enabled to get fdiskandersen2003-07-141-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7053 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Remove all the llseek junk and just use regular old lseek. When DOLFS isandersen2003-07-141-110/+6
| | | | | | | | | enabled, regular lseek is transparently promoted to lseek64 anyways, rendering the llseek stuff pointless. -Erik git-svn-id: svn://busybox.net/trunk/busybox@7052 69ca8d6d-28ef-0310-b511-8ec308f3f277
* On second thought, this is a better way to fix thingsandersen2003-07-141-46/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7050 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Don't use Linux kernel headersandersen2003-07-141-3/+46
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@7049 69ca8d6d-28ef-0310-b511-8ec308f3f277
* This declaration no longer needs to hide when using dmallocandersen2003-07-071-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7046 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Be certain to not abort prematurely when reading stuff from pipes.andersen2003-07-053-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7045 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fixup compile problem with dmallocandersen2003-07-051-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7044 69ca8d6d-28ef-0310-b511-8ec308f3f277
* As noted by Thomas Eckert:andersen2003-07-051-2/+9
| | | | | | | | | | | | | | | | | | | bb-tar "cjf" does not create a valid tbz2-archive -- if fact the result is a plain tar-file (no compression) -- but does not warn about the unrecognized parameter combination "cj" (bb does not have bzip2-compression yet, right?). to fix this I have added an error message stating this does not work. He also reported cosmetic: versose "-v" does not show any output when used with "create" which I have now fixed as well. -Erik git-svn-id: svn://busybox.net/trunk/busybox@7043 69ca8d6d-28ef-0310-b511-8ec308f3f277
* oopsandersen2003-07-051-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7042 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Daniel writes:andersen2003-07-051-1/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | I've found a problem with job control when the init process is restarted. If the system boots for the first time, I get job control on a serial terminal - no problems. However, when I restart init by issuing "init -q", then the shell no longer has job control. I traced this a problem in console_init in the file init.c. What was happening after the restart is that the first compare if (ioctl(0, TIOCGSERIAL, &sr) == 0) { ... } else if (ioctl(0, VT_GETSTATE, &vt) == 0) { ... } else { ... // assume /dev/console } returned error and subsequently the code assumes /dev/console as the console, which does not support job control. Checking the errno after the first call showed that the system was complaining about the file descriptor. This is probably because the previous init process had closed all its file descriptors which the new init process had inherited. git-svn-id: svn://busybox.net/trunk/busybox@7041 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Lars Kellogg-Stedman:andersen2003-07-051-0/+9
| | | | | | | | Glibc 2.1.3 (used by the Hardhat Linux SDK distributed by Cyclades) does not define IF_NAMESIZE in net/if.h. git-svn-id: svn://busybox.net/trunk/busybox@7040 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Lars Kellogg-Stedman:andersen2003-07-051-7/+14
| | | | | | | | | This patch fixes endian problems with get_netmask(). I don't know if this is the cleanest solution, but it makes 'ipcalc -n' work on both an i386 system and a ppc system. git-svn-id: svn://busybox.net/trunk/busybox@7039 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Kent Robotti adding a bunch of needed docs!andersen2003-07-057-21/+28
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@7038 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add the fdformat utility, based on a patch from Kent Robotti,andersen2003-07-055-0/+175
| | | | | | | | but I then completely reworked the fdformat utility to comply with the current busybox way of doing things. git-svn-id: svn://busybox.net/trunk/busybox@7037 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Glenn McGrath (bug1) isaway from my email till the 17th, but caught me on IRC.andersen2003-07-051-1/+1
| | | | | | | | He took a look into the recent reports of tar problems, and found an obvious typo in last_patch91 from vodz which converted tar to use bb_getopt_ulflags. git-svn-id: svn://busybox.net/trunk/busybox@7036 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Vladimir N. Oleynik (vodz):andersen2003-07-031-35/+14
| | | | | | | | Last patch have changed for "ipcalc" applet with usage new get_ulflags() function. git-svn-id: svn://busybox.net/trunk/busybox@7034 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Lars Kellogg-Stedman:andersen2003-07-031-18/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | Erik, et al. The attached patch makes the following changes to networking/ifupdown.c: (1) It swaps all calls to 'ip link set' and 'ip addr set'. This solves two problems: (a) Calling 'ip link set <dev> up' before assigning an address generates an error message, and (b) Under User Mode Linux, running in with ethernet interfaces in daemon mode, the MAC address for an interface is selected based on the IP address assigned to that interface. If the interface is brought up before being assigned an IP address, it gets a null MAC. (2) It further cleans up run_mapping(). This patch is against ifupdown.c revision 1.25. -- Lars git-svn-id: svn://busybox.net/trunk/busybox@7033 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix stupid unterminated parenthesisandersen2003-07-031-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7032 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Russell Coker:andersen2003-07-0313-30/+263
| | | | | | | | I've attached my latest SE Linux patch for busybox against the latest CVS version of busybox. git-svn-id: svn://busybox.net/trunk/busybox@7031 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Kent Robotti updating fdisk to version v2.11zandersen2003-07-031-38/+48
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7030 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Kent Robotti adding a bunch of menuconfig helpandersen2003-07-035-118/+172
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7029 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Using safe_read seems, well, safer...andersen2003-07-031-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7028 69ca8d6d-28ef-0310-b511-8ec308f3f277
* As implemented, sha1sum would sometimes give the wrong answer.andersen2003-07-031-109/+298
| | | | | | | | This fixes it and uses faster sha1 code from Dr. Gladman. -Erik git-svn-id: svn://busybox.net/trunk/busybox@7027 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Pavel Roskin to fixup toplevel help textandersen2003-06-301-3/+12
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7014 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Apply last_patch93 from vodz:andersen2003-06-277-73/+61
| | | | | | | | | | | | | | | | andersen@busybox.net wrote: >Message: 4 >Modified Files: > init.c >Log Message: >Remove code for unsupported kernel versions Hmm. Current init.c have check >= 2.2.0 kernel one time too. Ok. Last patch removed this point and move common init code to new file for /init dir git-svn-id: svn://busybox.net/trunk/busybox@7008 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Remove bdflush garbage, which is only relevant to unsupportedandersen2003-06-271-11/+0
| | | | | | | kernel versions git-svn-id: svn://busybox.net/trunk/busybox@6988 69ca8d6d-28ef-0310-b511-8ec308f3f277
* oops. make this actually work as intended....andersen2003-06-261-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@6985 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make sure we end up with a unix2dos link to busyboxandersen2003-06-261-0/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@6984 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Oops.andersen2003-06-261-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@6983 69ca8d6d-28ef-0310-b511-8ec308f3f277
* last_patch91 from vodz to convert tar to use bb_getopt_ulflagsandersen2003-06-261-60/+56
| | | | git-svn-id: svn://busybox.net/trunk/busybox@6982 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Geir Thomassen wrote, regarding networking/httpd.c line 1358andersen2003-06-264-76/+73
| | | | | | | | | | | | | | | | | Hello, I think the test for an unconfigured httpd is wrong in the CVS (busybox-unstable-20030620.tar.bz2) flg_deny_all is default 0 vodz then wrote: Oops. You are right. Also, this mistake haved from two place. Last patch rewroted to my new get_ularg() function for overcompensate size from this error found ;-) git-svn-id: svn://busybox.net/trunk/busybox@6981 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Per patch from Nick Fedchik, use SHADOW_FILE, not "/etc/shadow".andersen2003-06-261-2/+1
| | | | | | | Change fopen to bb_xfopen git-svn-id: svn://busybox.net/trunk/busybox@6980 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Oops. As Andrew Dennison just noticed, I left a strayandersen2003-06-251-1/+1
| | | | | | | space in the Makefile, thereby totally breaking it. git-svn-id: svn://busybox.net/trunk/busybox@6977 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Regenerate the busybox.links file when the .config changesandersen2003-06-251-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@6976 69ca8d6d-28ef-0310-b511-8ec308f3f277
* New applet: patch, applies a unified diffbug12003-06-225-0/+307
| | | | git-svn-id: svn://busybox.net/trunk/busybox@6964 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Save a few bytes by using bb_getopt_ulflags and a few other minorbug12003-06-221-49/+31
| | | | | | | improvments git-svn-id: svn://busybox.net/trunk/busybox@6963 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Based on a tinylogin patch from Philip Blundell, add severalandersen2003-06-212-33/+81
| | | | | | | | additional options to adduser. -Erik git-svn-id: svn://busybox.net/trunk/busybox@6962 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix a silly bug I introduced yesterdayandersen2003-06-211-1/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@6960 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fixup whitespace handing, fixing some annoying behavior andandersen2003-06-201-10/+21
| | | | | | | a couple of segfaults git-svn-id: svn://busybox.net/trunk/busybox@6949 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fall back to looking in /lib/modules/modules.dep ifandersen2003-06-201-2/+7
| | | | | | | /lib/modules/<kernel version>/modules.dep is missing git-svn-id: svn://busybox.net/trunk/busybox@6948 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Andrew Dennison:andersen2003-06-201-13/+25
| | | | | | | | | | | | | | | | | | | | | I've had some issues with modprobe which I reported a few months ago. This is still an issue so I decided to sort it out. The attached diff includes the changes against the unstable cvs tree that work for me. Changes are: mod_process() will report success if the module at the head of the list loads successfully. It will also report success if any module unloads successfully. The net result being that modprobe will succeed in the cases outlined below. I've also added error reporting to modprobe -r. Previously it would silently fail (but report success) if the module could not be unloaded. Andrew git-svn-id: svn://busybox.net/trunk/busybox@6947 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Somewhere in the 2.4.x kernel series, /proc/mounts was changed to display aandersen2003-06-203-3/+9
| | | | | | | | | | | "rootfs" entry as well as the traditional "/dev/root" entry. This caused applets such as mount and df to display two root filesystem entries.... This teaches the relevant utilities to ignore the "rootfs" entry. -Erik git-svn-id: svn://busybox.net/trunk/busybox@6946 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Don't shadow a paramaterandersen2003-06-201-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@6945 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix a couple vars that could be used uninitializedandersen2003-06-201-1/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@6944 69ca8d6d-28ef-0310-b511-8ec308f3f277
* use an explicit cast on some types that change size whenandersen2003-06-201-2/+2
| | | | | | | large file support is enabled. git-svn-id: svn://busybox.net/trunk/busybox@6943 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make gcc not whine about "deprecated use of label at end of compound statement"andersen2003-06-201-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@6942 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add prototype update missing from last_patch89. Fix screwyandersen2003-06-202-4/+5
| | | | | | | formatting in cut. git-svn-id: svn://busybox.net/trunk/busybox@6941 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Lars Kellogg-Stedman:andersen2003-06-204-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | I'm building BusyBox using a development kit for MontaVista Hardhat Linux (PPC) -- which, at least in this instance, is based around kernel 2.2.14. I've had to massage a few files in networking/libiproute/ to make it compile. Specifically: (1) Added a #include <sys/uio.h> for the iovec structure in libnetlink.c, (2) Put ifdefs in ll_types.c and ll_proto.c around various constants (ETH_P_xxx and ARPHRD_xxx) that weren't defined, (3) Make do_changename() in iplink.c require a kernel >= 2.4.0 -- the ifr structure in my environment doesn't have the ifr_name attribute. I've assumed this is a kernel dependency -- let me know if I ought to be checking something else. In the absence of the correct kernel, do_changename() always returns 0. Attached is a patch against the current CVS that will make these changes. -- Lars git-svn-id: svn://busybox.net/trunk/busybox@6940 69ca8d6d-28ef-0310-b511-8ec308f3f277
* last_patch89 from vodz:andersen2003-06-2019-522/+581
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Manuel, I rewrite bb_getopt_ulflags() function for more universal usage. My version support now: - options with arguments (optional arg as GNU extension also) - complementaly and/or incomplementaly and/or incongruously and/or list options - long_opt (all applets may have long option, add supporting is trivial) This realisation full compatibile from your version. Code size grow 480 bytes, but only coreutils/* over compensate this size after using new function. Last patch reduced over 800 bytes and not full applied to all. "mkdir" and "mv" applets have long_opt now for demonstrate trivial addition support long_opt with usage new bb_getopt_ulflags(). Complementaly and/or incomplementaly and/or incongruously and/or list options logic is not trivial, but new "cut" and "grep" applets using this logic for examples with full demostrating. New "grep" applet reduced over 300 bytes. Mark, Also. I removed bug from "grep" applet. $ echo a b | busybox grep -e a b a b a b But right is printing one only. --w vodz git-svn-id: svn://busybox.net/trunk/busybox@6939 69ca8d6d-28ef-0310-b511-8ec308f3f277