aboutsummaryrefslogtreecommitdiff
path: root/scripts/config/expr.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2004-06-09Typo fix from Niemann Hartmutandersen1-1/+1
git-svn-id: svn://busybox.net/trunk/busybox@8889 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-06-06Update reference for zip formatbug11-1/+4
git-svn-id: svn://busybox.net/trunk/busybox@8888 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-06-05Woops, the previous commit was an accident, its supplied in the patch,bug13-203/+32
dont commit yet as we are in feature freeze git-svn-id: svn://busybox.net/trunk/busybox@8886 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-06-05Device table support for makedevs, the previous behaviour can beenbug14-32/+497
selected at configure time. git-svn-id: svn://busybox.net/trunk/busybox@8885 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26Ahem. ("I'm just tweaking a documentation string, I don't need to compilelandley1-1/+1
test it before checking in..." New entry for famous last words list.) Add the missing backslash at the end of the new sed doc string line. (This one actually compiled with "show verbose applet usage messages"...) git-svn-id: svn://busybox.net/trunk/busybox@8883 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26Update sed help. (Add -r option to long help, add -i option to brief help,landley1-3/+4
and alphabetizie the option list.) git-svn-id: svn://busybox.net/trunk/busybox@8882 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26Kevin P. Fleming writes:andersen1-0/+2
Yes, I know busybox is in feature freeze. If this two-liner is too much that's fine, but it's handy. This patch allows busybox mount to support "-o move" just like it supports "-o bind", which is the equivalent of util-linux "mount --move". Usage is: mount -o move /mnt/point/1 /mnt/point/2 where /mnt/point/1 is an already mounted filesystem; it will be moved to /mnt/point/2. git-svn-id: svn://busybox.net/trunk/busybox@8881 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26Update U.S. Robotics and Actiontec entriesandersen2-5/+6
git-svn-id: svn://busybox.net/trunk/busybox@8880 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26If read were to return with an error, bad things would happen. Fix it.mjn31-2/+6
Also, make sure read errors are reflected in the applet exit code. git-svn-id: svn://busybox.net/trunk/busybox@8879 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26oopsandersen1-3/+3
git-svn-id: svn://busybox.net/trunk/busybox@8878 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26Per suggestion from Bastian Blank, be less evil when we force fdisk toandersen2-9/+11
transparently remap 32-bit interfaces to actually use 64 bit interfaces. -Erik git-svn-id: svn://busybox.net/trunk/busybox@8877 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26Use tab not spaceandersen1-20/+20
git-svn-id: svn://busybox.net/trunk/busybox@8876 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26Make the grep option values a bit less horribleandersen1-18/+18
git-svn-id: svn://busybox.net/trunk/busybox@8875 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26Rick Richardson writes:andersen1-8/+16
Here is a patch that adds egrep -L support (the opposite of egrep -l). I realize this is probably too late for 1.0. But I offer it for your future consideration. egrep -L is used in some networking startup scripts I inherited. -Rick git-svn-id: svn://busybox.net/trunk/busybox@8874 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26Patch from Yoshinori Sato:andersen1-3/+47
This patch is uClinux-2.4.x for H8/300 module support. please apply. -- Yoshinori Sato git-svn-id: svn://busybox.net/trunk/busybox@8873 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26As discussed, drop minit, which was not being supported in busybox.andersen7-1055/+0
People wishing to use minit can obtain it and obtain support from http://www.fefe.de/minit/ git-svn-id: svn://busybox.net/trunk/busybox@8872 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26Use STDIN_FILENO rather than '0'andersen1-1/+1
git-svn-id: svn://busybox.net/trunk/busybox@8871 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26Rob Landley writes:andersen1-4/+7
add sed -r support. I bumped into a couple of things that want to use extended regular expressions in sed, and it really isn't that hard to add. Can't say I've extensively tested it, but it's small and isn't going to break anything that doesn't use it, so... Rob git-svn-id: svn://busybox.net/trunk/busybox@8870 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26Rob Landley writes:andersen1-1/+1
Run this test, against both busybox and a non-busybox version of "tee". while true; do i=$[$i+1]; echo "hello $i"; sleep 1; done | ./busybox tee Now run the busybox one again with the following small patch applied: git-svn-id: svn://busybox.net/trunk/busybox@8869 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-26Patch from vodz to correct 'grep -e pattern1 -e pattern2' logicandersen1-5/+3
git-svn-id: svn://busybox.net/trunk/busybox@8868 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-25Do not prompt about FDISK large disk support when LFS is enabled.andersen1-13/+27
Resolve a dependancy problem with the various malloc debug libs and make them mutually exclusive. -Erik git-svn-id: svn://busybox.net/trunk/busybox@8867 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-19Do not select LFSandersen1-1/+0
git-svn-id: svn://busybox.net/trunk/busybox@8864 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-19Erik,andersen2-8/+18
>http://busybox.net/cgi-bin/cvsweb/busybox/util-linux/fdisk.c?r1=1.22&r2=1.23&diff_format=u Its hack for "force" ;-) If to return the previous version of a Config.in http://busybox.net/cgi-bin/cvsweb/busybox/util-linux/Config.in?r1=1.12&r2=1.13 and to apply last patch, then I shall calm down. ;-) (OOPS, last patch have autocorrected from my editor begins spaces to tabs and removed spaces from empty lines too). --w vodz git-svn-id: svn://busybox.net/trunk/busybox@8863 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-19use busybox sysinfo structruss2-1/+1
git-svn-id: svn://busybox.net/trunk/busybox@8860 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-19Make vodz happy and make fdisk always use large file support ifandersen1-0/+8
possible, even if LFS is not enabled for the rest of busybox. -Erik git-svn-id: svn://busybox.net/trunk/busybox@8859 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-19Fix a compile problemandersen1-2/+1
git-svn-id: svn://busybox.net/trunk/busybox@8858 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-19fix timewarp in client (server fix later)russ4-6/+16
git-svn-id: svn://busybox.net/trunk/busybox@8857 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-19remove uneccessary check (already done in pidfile.c)russ1-6/+4
git-svn-id: svn://busybox.net/trunk/busybox@8854 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-19fix memory leak caused by switch to vforkruss1-3/+4
git-svn-id: svn://busybox.net/trunk/busybox@8853 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-16Use int instead of char for return type, in theory avoiding a castbug11-2/+2
git-svn-id: svn://busybox.net/trunk/busybox@8845 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-10Fix for debian bug #248106, should use int for returned getopt value.bug11-1/+3
git-svn-id: svn://busybox.net/trunk/busybox@8819 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-05Steve Grubb writes:andersen1-1/+3
Hi, I just re-reviewed the patch I just sent...and it needed to be BUFSIZ-3 in dos2unix.c . tempFn is BUFSIZ so the last addressable spot it BUFSIZ-1. The loop increments by 2. That's why it should be BUFSIZ-3. Best Regards, Steve Grubb git-svn-id: svn://busybox.net/trunk/busybox@8805 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-05Steve Grubb writes:andersen2-3/+3
Hello, I found and patched 2 more bugs. The first is a misplaced semi-colon. The second one is a buffer overflow. I doubt the buffer overflow is triggered in real life. But you never know what those wily hackers are up to. Thanks, Steve Grubb git-svn-id: svn://busybox.net/trunk/busybox@8804 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-05Steve Grubb writes:andersen1-2/+4
Hello, Last November a bug was found in iproute. CAN-2003-0856 has more information. Basically, netlink packets can come from any user. If a program performs action based on netlink packets, they must be examined to make sure they came from the place they are expected (the kernel). Attached is a patch against pre8. Please apply this before releasing 1.00 final. All users of busy box may be vulnerable to local attacks without it. Best Regards, Steve Grubb git-svn-id: svn://busybox.net/trunk/busybox@8803 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-04Fix size command, safe_strtoul gives and error if the \r is left in, thebug11-1/+6
RFC spec says the \r should be there. This fix is the same as a recent wget fix git-svn-id: svn://busybox.net/trunk/busybox@8799 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-02Add part of a patch from Vernon Sauder that i missed a while backbug11-1/+1
git-svn-id: svn://busybox.net/trunk/busybox@8797 69ca8d6d-28ef-0310-b511-8ec308f3f277
2004-05-02Update dpkg-deb usage to match current practicesbug11-3/+1
git-svn-id: svn://busybox.net/trunk/busybox@8796 69ca8d6d-28ef-0310-b511-8ec308f3f277