aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-05-09syntax/whitespace touchupMike Frysinger
2005-05-09Patch from Shaun Jackman:Rob Landley
> This patch modfies expr to use portable POSIX regex rather than BSD > regex. ... > This updated patch implements an anchored regex by checking that the > match starts at offset 0. More to the point, this patch uses the same regex that sed.c is already using (opportunity to suck in less library code), and even building a dynamically linked busybox with just expr the result is a slightly smaller binary (by 94 bytes, I dunno what nm --size-sort has to say about it because I didn't build with debug info, since that changes the binary size a lot by disabling optimization...) Your mileage may vary. Handle with caution. Do not taunt happy fun ball.
2005-05-07Manuel points out that if printf needs a flush to act like dprintf, the resultRob Landley
is bigger. Revert last patch.
2005-05-07This one's from me. Fix ash "standalone shell".Rob Landley
If we exec /proc/self/exe and only fall back to /bin/busybox if /proc isn't there, then we have a reasonable chance of having the standalone shell work even if busybox isn't installed in /bin on the system in question. Still won't work in a chroot environment, but it's an improvement.
2005-05-07Shaun Jackman pointed out that dprintf(STDOUT_FILENO,...) is just a printf.Rob Landley
2005-05-07patch by Tito which uses a lot more busybox functions to reduce size nicelyMike Frysinger
2005-05-07update e2p target to match condensed filesMike Frysinger
2005-05-07patch by Tito which unifies common get/set functions into 1 get/set function ↵Mike Frysinger
and cuts down on the size used significantly :)
2005-05-07add/remove defines to handle more e2fsprogsMike Frysinger
2005-05-07use shared busybox error messages to save a few bytesMike Frysinger
2005-05-06make the exec (-e) an optional feature of netcatMike Frysinger
2005-05-06In bug 247, haveaniceday writes:Mike Frysinger
The option "-w secs" adds a timeout for writing.
2005-05-04Tweak the "pretty lsmod for 2.6" patch to be seperately selectable.Rob Landley
Patch from Takeharu Kato.
2005-05-04Revert the uptime() removal. Let the list sort it out...Rob Landley
2005-05-04Patch from Shaun Jackman:Rob Landley
Replace uptime with time(NULL). time is more portable than uptime and eliminates the need to define uptime, reducing code size slightly.
2005-05-04Takeharu Kato's patch added 2.6 support to lsmod; this changes menuconfigRob Landley
dependencies so 2.6 support depends on insmod or lsmod...
2005-05-03Takeharu Kato said:Rob Landley
I found that lsmod in busybox does not support linux-2.6. I fix this issue(it is caused by changes of /proc/modules format). If you use lsmod in busybox with kernel-2.6, please use this patch.
2005-05-03From: Shaun Jackman <sjackman@gmail.com>Rob Landley
To: busybox@mail.codepoet.org Wrap sockaddr_in6 in a ifdef CONFIG_FEATURE_IPV6. Include sys/types.h instead of asm/types.h. Include netinet/if_ether.h instead of linux/if_ether.h The ioctl request argument is an int, not an unsigned short.
2005-05-03Shaun Jackman said:Rob Landley
This patch adds a CONFIG_FEATURE_CLEAN_UP stanza, and also adds an ifdef around the SIOCGIFMAP call.
2005-05-03A patch from Takeharu KATO to update/fix SE-Linux support.Rob Landley
2005-05-03Add David Brownell as zcip maintainer.Rob Landley
2005-05-03Revert Tito's patch to zcip. My bad, David Brownell had objected and I missedRob Landley
it...
2005-05-01On Tuesday 19 April 2005 21:10, Tito wrote and today added:Rob Landley
> Hi, > this is a first attempt of size optimization for zcip taking into account all > the hints given so far on the list. > I've applied just the more obvious busyboxifications so maybe it could be > optimized more. BTW: I've ripped out a lot of debug code and changed c++ // comments to /* */ as both were rather confusing for a newbie like me. ;-) Sorry to the author for that. I know that this makes mantaining the code easier, but I'm simple minded....
2005-04-30On Wednesday 13 April 2005 09:12 pm, Shaun Jackman wrote:Rob Landley
> This patch fixes a memory leak in hash_file by using the BUFFER macros > instead of xmalloc. Please apply.
2005-04-30David Brownell submitted a new applet, zcip, based on RFC 3927. This isRob Landley
version 0418b. It compiled.
2005-04-29New help text for Matthew S. Wood's "ln" update adding -b and -d.Rob Landley
2005-04-29Patch from Matthew S. Wood:Rob Landley
> The following patch adds support for the -S and -b flags to `ln'. These > flags [especially -b] are used extensively in Debian pre and post > installation scripts. Comments from Vladimir Oleynik influenced the final patch, and I also ripped out the in-file changelog since it belongs here. At the time, it said: /* Apr 15, 2004 Matthew S. Wood (mwood@realmsys.com) * * Implement '-b' (backup) flag. * Implement '-S' (backup suffix) flag. * * * Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) * * Fixed bug involving -n option. Essentially, -n was always in effect. */
2005-04-29On Wednesday 27 April 2005 05:23 am, Patrick Huesmann wrote:Rob Landley
> This is really confusing for users who don't know all details of the > *nix file permission system. > Today, I changed my busybox system to use CONFIG_FEATURE_SUID_CONFIG. > After fighting with the file permissions for hours, I decided that > updating the documentation might be a good idea.
2005-04-27Do not attempt to free() the application's environment, which is wasEric Andersen
not dynamically allocated. Instead, use a private variable to store the environment array, which is used when we exec applications.
2005-04-27Correct errors preventing busybox tar from working properly,Eric Andersen
fixing bug http://bugs.uclibc.org/view.php?id=231
2005-04-26fix stupid build mistake i made earlier as pointed out by psmMike Frysinger
2005-04-25use a generic error messageMike Frysinger
2005-04-25use asprintf in place of malloc/sprintf as suggested by solarMike Frysinger
2005-04-25moved to e2fsprogs tooMike Frysinger
2005-04-25bbify to shrink sizeMike Frysinger
2005-04-24use busybox funcs to make smallerMike Frysinger
2005-04-24new version of ed taken from sashMike Frysinger
2005-04-24svn didnt auto add these ...Mike Frysinger
2005-04-24add new subdir for e2fsprogsMike Frysinger
2005-04-24rework human_fstype to cut down sizeMike Frysinger
2005-04-24rework options to get rid of extra variablesMike Frysinger
2005-04-23fix whitespace usage, fix un-escaped quotes in a bunch of examples, and ↵Mike Frysinger
standardize a bunch of trivial/full usage statements (no trailing newline in either, and when listing options, dont append a . each time)
2005-04-23fix inconsistent whitespaceMike Frysinger
2005-04-23remove extra whitespaceMike Frysinger
2005-04-23stat implementation based upon coreutilsMike Frysinger
2005-04-23patch for a very alpha busybox edMike Frysinger
2005-04-23whitespace fixMike Frysinger
2005-04-23remove lsattr/chattr to prepare for a top level e2fsprogs dir with more ↵Mike Frysinger
stuff in it
2005-04-23update example to use bb_ prefixed names and remove old note about config.h ↵Mike Frysinger
(since the header is generated automatically now)
2005-04-23add comments about ignoring some warnings which are OKMike Frysinger