Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-08-01 | fixup cut-n-paste problem | Eric Andersen | |
2004-07-30 | Simon Poole reports that awk segfaults when environment variables | Eric Andersen | |
with no value exist, i.e. $ export BOB='' % ./busybox awk Segmentation fault This patch teaches awk to not blow chunks on empty env variables. -Erik | |||
2004-07-30 | Fix incorrect arguments being passed to mknod | Eric Andersen | |
2004-07-30 | Umm. Not guilty by reason of insanity. | Eric Andersen | |
-Erik | |||
2004-07-30 | Fixup getty, login, etc so the utmp and wtmp are updated, allowing | Eric Andersen | |
the 'who' and 'last' applets among other things to work as expected. -Erik | |||
2004-07-30 | use SIGTERM to kill off udhcpd, not SIGKILL | Eric Andersen | |
2004-07-30 | Fix up brain damage with the way major and minor are used to | Eric Andersen | |
create a dev_t | |||
2004-07-30 | As noted by Eric Spakman, calling static_down() and then calling | Eric Andersen | |
bootp_down() seems redundant, esp since bootp_down was a subset of static_down, so just use that... | |||
2004-07-29 | Clean up hex escape support. | Manuel Novoa III | |
2004-07-28 | Thanks to Ken Roberts, fix the slackware url | Eric Andersen | |
2004-07-27 | Felipe Kellermann noticed a missing `break'. | Eric Andersen | |
2004-07-26 | document stuff I have done | Robert Griebl | |
2004-07-26 | add missing ; | Eric Andersen | |
2004-07-26 | bump version to -rc2 | Eric Andersen | |
2004-07-26 | bother. unrevert my fix. | Eric Andersen | |
2004-07-26 | Prepare for release | Eric Andersen | |
2004-07-26 | Allow hex escape sequences | Eric Andersen | |
2004-07-26 | Make certain that udhcp shuts down the interface | Eric Andersen | |
2004-07-26 | YAEGASHI Takeshi writes: | Eric Andersen | |
Hi, With the following /etc/fstab (any two or more lines of nfs), mount -a -t nfs causes a segmentation faults. server:/exports/aaa /mnt/aaa nfs defaults 0 0 server:/exprots/bbb /mnt/bbb nfs defaults 0 0 In util-linux/nfsmount.c, it overwrites malloc'ed pointer *mount_opts with a static pointer. With this patch it does proper memory realloc and data copy instead. | |||
2004-07-26 | oops | Eric Andersen | |
2004-07-26 | bump version to -rc2 | Eric Andersen | |
2004-07-26 | Make certain that udhcp shuts down the interface | Eric Andersen | |
2004-07-26 | Allow hex escape sequences | Eric Andersen | |
2004-07-26 | BusyBox has no business hard coding the number of major and minor bits for a | Eric Andersen | |
dev_t. This is especially important now that the user space concept of a dev_t and the kernel concept of a dev_t are divergant. The only bit of user space allowed to know the number of major and minor bits is include/sys/sysmacros.h (i.e. part of libc). When used with a current C library and a 2.6.x kernel, this fix should allow BusyBox to support wide device major/minor numbers. -Erik | |||
2004-07-24 | Paul Whittaker writes: | Eric Andersen | |
With job control enabled, ash fails to tcsetpgrp back to initialpgrp upon exit. exitshell() should call setjobctl(0) to do this. Context: I am using a lightweight menu system (replimenu[.sf.net]) on my console, which invokes "/bin/sh -i -c /bin/login", where /bin/sh and /bin/login are busybox applets. /bin/sh is ash, with CONFIG_ASH_JOB_CONTROL=y as the sole suboption. The shell of the user concerned (nobody) is also /bin/sh (ash). When the user /bin/sh exits (and thereby login and its parent sh), replimenu receives EIO when it tries to read from the terminal. | |||
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 | |