aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* import base_device.c for fsckvapier2005-05-091-0/+147
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10278 69ca8d6d-28ef-0310-b511-8ec308f3f277
* remove unused filesvapier2005-05-095-271/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10277 69ca8d6d-28ef-0310-b511-8ec308f3f277
* trim out useless defines and use some busybox funcsvapier2005-05-091-24/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10276 69ca8d6d-28ef-0310-b511-8ec308f3f277
* override nls P_() macrovapier2005-05-091-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10275 69ca8d6d-28ef-0310-b511-8ec308f3f277
* abort if user passes -r or if they dont pass anythingvapier2005-05-091-3/+8
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10274 69ca8d6d-28ef-0310-b511-8ec308f3f277
* syntax/whitespace touchupvapier2005-05-091-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10273 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Shaun Jackman:landley2005-05-091-22/+15
| | | | | | | | | | | | | | | | | | | | | > 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. git-svn-id: svn://busybox.net/trunk/busybox@10272 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Manuel points out that if printf needs a flush to act like dprintf, the resultlandley2005-05-071-2/+1
| | | | | | | | is bigger. Revert last patch. git-svn-id: svn://busybox.net/trunk/busybox@10268 69ca8d6d-28ef-0310-b511-8ec308f3f277
* This one's from me. Fix ash "standalone shell".landley2005-05-071-21/+7
| | | | | | | | | | | | 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. git-svn-id: svn://busybox.net/trunk/busybox@10264 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Shaun Jackman pointed out that dprintf(STDOUT_FILENO,...) is just a printf.landley2005-05-071-1/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10263 69ca8d6d-28ef-0310-b511-8ec308f3f277
* patch by Tito which uses a lot more busybox functions to reduce size nicelyvapier2005-05-072-49/+37
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10262 69ca8d6d-28ef-0310-b511-8ec308f3f277
* update e2p target to match condensed filesvapier2005-05-071-2/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10261 69ca8d6d-28ef-0310-b511-8ec308f3f277
* patch by Tito which unifies common get/set functions into 1 get/set function ↵vapier2005-05-074-144/+39
| | | | | | and cuts down on the size used significantly :) git-svn-id: svn://busybox.net/trunk/busybox@10260 69ca8d6d-28ef-0310-b511-8ec308f3f277
* add/remove defines to handle more e2fsprogsvapier2005-05-071-1/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10259 69ca8d6d-28ef-0310-b511-8ec308f3f277
* use shared busybox error messages to save a few bytesvapier2005-05-071-5/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10258 69ca8d6d-28ef-0310-b511-8ec308f3f277
* make the exec (-e) an optional feature of netcatvapier2005-05-063-18/+28
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10254 69ca8d6d-28ef-0310-b511-8ec308f3f277
* In bug 247, haveaniceday writes:vapier2005-05-062-2/+22
| | | | | | | | The option "-w secs" adds a timeout for writing. git-svn-id: svn://busybox.net/trunk/busybox@10253 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Tweak the "pretty lsmod for 2.6" patch to be seperately selectable.landley2005-05-042-5/+14
| | | | | | | Patch from Takeharu Kato. git-svn-id: svn://busybox.net/trunk/busybox@10248 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Revert the uptime() removal. Let the list sort it out...landley2005-05-044-5/+14
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10247 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Shaun Jackman:landley2005-05-044-14/+5
| | | | | | | | | Replace uptime with time(NULL). time is more portable than uptime and eliminates the need to define uptime, reducing code size slightly. git-svn-id: svn://busybox.net/trunk/busybox@10245 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Takeharu Kato's patch added 2.6 support to lsmod; this changes menuconfiglandley2005-05-041-7/+7
| | | | | | | | dependencies so 2.6 support depends on insmod or lsmod... git-svn-id: svn://busybox.net/trunk/busybox@10244 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Takeharu Kato said:landley2005-05-031-1/+42
| | | | | | | | | | 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. git-svn-id: svn://busybox.net/trunk/busybox@10243 69ca8d6d-28ef-0310-b511-8ec308f3f277
* From: Shaun Jackman <sjackman@gmail.com>landley2005-05-032-3/+5
| | | | | | | | | | | | | 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. git-svn-id: svn://busybox.net/trunk/busybox@10242 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Shaun Jackman said:landley2005-05-031-9/+21
| | | | | | | | | This patch adds a CONFIG_FEATURE_CLEAN_UP stanza, and also adds an ifdef around the SIOCGIFMAP call. git-svn-id: svn://busybox.net/trunk/busybox@10241 69ca8d6d-28ef-0310-b511-8ec308f3f277
* A patch from Takeharu KATO to update/fix SE-Linux support.landley2005-05-0312-130/+148
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10238 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add David Brownell as zcip maintainer.landley2005-05-031-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10234 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Revert Tito's patch to zcip. My bad, David Brownell had objected and I missedlandley2005-05-033-114/+190
| | | | | | | | it... git-svn-id: svn://busybox.net/trunk/busybox@10233 69ca8d6d-28ef-0310-b511-8ec308f3f277
* On Tuesday 19 April 2005 21:10, Tito wrote and today added:landley2005-05-013-187/+111
| | | | | | | | | | | | | | | | > 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.... git-svn-id: svn://busybox.net/trunk/busybox@10215 69ca8d6d-28ef-0310-b511-8ec308f3f277
* On Wednesday 13 April 2005 09:12 pm, Shaun Jackman wrote:landley2005-04-301-26/+13
| | | | | | | | | > This patch fixes a memory leak in hash_file by using the BUFFER macros > instead of xmalloc. Please apply. git-svn-id: svn://busybox.net/trunk/busybox@10207 69ca8d6d-28ef-0310-b511-8ec308f3f277
* David Brownell submitted a new applet, zcip, based on RFC 3927. This islandley2005-04-306-0/+613
| | | | | | | | | version 0418b. It compiled. git-svn-id: svn://busybox.net/trunk/busybox@10206 69ca8d6d-28ef-0310-b511-8ec308f3f277
* New help text for Matthew S. Wood's "ln" update adding -b and -d.landley2005-04-291-1/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10203 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Matthew S. Wood:landley2005-04-291-8/+24
| | | | | | | | | | | | | | | | | | | | | | | | | > 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. */ git-svn-id: svn://busybox.net/trunk/busybox@10202 69ca8d6d-28ef-0310-b511-8ec308f3f277
* On Wednesday 27 April 2005 05:23 am, Patrick Huesmann wrote:landley2005-04-291-0/+7
| | | | | | | | | | | | > 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. git-svn-id: svn://busybox.net/trunk/busybox@10201 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Do not attempt to free() the application's environment, which is wasandersen2005-04-271-10/+8
| | | | | | | | not dynamically allocated. Instead, use a private variable to store the environment array, which is used when we exec applications. git-svn-id: svn://busybox.net/trunk/busybox@10188 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Correct errors preventing busybox tar from working properly,andersen2005-04-271-6/+11
| | | | | | | fixing bug http://bugs.uclibc.org/view.php?id=231 git-svn-id: svn://busybox.net/trunk/busybox@10187 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix stupid build mistake i made earlier as pointed out by psmvapier2005-04-261-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10182 69ca8d6d-28ef-0310-b511-8ec308f3f277
* use a generic error messagevapier2005-04-252-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10180 69ca8d6d-28ef-0310-b511-8ec308f3f277
* use asprintf in place of malloc/sprintf as suggested by solarvapier2005-04-252-13/+13
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10179 69ca8d6d-28ef-0310-b511-8ec308f3f277
* moved to e2fsprogs toovapier2005-04-251-22/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10178 69ca8d6d-28ef-0310-b511-8ec308f3f277
* bbify to shrink sizevapier2005-04-252-297/+177
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10177 69ca8d6d-28ef-0310-b511-8ec308f3f277
* use busybox funcs to make smallervapier2005-04-241-103/+81
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10175 69ca8d6d-28ef-0310-b511-8ec308f3f277
* new version of ed taken from sashvapier2005-04-241-3108/+1176
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10174 69ca8d6d-28ef-0310-b511-8ec308f3f277
* ignore *.avapier2005-04-240-0/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10173 69ca8d6d-28ef-0310-b511-8ec308f3f277
* svn didnt auto add these ...vapier2005-04-243-0/+96
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10172 69ca8d6d-28ef-0310-b511-8ec308f3f277
* add new subdir for e2fsprogsvapier2005-04-2427-2/+2218
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10171 69ca8d6d-28ef-0310-b511-8ec308f3f277
* rework human_fstype to cut down sizevapier2005-04-241-78/+47
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10170 69ca8d6d-28ef-0310-b511-8ec308f3f277
* rework options to get rid of extra variablesvapier2005-04-241-15/+11
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10169 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix whitespace usage, fix un-escaped quotes in a bunch of examples, and ↵vapier2005-04-231-191/+189
| | | | | | standardize a bunch of trivial/full usage statements (no trailing newline in either, and when listing options, dont append a . each time) git-svn-id: svn://busybox.net/trunk/busybox@10166 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix inconsistent whitespacevapier2005-04-231-146/+146
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10165 69ca8d6d-28ef-0310-b511-8ec308f3f277
* remove extra whitespacevapier2005-04-231-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10164 69ca8d6d-28ef-0310-b511-8ec308f3f277