summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update changelog and docs1_00_pre1Eric Andersen2003-07-154-184/+19596
|
* Document CONFIG_USE_BB_PWD_GRPEric Andersen2003-07-151-1/+17
|
* Update the default set of applets that are listedEric Andersen2003-07-151-15/+23
|
* Yet more preparation to make a release...Eric Andersen2003-07-153-1294/+14
|
* Fix a silly typoEric Andersen2003-07-141-1/+1
|
* Looks like I forgot one little tiny detail...Eric Andersen2003-07-142-3/+5
|
* Update a bunch of docs. Run a script to update my email addr.Eric Andersen2003-07-14169-380/+298
|
* decouple delgroup and deluserEric Andersen2003-07-144-120/+183
|
* Patch from Thomas Cameron:Eric Andersen2003-07-1414-226/+290
| | | | | | | | | | | Hello all, This patch adds more "Help" text to the config system. Almost all applets now have a help entry. Also, I cleaned up the spacing of the existing text so that things are consistent. This patch is against this morning's CVS. Thomas Cameron CEI Systems, Inc.
* Use standard typesEric Andersen2003-07-141-27/+27
|
* Michael Sternberg writes:Eric Andersen2003-07-141-0/+4
| | | | | | | Latest BusyBox from CVS (Jul 7 2003). File coreutils/ls.c "if" at line 970 should be enclosed in #ifdef CONFIG_FEATURE_LS_SORTFILES "if" at line 976 should be enclosed in #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
* Patch from Lars Kellogg-Stedman:Eric Andersen2003-07-142-14/+31
| | | | | The attached two patches add config documentation to init/Config.in and fileutils/Config.in.
* Patch from Lars Kellogg-Stedman:Eric 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.
* Require that LFS is enabled to get fdiskEric Andersen2003-07-141-0/+1
|
* Remove all the llseek junk and just use regular old lseek. When DOLFS isEric Andersen2003-07-141-110/+6
| | | | | | enabled, regular lseek is transparently promoted to lseek64 anyways, rendering the llseek stuff pointless. -Erik
* On second thought, this is a better way to fix thingsEric Andersen2003-07-141-46/+5
|
* Don't use Linux kernel headersEric Andersen2003-07-141-3/+46
| | | | -Erik
* This declaration no longer needs to hide when using dmallocEric Andersen2003-07-071-1/+1
|
* Be certain to not abort prematurely when reading stuff from pipes.Eric Andersen2003-07-053-3/+3
|
* Fixup compile problem with dmallocEric Andersen2003-07-051-1/+1
|
* As noted by Thomas Eckert:Eric 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
* oopsEric Andersen2003-07-051-0/+3
|
* Daniel writes:Eric 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.
* Patch from Lars Kellogg-Stedman:Eric 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.
* Patch from Lars Kellogg-Stedman:Eric 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.
* Patch from Kent Robotti adding a bunch of needed docs!Eric Andersen2003-07-057-21/+28
| | | | -Erik
* Add the fdformat utility, based on a patch from Kent Robotti,Eric Andersen2003-07-055-0/+175
| | | | | but I then completely reworked the fdformat utility to comply with the current busybox way of doing things.
* Glenn McGrath (bug1) isaway from my email till the 17th, but caught me on IRC.Eric 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.
* Patch from Vladimir N. Oleynik (vodz):Eric Andersen2003-07-031-35/+14
| | | | | Last patch have changed for "ipcalc" applet with usage new get_ulflags() function.
* Patch from Lars Kellogg-Stedman:Eric 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
* Fix stupid unterminated parenthesisEric Andersen2003-07-031-1/+1
|
* Patch from Russell Coker:Eric Andersen2003-07-0313-30/+263
| | | | | I've attached my latest SE Linux patch for busybox against the latest CVS version of busybox.
* Patch from Kent Robotti updating fdisk to version v2.11zEric Andersen2003-07-031-38/+48
|
* Patch from Kent Robotti adding a bunch of menuconfig helpEric Andersen2003-07-035-118/+172
|
* Using safe_read seems, well, safer...Eric Andersen2003-07-031-1/+1
|
* As implemented, sha1sum would sometimes give the wrong answer.Eric Andersen2003-07-031-109/+298
| | | | | This fixes it and uses faster sha1 code from Dr. Gladman. -Erik
* Patch from Pavel Roskin to fixup toplevel help textEric Andersen2003-06-301-3/+12
|
* Apply last_patch93 from vodz:Eric 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
* Remove bdflush garbage, which is only relevant to unsupportedEric Andersen2003-06-271-11/+0
| | | | kernel versions
* oops. make this actually work as intended....Eric Andersen2003-06-261-1/+1
|
* Make sure we end up with a unix2dos link to busyboxEric Andersen2003-06-261-0/+5
|
* Oops.Eric Andersen2003-06-261-1/+1
|
* last_patch91 from vodz to convert tar to use bb_getopt_ulflagsEric Andersen2003-06-261-60/+56
|
* Geir Thomassen wrote, regarding networking/httpd.c line 1358Eric Andersen2003-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 ;-)
* Per patch from Nick Fedchik, use SHADOW_FILE, not "/etc/shadow".Eric Andersen2003-06-261-2/+1
| | | | Change fopen to bb_xfopen
* Oops. As Andrew Dennison just noticed, I left a strayEric Andersen2003-06-251-1/+1
| | | | space in the Makefile, thereby totally breaking it.
* Regenerate the busybox.links file when the .config changesEric Andersen2003-06-251-2/+2
|
* New applet: patch, applies a unified diffGlenn L McGrath2003-06-225-0/+307
|
* Save a few bytes by using bb_getopt_ulflags and a few other minorGlenn L McGrath2003-06-221-49/+31
| | | | improvments
* Based on a tinylogin patch from Philip Blundell, add severalEric Andersen2003-06-212-33/+81
| | | | | additional options to adduser. -Erik