Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-07-24 | Patch by Paul Whittaker, make busybox dc compatable with GNU dc. | Glenn L McGrath | |
the following example was broken, echo "1 1 +" | dc | |||
2004-07-24 | Update Tito's contributions | Glenn L McGrath | |
2004-07-23 | Patch from Felipe Kellermann, fix endless loop when first > last and | Glenn L McGrath | |
increment > 0. | |||
2004-07-23 | Patch from Felipe Kellermann, fixup usage for pidof, poweroff, remove | Glenn L McGrath | |
some trailing '\n' | |||
2004-07-23 | Patch from Felipe Kellermann, fixup usage for halt command | Glenn L McGrath | |
2004-07-23 | iUpdate reboot usage, patch by Felipe Kellermann | Glenn L McGrath | |
2004-07-23 | Patch from Dmitry Zakharov to fix a bug discovered via the freeswap | Glenn L McGrath | |
script. | |||
2004-07-23 | Fix for a bug identied by Harald Kuthe, when using many interfaces (29 | Glenn L McGrath | |
in this case) the order was incorrect and there were duplicate entries. | |||
2004-07-23 | Felipe Kellermann writes, | Glenn L McGrath | |
"As noticed today by Steven Scholz, the od's `-v' was broken. I've fixed that and now both the flags `-v' and `-a' are OK" Fixes a segfault in echo "uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu\02bar\4"| ./busybox od -av | |||
2004-07-23 | Patch from Felipe Kellermann, "There is a call to printf using `*pr-cchar' | Glenn L McGrath | |
referencing a string and using a single char, when *p <= 0x1f." | |||
2004-07-23 | Patch from Felipe Kellermann to fix some typo's | Glenn L McGrath | |
2004-07-23 | Patch from Adam Slattery to add bzip2 support to rpm2cpio | Glenn L McGrath | |
2004-07-23 | Patch from Manousaridis Angelos to bring dhclient down more elegently | Glenn L McGrath | |
2004-07-22 | Reverse my previous change, "::" is a GNU getopt extension that allows | Glenn L McGrath | |
an optional argument. Looks like a glibc bug to me | |||
2004-07-22 | Patch from Mike Snitzer <snitzer@gmail.com>: | Robert Griebl | |
Support for /etc/modprobe.conf (for 2.6 kernels) should likely be added to bb's modprobe, see attached patch. modprobe.conf is just a (even simpler) variant of modules.conf | |||
2004-07-21 | Patch from Mike Snitzer to fix return codes. | Glenn L McGrath | |
"I have a need to _really_ know if the interface was properly configured via ifup so I made busybox's ifupdown pass the return codes through rather than dropping them on the floor." "All the functions in ifupdown.c return 1 on success and 0 on failure (which happens to the opposite of standard practices but whatever). So it is important for all these functions to not blindly return 1." "The problem with blindly returning ret, even if it is != 1, is the callers expect a 0 or 1 and accumulate the return codes. So a function that makes 3 calls to execute will have a value of 3 accumulated. That value of 1 (success) was almost always returned even if 1 of the commands in the command sequence failed. The attached patch fixes the lack of checking to verify thar result == expected_reult." | |||
2004-07-21 | Fix bug in accepting buffer size argument | Glenn L McGrath | |
2004-07-21 | Patch from Tito, ass usage for strings -a options | Glenn L McGrath | |
2004-07-21 | Patch from Mike Snitzer, bring down dhclient using its correct pid, fix | Glenn L McGrath | |
a grammatical error. | |||
2004-07-21 | Patch from Jean Wolter, fixes compiler warning when ASH_ALIAS is | Glenn L McGrath | |
disabled. | |||
2004-07-21 | Fixup -T (--files-from) option, works for non-directories now | Glenn L McGrath | |
2004-07-20 | Avoid a naming conflict with include/bits/fcntl.h | Eric Andersen | |
2004-07-20 | Patch from Mike Snitzer <snitzer@gmail.com>: | Robert Griebl | |
Please see the attached patch for the following crash with busybox' 2.6 rmmod support | |||
2004-07-20 | new_process_module_arguments returns 0 on error and 1 if everything went ok | Robert Griebl | |
somehow the ! got lost.. symptoms: modules could only be loaded _without_ parameters | |||
2004-07-20 | oops | Eric Andersen | |
2004-07-20 | Yet more doc updates | Eric Andersen | |
2004-07-20 | more doc updates | Eric Andersen | |
2004-07-20 | cut-n-paste strikes again | Eric Andersen | |
2004-07-20 | Update for release | Eric Andersen | |
2004-07-20 | Update changelog | Eric Andersen | |
2004-07-20 | Deal with the fact that 2.6.x kernels replace any '-'s in the | Eric Andersen | |
module name with a '_'. -Erik | |||
2004-07-20 | Bump version up to release candidate 1 | Eric Andersen | |
2004-07-20 | Include some documentation posted to the list by vodz | Eric Andersen | |
2004-07-20 | Assign 'forced' before the goto to avoid a warning | Eric Andersen | |
2004-07-20 | Prevent "`bootp_down' was declared implicitly `extern' and later `static'" ↵ | Eric Andersen | |
warning | |||
2004-07-20 | Add missing type for CONFIG_FEATURE_QUERY_MODULE_INTERFACE | Eric Andersen | |
2004-07-20 | Update the default config to not ask stuff | Eric Andersen | |
2004-07-20 | The 'tests' target is long gone. | Eric Andersen | |
2004-07-15 | Replace the old and somewhat buggy pwd_grp stuff with the shiny | Eric Andersen | |
new stuff mjn3 wrote for uClibc | |||
2004-07-15 | Peter Kjellerstedt at axis.com writes: | Eric Andersen | |
Hello, the attached patch should bring extra/config in line with the Linux 2.6.7 sources. The following are the commit messages for the respective files from the Linux bk-repository: checklist.c: * fix menuconfig choice item help display confdata.c: * config: choice fix * kconfig: don't rename target dir when saving config expr.c, expr.h: * config: disable debug prints mconf.c: * fix menuconfig choice item help display menu.c: * Kconfig: use select statements symbol.c: * config: choice fix * Avoid bogus warning about recursive dependencies * c99 struct initialiser conversions textbox.c: * janitor: don't init statics to 0 util.c: * fix lxdialog behaviour //Peter | |||
2004-07-14 | Fixup a few documentation bugs | Eric Andersen | |
2004-07-13 | Fixup some cases of "QM_MODULES: not implemented" for both | Eric Andersen | |
lsmod and rmmod when using 2.6.x module support -Erik | |||
2004-06-29 | Paul Fox writes: | Eric Andersen | |
hi -- working with ifupdown, i've found a couple of buglets -- the wrong string is passed to an error message. paul | |||
2004-06-28 | Avoid a number of places where large drives could wrap a uint, and | Eric Andersen | |
instead use off_t which will be automagically promoted to 64bit if compiled with support for large drives. -Erik | |||
2004-06-25 | Do not mess with the console logging level unless | Eric Andersen | |
asked to do so. -Erik | |||
2004-06-25 | Revert my previous commit | Glenn L McGrath | |
2004-06-25 | Fix compile error under 2.6, check for newer versions first or all the | Glenn L McGrath | |
checks wont be considered. | |||
2004-06-25 | Fix compile error when math support disabled. | Glenn L McGrath | |
2004-06-22 | fix a stupid compile error when CONFIG_FEATURE_INSMOD_VERSION_CHECKING | Eric Andersen | |
is disabled | |||
2004-06-22 | Stupidity-1, Erik-0 | Eric Andersen | |