summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update webpage and changelog for release1_00_pre2Eric Andersen2003-07-303-18816/+603
|
* Lars Ekman writes:Eric Andersen2003-07-301-0/+1
| | | | | | | | | | | | | | | | | | | | | When using "losetup" the device is always setup as Read-Only. (I have only tested with the -o flag, but looking at the code the problem seems general) The problem is the "opt" variable in "losetup.c" that is reused in the "set_loop()" call. Clear it before the call and everything is OK; opt = 0; /* <-------- added line */ if (delete) return del_loop (argv[optind]) ? EXIT_SUCCESS : EXIT_FAILURE; else return set_loop (argv[optind], argv[optind + 1], offset, &opt) ? EXIT_FAILURE : EXIT_SUCCESS; } Best Regards, Lars Ekman
* last_patch100 from vidz updating fdisk to 2.12preEric Andersen2003-07-301-317/+330
|
* Do not require that the signal number be specifiedEric Andersen2003-07-301-2/+4
|
* Eric Spakman writes:Eric Andersen2003-07-301-1/+1
| | | | | | | | | | | | | | | The recent changes in ifupdown where all calls to 'ip link set' and 'ip addr set' are swapped give some problems with v4tunnels. For plain ipv4 and ipv6 interfaces it works correct, other methods not tried. The patch below change the behaviour back for v4tunnels only. Without the patch the following errors are shown: RTNETLINK answers: Network is down RTNETLINK answers: No route to host and the tunnel is not fully brought up With this patch all works as expected.
* Vladimir N. Oleynik writes:Eric Andersen2003-07-301-2/+5
| | | | | | | | | | | | | | | | This moment have algoritmicaly problem, not overflow: strcat(wrapped, wrapped) - may be looped. Hand patch: - else if (strstr(strcat(wrapped, wrapped), newmono)) + else { + safe_strncpy(wrapped + lenwrap, wrapped, lenwrap + 1); + if (strstr(wrapped, newmono)) +} --w vodz
* Christian Meyer provided this patch to fix more bugs with the tftp clientEric Andersen2003-07-301-3/+2
|
* Ronny L Nilsson writes:Eric Andersen2003-07-301-5/+2
| | | | | | | | The login process should always timeout if user don't login sucessfully within reasonable time. Otherwise we're sensetive to a DOS attack by simply doing a bunch of simultaneous telnet connections (deploys all availible TTY's). This patch make login.c terminate the connection after "TIMEOUT" seconds.
* Ronny L Nilsson writes:Eric Andersen2003-07-301-1/+5
| | | | | | If BusyBox was compiled with -DCONFIG_FEATURE_CLEAN_UP dmesg command segfaults if invoked with the "-n" option. (Due to a free() of an uninitialized pointer).
* Set libbb dead last in the link orderEric Andersen2003-07-291-1/+1
|
* Match up interfacesEric Andersen2003-07-291-1/+1
|
* Fixup typo noticed by Nick FedchikEric Andersen2003-07-291-1/+1
|
* Bruno Randolf writes:Eric Andersen2003-07-294-9/+12
| | | | | | | | | | | | | | | | | | | | | | | this patch fixes run_parts when it's called by ifupdown. 1) argv has to be a NULL terminated char* array, not just a string. 2) run_parts now explicitly sets the environment. this environment is populated from the /etc/network/interfaces config file and is needed by the scripts in /etc/network/if-pre-up.d/. when run-parts is called from the command line the environment is taken from the current process. Vladimir Oleynik then wrote: You can simplify this if use: + bb_xasprintf(&buf[0], "/etc/network/if-%s.d", opt); + buf[1] = NULL; + + run_parts(&buf, 2, environ); + free(buf[0]); --w vodz
* Vladimir N. Oleynik writes:Eric Andersen2003-07-292-33/+97
| | | | | | | | Last patch have synced form Manuel Nova III xxreadtoken() function, corrected (C) form dash debian/copyright, removed my small mistake with IFS_BROKEN (thanks by Herbert), and synced cmdedit.c from current CVS (removed libc5 support, your email correction, my (C) year corertion).
* Yang Xiaopeng writes:Eric Andersen2003-07-291-0/+5
| | | | | | | | | | | | | | | | | | | | | | | >I'm sure that no user process use old root now, but when run "umount >/old_root", it says: > umount: /old_root: Device or resource busy > >I have tried to remount /proc within the new root *after* chroot, but >get the same result. > > I found the problem, I said that no user process use old root when run my scripts, but I'm wrong, actually there is a '3' fd open the file "/old_root/dev/console". By adding debug message in init/init.c, I found the problem: when init restart(in exec_signal()), before open the new terminal device, there is still a file opened(I don't know which file it is), so the terminal device(stdin) get fd '1', and the first dup(0)(stdout) return '2', the second(stderr) return '3'. I attach a simple patch to solve this problem.
* bump version to 1.0.0-pre2Eric Andersen2003-07-281-1/+1
|
* A small update to the new docs. Plenty more is needed...Eric Andersen2003-07-281-17/+24
|
* Patch from vodz to update httpd usageEric Andersen2003-07-281-4/+31
|
* This is synced from dash-0.4.17 and full ready for insert to new busyboxEric Andersen2003-07-282-6805/+7203
| | | | | | | | | | | version: ftp://ftp.simtreas.ru/pub/my/bb/new News: - code is smalest! - support ${var...} expr - used new very strongly steal controlling terminal
* Avoid shadowing built-in function `log'Eric Andersen2003-07-281-33/+33
|
* Fixup bugs in last patchEric Andersen2003-07-283-4/+4
|
* Update docs a bitEric Andersen2003-07-281-8/+9
|
* last_patch98 from vodz:Eric Andersen2003-07-281-12/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Denis, ># ./busybox env - echo zzz >zzz ># ./busybox echo -n zzz >zzz ># ./busybox env - echo -n zzz >env: invalid option -- n > > obviously, env tried to understand -n as env's option > instead of blindly passing it to echo... > >BusyBox v1.00-pre1 (2003.07.16-07:53+0000) multi-call binary > >Usage: env [-iu] [-] [name=value]... [command] Ah, you found very old problem. Last patch also have: - multiple "-u unsetenv" support - GNU long option support - save errno after exec failed before bb_perror_msg() --w vodz
* last_patch95 from vodz:Eric Andersen2003-07-2811-246/+316
| | | | | | | | | | | | | | | | | Hi. Last patch have new libbb function vfork_rexec() for can use daemon() to uClinux system. This patched daemons: syslog, klogd, inetd, crond. This not tested! I havn`t this systems. Also. Previous patch for feature request MD5 crypt password for httpd don`t sended to this mailist on 07/15/03 (mailist have Pytom module problem?). The previous patch included, and have testing. --w vodz
* Add a "search google" buttonEric Andersen2003-07-281-8/+13
|
* James Petterson writes:Eric Andersen2003-07-281-2/+2
| | | | | | | | | | | | | | | | | | I've found a possible bug in libbb/interface.c, in function if_readlist_proc(). This function calls get_name(), and passes as an argument 'name', a buffer of 16 bytes (IFNAMSIZ). The function get_name(), however, may use more than 16 bytes, when it is searching for aliases. Even if you don't have an alias interface, you can run into trouble if the interface has received more than 99999999 bytes, in which case the space between the interface name and the rx stats disappears, as in the /proc/net/dev example below: wan0.200:264573315 462080 ... In this case get_name() correctly identifies the interface name as "wan0.200", but to do that it uses 18 bytes of the 'name' buffer, which could lead to an unpredictable error. A simple solution would be to increase the size of the buffer:
* There should be only one instance of CONFIG_FEATURE_AUTOWIDTHEric Andersen2003-07-262-17/+7
|
* Allow people to use the full blown iproute2 programs with busybox ifupdown.Eric Andersen2003-07-261-4/+21
|
* Move start_stop_daemon to debianutils.Eric Andersen2003-07-266-288/+40
| | | | Cleanup run_parts a bit and add long opts
* cleanup and add long optionsEric Andersen2003-07-262-118/+82
|
* The logger utility does not really depend on CONFIG_SYSLOGD,Eric Andersen2003-07-261-5/+4
| | | | | since it can also be used with other syslog daemons -Erik
* Patch from Christian Meyer:Eric Andersen2003-07-261-0/+1
| | | | | The client gives up way too soon because timeout is set to 0 ... There's a solution for that problem.
* Some additional description based on a patch from Terje KvernesEric Andersen2003-07-261-4/+6
|
* Patch from Nick Fedchik to fixup paths in busybox/libpwdgrpEric Andersen2003-07-267-7/+7
| | | | which were not properly using the bb_path_*_file strings.
* Rework kill / killall so it behaves itself, even when subjectedEric Andersen2003-07-261-61/+61
| | | | | to abuse. -Erik
* Patch from Thomas Gleixner to reap any zombie processes that areEric Andersen2003-07-261-0/+8
| | | | reparented to init...
* Don't depend on CONFIG_LFS. It is really a suggestion, not a requirement,Eric Andersen2003-07-261-1/+0
| | | | since fdisk will work just fine on smaller disks w/o it.
* Set the tm_isdst flag to -1 before calling mktime(). Otherwise, the currentManuel Novoa III2003-07-231-0/+1
| | | | timezone setting is used for the new date.
* eliminate DOSTATIC, DODEBUG, etc and name them sensiblyEric Andersen2003-07-2211-54/+65
|
* Several simplifications and indenting changes, perEric Andersen2003-07-221-26/+25
| | | | last_patch97 from vodz
* As vodz noticed, I screwed up rebootEric Andersen2003-07-221-2/+2
|
* the word "only" is repeated for CONFIG_FEATURE_SHADOWPASSWDSEric Andersen2003-07-221-1/+1
|
* There is no need to expose CONFIG_FEATURE_TRACEROUTE_SO_DEBUGEric Andersen2003-07-221-7/+0
|
* Document CONFIG_FEATURE_INSMOD_LOADINKMEMEric Andersen2003-07-221-1/+4
|
* Document CONFIG_ASH_CMDCMDEric Andersen2003-07-221-1/+3
|
* Write some more docsEric Andersen2003-07-221-9/+13
|
* Remove the update utility, that is only relevant to older 2.0.x kernelsEric Andersen2003-07-225-123/+3
| | | | that are no longer supported.
* Patch from Terje Kvernes adding quite a lot of missing documentationEric Andersen2003-07-226-48/+92
|
* Patch from Andrew Flegg:Eric Andersen2003-07-221-2/+19
| | | | | | | | | | | | | | | | | | | | | Here's a pretty crude patch to reload /etc/inittab when init receives a SIGHUP. The mailing list archives weren't entirely clear on whether or not it should already happen, but didn't appear to be. The patch: * Adds a new function, reload_signal() which just calls parse_inittab() and run_actions(RESPAWN) * Before entering the while (1) loop set up SIGHUP to call reload_signal() * Modify new_init_action to skip the action if the same command already exists on the same terminal This last bit means that changing already running entries is a bit hairy as you can end up with, for example, two shells running on the same virtual console. However, for solely adding/removing entries this patch seems to work quite well.
* Support reboot, halt, and poweroff independent of busybox init.Eric Andersen2003-07-226-45/+136
| | | | | Simplify and fixup some logic. -Erik