aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* apply post-1.18.1 patches, bump version to 1.18.21_18_2Denys Vlasenko2011-01-1610-87/+86
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* apply post-1.18.0 patches, bump version to 1.18.11_18_1Denys Vlasenko2010-12-218-62/+75
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Bump version to 1.18.01_18_0Denys Vlasenko2010-11-231-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* date :add a comment about older toolchainsDenys Vlasenko2010-11-231-0/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* fixes for bugs discovered by randomconfig builds and testsDenys Vlasenko2010-11-227-10/+26
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* fix misspelling in commentDenys Vlasenko2010-11-221-1/+1
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* hush: fix improper handling of newline and hash chars in few corner casesDenys Vlasenko2010-11-227-123/+160
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* nc: fix SEGV on -v when NC_EXTRA is offDenys Vlasenko2010-11-221-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* inetd: if argv[0] is not specified, set it to program nameMike Frysinger2010-11-221-0/+6
| | | | | | | With inetd.conf files that skip argv[], inetd execs programs with argc==0. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* lineedit: fix tab-completion of filenames with spacesMike Shal2010-11-221-22/+45
| | | | | | | | | | | | Using ash in busybox git version dea28e1e, tab completion doesn't seem to work properly for filenames that have special characters (such as spaces) in them. For example, with filenames "foo bar" and "foo zap", typing "ls fo<TAB>" correctly expands to "ls foo\ ", but then continuing to type "b<TAB>" will produce "ls foo\ bbar", which is not correct (the 'b' is duplicated). Signed-off-by: Mike Shal <marfey@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* patch: remove out-of-file build machineryDenys Vlasenko2010-11-224-31/+0
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* gen_build_files.sh: restore deleted commentDenys Vlasenko2010-11-211-0/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* cmp: with -s, do not report open errorsDenys Vlasenko2010-11-211-4/+5
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* patch: simplify double list helpersDenys Vlasenko2010-11-211-42/+32
| | | | | | | | | | | | | | function old new delta dlist_free - 29 +29 fail_hunk 130 132 +2 patch_main 1987 1982 -5 dlist_add 59 54 -5 TOY_llist_pop 9 - -9 TOY_llist_free 54 - -54 ------------------------------------------------------------------------------ (add/remove: 1/2 grow/shrink: 1/2 up/down: 31/-73) Total: -42 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* patch: busyboxify by migrating from toybox to busybox helpersDenys Vlasenko2010-11-212-162/+87
| | | | | | | | | | | | | | function old new delta get_line 90 128 +38 bbconfig_config_bz2 4959 4965 +6 makedevs_main 1038 1035 -3 fail_hunk 133 130 -3 finish_oldfile 174 124 -50 patch_main 2066 1987 -79 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/4 up/down: 44/-135) Total: -91 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* gen_build_files.sh: rewrite with sedMike Frysinger2010-11-161-53/+47
| | | | | | | | | The shell parsing of files is incredibly slow on many systems. With one report, the process was taking a minute or two which made people thing the build was hung. So rewrite the craziness with sed and proper shell functions. On an idle system, this cut the runtime by half. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* allow SKIP_STRIP to be set in the envMike Frysinger2010-11-161-1/+1
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* depmod.pl: add recursive sanity checkMike Frysinger2010-11-161-0/+3
| | | | | | | | If modules contain circular dependencies, the depmod script will follow the circle forever. So add a simple sanity check to abort rather than chew up the CPU. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* lineedit: create history files with mode 0600Wolfram Sang2010-11-151-5/+7
| | | | | Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* hush: add support for "set -o pipefail"Denys Vlasenko2010-11-143-23/+186
| | | | | | | | | | | | function old new delta checkjobs 467 517 +50 builtin_set 259 286 +27 o_opt_strings - 10 +10 hush_main 1011 1013 +2 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 3/0 up/down: 89/0) Total: 89 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* hush: preparatory patch for set -o pipefail supportDenys Vlasenko2010-11-141-4/+5
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* libbb: remove unused variableLauri Kasanen2010-11-131-4/+3
| | | | | Signed-off-by: Lauri Kasanen <curaga@operamail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* deluser: do not warn spuriously when deleting group by deluserTito Ragusa2010-11-081-6/+14
| | | | | Signed-off-by: Tito Ragusa <farmatito@tiscali.it> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* delgroup: correct the check for users who still use the groupDenys Vlasenko2010-11-071-12/+12
| | | | | Signed-off-by: Tito <farmatito@tiscali.it> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* typo fixDenys Vlasenko2010-11-062-2/+2
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* deluser: 2nd attempt at deluser/delgroup size reduction and improvementsTito Ragusa2010-11-061-29/+70
| | | | | Signed-off-by: Tito Ragusa <farmatito@tiscali.it> Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* powertop: code shrinkMaksym Kryzhanovskyy2010-11-061-12/+13
| | | | | | | | function old new delta process_timer_stats 490 449 -41 Signed-off-by: Maksym Kryzhanovskyy <xmaks@email.cz> Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* Merge branch 'master' of git+ssh://busybox.net/var/lib/git/busyboxDenys Vlasenko2010-11-061-9/+7
|\
| * powertop: fix last line detection in process_timer_stats()Denys Vlasenko2010-11-041-2/+2
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * powertop: replace erroneous \n with \0; make numberic conversion more robustDenys Vlasenko2010-11-041-7/+5
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | ls: fix -lg to show group (was showing user)Denys Vlasenko2010-11-061-3/+3
|/ | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* ip: Fix command line option parsing of "ip route get ..."Christian Hornung2010-11-041-1/+1
| | | | | | | | | | | I found and fixed a bug in the command line options parsing of "ip route get": It was impossible to get any option other than the IP address recognized correctly, and e.g. the command "ip route get connected" just hung up infinitely in the options parsing loop instead of printing an error message. Signed-off-by: Christian Hornung <chhornung@googlemail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* powertop: code shrinkMaksym Kryzhanovskyy2010-11-041-57/+35
| | | | | | | | | | | | | function old new delta read_cstate_counts 355 360 +5 print_intel_cstates 494 499 +5 process_timer_stats 554 480 -74 process_irq_counts 765 530 -235 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/2 up/down: 10/-309) Total: -299 bytes Signed-off-by: Maksym Kryzhanovskyy <xmaks@email.cz> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* type fix in commentDenys Vlasenko2010-11-031-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* rename archival/libunarchive -> archival/libarchive; move bz/ into itDenys Vlasenko2010-11-0374-57/+57
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* *: move lzo compressor code to archival/libunarchive/. No code changesDenys Vlasenko2010-11-039-2/+3
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* init: if PID!=1, show clearer error message. move usage text closer to main()Denys Vlasenko2010-11-022-137/+137
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* whitespace fixDenys Vlasenko2010-11-011-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* decompress_bunzip2: reinstate erroneously deleted RETVAL_SHORT_WRITEDenys Vlasenko2010-11-011-1/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* umount: cleanup and code shrinkRob Landley2010-11-011-40/+7
| | | | | Signed-off-by: Rob Landley <rob@landley.net> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* stat: fix mtime/ctime/atimeEric Lammerts2010-10-301-4/+3
| | | | | | | | If you set CONFIG_FEATURE_STAT_FORMAT=n, two of the three printed times are wrong, because a global buffer is reused. Fix below. Signed-off-by: Eric Lammerts <busybox@lists.lammerts.org> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* fdisk: fix trivial build failureDenys Vlasenko2010-10-301-0/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* networking/*: remove superfluous commentsDenys Vlasenko2010-10-305-11/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* decompress_bunzip2: code shrink ~5 bytesDenys Vlasenko2010-10-301-12/+13
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* decompress_bunzip2: code shrink ~10 bytesDenys Vlasenko2010-10-301-74/+99
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* decompress_bunzip2: add profiling data to comment. no code changesDenys Vlasenko2010-10-291-0/+11
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* scripts/mkdiff_obj: show "size OBJFILE" tooDenys Vlasenko2010-10-291-2/+2
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* decompress_bunzip2: relieve register pressure in hot function read_bunzipDenys Vlasenko2010-10-292-7/+15
| | | | | | | | function old new delta unpack_bz2_stream 318 329 +11 read_bunzip 268 262 -6 Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* decompress_bunzip2: keep bd->writeCRC in CPU reg in the hot loopDenys Vlasenko2010-10-291-21/+28
| | | | | | -5 bytes on 64-bit, +7 bytes on 32-bit. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* powertop: build fix for !386 compilesDenys Vlasenko2010-10-291-1/+1
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>