aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | procps_scan: ensure command name is null terminatedRon Yorston2014-03-231-1/+1
| |
* | ps: exclude more unused codeRon Yorston2014-03-233-2/+12
| |
* | shell_common: exclude more unused ulimit codeRon Yorston2014-03-231-7/+6
| |
* | ash: set fake PPID valueRon Yorston2014-03-201-3/+2
| |
* | Add empty sys/syscall.hRon Yorston2014-03-202-1/+1
| |
* | Implement vprintf replacementRon Yorston2014-03-202-1/+4
| |
* | Implement getc replacementRon Yorston2014-03-202-0/+26
| |
* | Implement read replacement to handle OEM codepagesRon Yorston2014-03-202-0/+28
| |
* | Fixes to write replacementRon Yorston2014-03-201-2/+2
| |
* | clear: undo mingw32-specific changesRon Yorston2014-03-201-9/+0
| |
* | Implement write replacement to handle OEM codepagesRon Yorston2014-03-202-1/+77
| |
* | Implement puts replacement to handle OEM codepagesRon Yorston2014-03-192-4/+26
| |
* | Use OEM codepage for console I/ORon Yorston2014-03-193-4/+87
| | | | | | | | | | | | | | | | | | | | Windows console applications use different codepages for console I/O and the rest of the API: http://msdn.microsoft.com/en-us/goglobal/bb688114.aspx#E2F Attempt to workaround this by converting characters when they're read from and written to the console. Not all possible paths are handled.
* | dc: enable pow and exp by defaultRon Yorston2014-03-171-2/+2
| |
* | Drop CONFIG_WIN32_NET settingRon Yorston2014-03-178-34/+6
| |
* | Improved support for characters above 0x7fRon Yorston2014-03-172-3/+3
| |
* | Convert argv[0] to lowercase before checking for '.exe'Ron Yorston2014-03-171-5/+8
| |
* | wget: add fseek calls to make ftp work; enable ftpget/ftpputRon Yorston2014-03-163-4/+16
| |
* | Fix some compiler warningsRon Yorston2014-03-136-14/+16
| |
* | Allow utimes to change times on directoriesRon Yorston2014-03-131-8/+21
| |
* | Pretend chown succeeds so 'cp -rp' doesn't complainRon Yorston2014-03-131-1/+1
| |
* | patch: fix and enable by default for mingw32Ron Yorston2014-03-122-2/+7
| |
* | Enable 'tar -m' in mingw32_defconfigRon Yorston2014-03-121-2/+2
| |
* | Remove unused mingw_utime; update utimes to handle read-only filesRon Yorston2014-03-122-45/+20
| |
* | rev: fix to build with mingw32Ron Yorston2014-03-112-5/+9
| |
* | Import mempcpy from gnulibRon Yorston2014-03-113-0/+32
| |
* | wget: disable https supportRon Yorston2014-03-111-0/+6
| |
* | Update mingw32_defconfig with new featuresRon Yorston2014-03-111-2/+5
| |
* | Merge branch 'busybox' into mergeRon Yorston2014-03-1157-279/+1537
|\|
| * shuf: trim help textDenys Vlasenko2014-03-071-4/+4
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * shuf: do not use strings for -i RANGE caseDenys Vlasenko2014-03-071-3/+5
| | | | | | | | | | | | | | function old new delta shuf_main 482 496 +14 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * shuf: improve help textBartosz Golaszewski2014-03-071-3/+3
| | | | | | | | | | Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * shuf: fix a segfault on 'shuf -e'Bartosz Golaszewski2014-03-071-1/+2
| | | | | | | | | | Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * use [s]rand(), not [s]random()Denys Vlasenko2014-03-053-12/+12
| | | | | | | | | | | | | | | | rand() is the most standard C library function, and on uclibc they are the same. I guess they are the same in most todays' libc... Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * shuf: new appletDenys Vlasenko2014-03-051-0/+150
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | function old new delta shuf_main - 478 +478 packed_usage 29571 29719 +148 applet_names 2460 2465 +5 applet_main 1428 1432 +4 applet_nameofs 714 716 +2 ------------------------------------------------------------------------------ (add/remove: 2/0 grow/shrink: 4/0 up/down: 637/0) Total: 637 bytes Based on the code by Bartosz Golaszewski <bartekgola@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * man: default to asciiDenys Vlasenko2014-03-031-1/+2
| | | | | | | | | | | | | | | | Default to ascii instead of latin1. Otherwise man pages can be displayed incorrectly. E.g. bullets show as "<B7>". Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * ip link: add support for "address ETHADDR". Closes 4862Denys Vlasenko2014-03-011-2/+188
| | | | | | | | | | | | | | function old new delta do_iplink 2175 2289 +114 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * unlzma: add comments about possible bug from BZ 2689Denys Vlasenko2014-02-281-0/+6
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * unlzma: move some variables in "more local" scopeDenys Vlasenko2014-02-281-7/+10
| | | | | | | | | | | | No code changes as verified by objdump Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * udhcpc: ignore NAKs from "wrong" servers. Closes 4267Denys Vlasenko2014-02-271-1/+24
| | | | | | | | | | | | | | function old new delta udhcpc_main 2716 2814 +98 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * ls: make "ls -s DIR" show total too. Clases 4946Denys Vlasenko2014-02-271-1/+1
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * xargs: fix compilation breakageDenys Vlasenko2014-02-271-1/+1
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * grep: fix -w match if first match isn't a word, but second is. Closes 4520Denys Vlasenko2014-02-272-14/+21
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * xargs: add support for -I and -i. Closes 493Denys Vlasenko2014-02-274-56/+176
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | function old new delta process_stdin_with_replace - 195 +195 xmalloc_substitute_string - 145 +145 xargs_main 808 884 +76 count_strstr - 45 +45 packed_usage 29580 29571 -9 parse_params 1445 1416 -29 func_exec 285 138 -147 ------------------------------------------------------------------------------ (add/remove: 4/0 grow/shrink: 1/3 up/down: 461/-185) Total: 276 bytes text data bss dec hex filename 922156 932 17692 940780 e5aec busybox_old 922440 932 17692 941064 e5c08 busybox_unstripped Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * find: code shrinkDenys Vlasenko2014-02-261-5/+3
| | | | | | | | | | | | | | function old new delta func_exec 306 285 -21 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * nc: fix option bit positions. Closes 6926Denys Vlasenko2014-02-261-3/+3
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * hwclock: fix setting of tz_minuteswest. Closes 5414Denys Vlasenko2014-02-251-2/+10
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * build system: remove a dead link from Config help textDenys Vlasenko2014-02-251-4/+1
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * du, copy_file: fix file matching on cramfs. Closes 5456Denys Vlasenko2014-02-251-4/+15
| | | | | | | | | | | | | | | | | | | | | | function old new delta is_in_ino_dev_hashtable 88 108 +20 add_to_ino_dev_hashtable 150 142 -8 reset_ino_dev_hashtable 84 75 -9 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/2 up/down: 20/-17) Total: 3 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * libbb: trivial code shrinkDenys Vlasenko2014-02-251-6/+11
| | | | | | | | | | | | | | function old new delta reset_ino_dev_hashtable 84 74 -10 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>