oweals/busybox.git
16 years agobzip2: more of code shrink
Denis Vlasenko [Wed, 17 Oct 2007 10:14:11 +0000 (10:14 -0000)]
bzip2: more of code shrink

compressStream                                       503     473     -30
BZ2_bzCompress                                        78       -     -78
------------------------------------------------------------------------------
(add/remove: 0/1 grow/shrink: 0/1 up/down: 0/-108)           Total: -108 bytes
   text    data     bss     dec     hex filename
 676300    2538   12104  690942   a8afe busybox_old
 676192    2538   12104  690834   a8a92 busybox_unstripped

16 years agoanother fix for build failure found by randomconfig
Denis Vlasenko [Wed, 17 Oct 2007 09:59:01 +0000 (09:59 -0000)]
another fix for build failure found by randomconfig

16 years agoeven more fixes from randomconfig runs
Denis Vlasenko [Tue, 16 Oct 2007 23:00:50 +0000 (23:00 -0000)]
even more fixes from randomconfig runs

16 years agofixes revealed by randomconfig run
Denis Vlasenko [Tue, 16 Oct 2007 22:53:05 +0000 (22:53 -0000)]
fixes revealed by randomconfig run

16 years agotelnetd: fix comment
Denis Vlasenko [Tue, 16 Oct 2007 22:01:23 +0000 (22:01 -0000)]
telnetd: fix comment

16 years agotelnetd: code shrink suggested by Ralf Friedl <Ralf.Friedl@online.de>
Denis Vlasenko [Tue, 16 Oct 2007 21:35:17 +0000 (21:35 -0000)]
telnetd: code shrink suggested by Ralf Friedl <Ralf.Friedl@online.de>

16 years agobzip2: move state pointer to the offset 0 (smaller code)
Denis Vlasenko [Tue, 16 Oct 2007 14:07:41 +0000 (14:07 -0000)]
bzip2: move state pointer to the offset 0 (smaller code)
ifdef out DecompressEnd if FEATURE_CLEAN_UP is not seleted

fallbackSort                                        1655    1672     +17
mainSort                                            2447    2458     +11
bzip2_main                                           109     119     +10
.rodata                                           123466  123469      +3
generateMTFValues                                    433     435      +2
handle_compress                                      355     356      +1
BZ2_bzCompress                                        79      78      -1
prepare_new_block                                     55      48      -7
compressStream                                       547     503     -44
sendMTFValues                                       2225    2140     -85
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 6/4 up/down: 44/-137)           Total: -93 bytes
   text    data     bss     dec     hex filename
 676421    2538   12104  691063   a8b77 busybox_old
 676328    2538   12104  690970   a8b1a busybox_unstripped

16 years agobzip2: make -s equivalent to -2 (compatible with standard bzip2)
Denis Vlasenko [Tue, 16 Oct 2007 10:47:27 +0000 (10:47 -0000)]
bzip2: make -s equivalent to -2 (compatible with standard bzip2)
telnetd: typo fix in comment

16 years agotelnetd: at Alexander Kriegisch <Alexander@kriegisch.name> insistence
Denis Vlasenko [Mon, 15 Oct 2007 22:09:15 +0000 (22:09 -0000)]
telnetd: at Alexander Kriegisch <Alexander@kriegisch.name> insistence
add an option to close sessions as soon as child exits.
Maybe it should be a CONFIG option. OTOH, maybe it should be always on,
as it mimics, say, getty's behaviour.

function                                             old     new   delta
handle_sigchld                                         -      49     +49
telnetd_main                                        1312    1355     +43
.rodata                                           123429  123466     +37
packed_usage                                       22770   22806     +36
make_new_session                                     525     532      +7
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 4/0 up/down: 172/0)             Total: 172 bytes
   text    data     bss     dec     hex filename
 676285    2538   12104  690927   a8aef busybox_old
 676421    2538   12104  691063   a8b77 busybox_unstripped

16 years agotelnetd: document bug in remove_iacs. reinstate band-aid
Denis Vlasenko [Mon, 15 Oct 2007 17:28:00 +0000 (17:28 -0000)]
telnetd: document bug in remove_iacs. reinstate band-aid
which was making it near-impossible to trigger.
remove memmove call which was happening at each network read,
and in 99%+ cases was not needed. Unfortunately, +50 bytes.

16 years agotelnetd: some simplifications and better error hadling.
Denis Vlasenko [Mon, 15 Oct 2007 15:19:36 +0000 (15:19 -0000)]
telnetd: some simplifications and better error hadling.
telnetd: don't SIGKILL child when closing the session.
kernel will seng SIGHUP for us.

static.iacs_to_send                                    -      15     +15
.rodata                                           123418  123429     +11
make_new_session                                     549     525     -24
send_iac                                              26       -     -26
free_session                                         144     118     -26
telnetd_main                                        1303    1261     -42
------------------------------------------------------------------------------
(add/remove: 1/1 grow/shrink: 1/3 up/down: 26/-118)           Total: -92 bytes
   text    data     bss     dec     hex filename
 676341    2538   12104  690983   a8b27 busybox_old
 676234    2538   12104  690876   a8abc busybox_unstripped

16 years agobzip2: update help text
Denis Vlasenko [Sun, 14 Oct 2007 07:57:26 +0000 (07:57 -0000)]
bzip2: update help text

16 years agobzip2: implement -1..-9 command line flags
Denis Vlasenko [Sun, 14 Oct 2007 07:51:19 +0000 (07:51 -0000)]
bzip2: implement -1..-9 command line flags

16 years agobzip2: eliminate some divisions
Denis Vlasenko [Sun, 14 Oct 2007 07:49:48 +0000 (07:49 -0000)]
bzip2: eliminate some divisions

16 years agoremove trailing whitespace
Denis Vlasenko [Sun, 14 Oct 2007 04:55:59 +0000 (04:55 -0000)]
remove trailing whitespace

16 years agosetsebool: new applet (Yuichi Nakamura <ynakam@hitachisoft.jp>)
Denis Vlasenko [Sun, 14 Oct 2007 04:48:44 +0000 (04:48 -0000)]
setsebool: new applet (Yuichi Nakamura <ynakam@hitachisoft.jp>)

16 years agohttpd: fix bug where we were trying to read more POSTDATA than content-length
Denis Vlasenko [Sun, 14 Oct 2007 02:34:20 +0000 (02:34 -0000)]
httpd: fix bug where we were trying to read more POSTDATA than content-length

16 years agobzip2: code size shrink
Denis Vlasenko [Sun, 14 Oct 2007 01:37:53 +0000 (01:37 -0000)]
bzip2: code size shrink

16 years agobzip2: remove files which are not used anymore
Denis Vlasenko [Sun, 14 Oct 2007 00:44:10 +0000 (00:44 -0000)]
bzip2: remove files which are not used anymore

16 years agobzip2: size reduction, to just below 9k.
Denis Vlasenko [Sun, 14 Oct 2007 00:43:01 +0000 (00:43 -0000)]
bzip2: size reduction, to just below 9k.

16 years agobzip2: port bzip2 1.0.4 to busybox. note: bzip2 code resides
Denis Vlasenko [Sat, 13 Oct 2007 03:36:03 +0000 (03:36 -0000)]
bzip2: port bzip2 1.0.4 to busybox. note: bzip2 code resides
in separate directory (archival/bz/*)
and is covered by BSD-style license.
code size: 13k

16 years agowhitespace/style fix
Denis Vlasenko [Thu, 11 Oct 2007 19:53:10 +0000 (19:53 -0000)]
whitespace/style fix

16 years agomt: eliminate vector of structures with pointers (bad for libbusybox).
Denis Vlasenko [Thu, 11 Oct 2007 19:38:59 +0000 (19:38 -0000)]
mt: eliminate vector of structures with pointers (bad for libbusybox).
It's a win for static build too:

function                                             old     new   delta
opcode_name                                            -     213    +213
opcode_value                                           -      68     +68
mt_main                                              281     256     -25
opcodes                                              280       -    -280
------------------------------------------------------------------------------
(add/remove: 2/1 grow/shrink: 0/1 up/down: 281/-305)          Total: -24 bytes
   text    data     bss     dec     hex filename
 767403     974    9420  777797   bde45 busybox_old
 767224     974    9420  777618   bdd92 busybox_unstripped

16 years agostty: incorporate strings into struct instead of keeping pointers there.
Denis Vlasenko [Thu, 11 Oct 2007 16:02:36 +0000 (16:02 -0000)]
stty: incorporate strings into struct instead of keeping pointers there.

static:
   text    data     bss     dec     hex filename
 767535     974    9420  777929   bdec9 busybox_old
 767403     974    9420  777797   bde45 busybox_unstripped

dynamic -fpic:
   text    data     bss     dec     hex filename
 718954   14030   12032  745016   b5e38 busybox_old
 720278   12534   12032  744844   b5d8c busybox_unstripped

16 years agovi: don't wait 50 ms before reading ESC sequences
Denis Vlasenko [Thu, 11 Oct 2007 10:10:15 +0000 (10:10 -0000)]
vi: don't wait 50 ms before reading ESC sequences
inetd,syslogd: use safe_read instead of open-coded EINTR handling
syslogd: bail out if you see null read from Unix socket
(should never happen, but if it does, spinning forever
and eating 100% CPU is not a good idea)

16 years agotrim too verbose help texts
Denis Vlasenko [Thu, 11 Oct 2007 10:07:24 +0000 (10:07 -0000)]
trim too verbose help texts

16 years agofix a problem with two different applet_name's
Denis Vlasenko [Thu, 11 Oct 2007 10:06:26 +0000 (10:06 -0000)]
fix a problem with two different applet_name's

16 years agoadd -fvisibility=hidden to CC flags, mark XXX_main functions
Denis Vlasenko [Thu, 11 Oct 2007 10:05:36 +0000 (10:05 -0000)]
add -fvisibility=hidden to CC flags, mark XXX_main functions
EXTERNALLY_VISIBLE. 5% size reduction of libbusybox.so

16 years agoadd -fpic to CC flags when we build libbusybox (14% smaller .so)
Denis Vlasenko [Thu, 11 Oct 2007 10:02:52 +0000 (10:02 -0000)]
add -fpic to CC flags when we build libbusybox (14% smaller .so)

16 years agobunzip: small code shrink and consmetics
Denis Vlasenko [Wed, 10 Oct 2007 20:53:41 +0000 (20:53 -0000)]
bunzip: small code shrink and consmetics

read_bunzip                                          276     283      +7
get_bits                                             184     162     -22
get_next_block                                      1833    1810     -23
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 1/2 up/down: 7/-45)             Total: -38 bytes

16 years agoip tunnel parameter parsing fix by Jean Wolter <jw5@os.inf.tu-dresden.de>
Denis Vlasenko [Wed, 10 Oct 2007 14:43:03 +0000 (14:43 -0000)]
ip tunnel parameter parsing fix by Jean Wolter <jw5@os.inf.tu-dresden.de>

16 years agoMove applets/applet.c into libbb, allows to get rid of --whole-archive
Denis Vlasenko [Wed, 10 Oct 2007 14:41:07 +0000 (14:41 -0000)]
Move applets/applet.c into libbb, allows to get rid of --whole-archive
(smaller code). Tested in static and shared mode.

16 years agoget rid of global "struct bb_applet *current_applet"
Denis Vlasenko [Wed, 10 Oct 2007 14:38:47 +0000 (14:38 -0000)]
get rid of global "struct bb_applet *current_applet"

16 years agotrylink: s/strip/$STRIP/g
Denis Vlasenko [Wed, 10 Oct 2007 10:05:35 +0000 (10:05 -0000)]
trylink: s/strip/$STRIP/g

16 years agotypo fix in help text
Denis Vlasenko [Tue, 9 Oct 2007 18:08:04 +0000 (18:08 -0000)]
typo fix in help text

16 years agotrylink: trivial cleanup
Denis Vlasenko [Tue, 9 Oct 2007 18:01:13 +0000 (18:01 -0000)]
trylink: trivial cleanup

16 years agotrylink: reformat link flags for readability
Denis Vlasenko [Tue, 9 Oct 2007 13:49:26 +0000 (13:49 -0000)]
trylink: reformat link flags for readability
trylink: add --sort-section alignment:
    text           data     bss     dec     hex filename
-   6557            428    3260   10245    2805 busybox
+   6555            428    3260   10243    2803 busybox
- 909621           1076   12108  922805   e14b5 libbusybox.so.1.8.0.svn
+ 908868           1050   12016  921934   e114e libbusybox.so.1.8.0.svn

16 years agotrylink: remove useless redirects, add missing error checks
Denis Vlasenko [Tue, 9 Oct 2007 13:08:02 +0000 (13:08 -0000)]
trylink: remove useless redirects, add missing error checks

16 years agotrylink: trivial fixes
Denis Vlasenko [Tue, 9 Oct 2007 10:15:41 +0000 (10:15 -0000)]
trylink: trivial fixes

16 years agomake "individual applets" build less noisy.
Denis Vlasenko [Mon, 8 Oct 2007 22:16:14 +0000 (22:16 -0000)]
make "individual applets" build less noisy.
add *.tmp to list of files deleted by make mrproper.

16 years agowhitespace fix
Denis Vlasenko [Mon, 8 Oct 2007 20:45:42 +0000 (20:45 -0000)]
whitespace fix

16 years agoadd libbb/appletlib.c
Denis Vlasenko [Mon, 8 Oct 2007 19:32:12 +0000 (19:32 -0000)]
add libbb/appletlib.c

16 years agomake --help work for "individual applets" too.
Denis Vlasenko [Sun, 7 Oct 2007 21:00:41 +0000 (21:00 -0000)]
make --help work for "individual applets" too.

16 years agolibbusybox: move (possibly compressed) help stuff into libbusybox.
Denis Vlasenko [Sun, 7 Oct 2007 20:46:34 +0000 (20:46 -0000)]
libbusybox: move (possibly compressed) help stuff into libbusybox.
Makes individual binaries much smaller.

16 years agotrim too verbose help messages
Denis Vlasenko [Sun, 7 Oct 2007 19:13:55 +0000 (19:13 -0000)]
trim too verbose help messages

16 years agowebsite: "BusyBox Weekly News" didn't really work, remove link
Denis Vlasenko [Sun, 7 Oct 2007 18:10:44 +0000 (18:10 -0000)]
website: "BusyBox Weekly News" didn't really work, remove link

16 years agoash: revert "cat | jobs" fix, it causes more problems than good
Denis Vlasenko [Sun, 7 Oct 2007 18:02:52 +0000 (18:02 -0000)]
ash: revert "cat | jobs" fix, it causes more problems than good

16 years agoreviving libbusybox, adding CONFIG_INDIVIDUAL part 4
Denis Vlasenko [Sun, 7 Oct 2007 17:06:26 +0000 (17:06 -0000)]
reviving libbusybox, adding CONFIG_INDIVIDUAL part 4

16 years agoreviving libbusybox, adding CONFIG_INDIVIDUAL part 3
Denis Vlasenko [Sun, 7 Oct 2007 17:06:01 +0000 (17:06 -0000)]
reviving libbusybox, adding CONFIG_INDIVIDUAL part 3

16 years agoreviving libbusybox, adding CONFIG_INDIVIDUAL part 2
Denis Vlasenko [Sun, 7 Oct 2007 17:05:42 +0000 (17:05 -0000)]
reviving libbusybox, adding CONFIG_INDIVIDUAL part 2

16 years agoreviving libbusybox, adding CONFIG_INDIVIDUAL part 1
Denis Vlasenko [Sun, 7 Oct 2007 17:05:22 +0000 (17:05 -0000)]
reviving libbusybox, adding CONFIG_INDIVIDUAL part 1

16 years ago- mark TODO: use index_in_str_array()
Bernhard Reutner-Fischer [Sat, 6 Oct 2007 20:47:53 +0000 (20:47 -0000)]
- mark TODO: use index_in_str_array()

16 years agochpst: fix whitespace damage
Denis Vlasenko [Fri, 5 Oct 2007 22:11:06 +0000 (22:11 -0000)]
chpst: fix whitespace damage
svlogd: fix bug (two different "line" variables); stop using data/bss

function                                             old     new   delta
processorstop                                        419     432     +13
rotate                                               514     525     +11
buffer_pwrite                                        493     499      +6
sig_term_handler                                      68      70      +2
sig_hangup_handler                                    34      36      +2
sig_alarm_handler                                     34      36      +2
rmoldest                                             305     307      +2
processorstart                                       401     403      +2
logdir_close                                         188     190      +2
tmaxflag                                               1       -      -1
rotateasap                                             1       -      -1
repl                                                   1       -      -1
reopenasap                                             1       -      -1
linecomplete                                           1       -      -1
exitasap                                               1       -      -1
wstat                                                  4       -      -4
verbose                                                9       5      -4
replace                                                4       -      -4
nearest_rotate                                         4       -      -4
linemax                                                4       -      -4
linelen                                                4       -      -4
line                                                   4       -      -4
fndir                                                  4       -      -4
fl_flag_0                                              4       -      -4
fdwdir                                                 4       -      -4
dirn                                                   4       -      -4
dir                                                    4       -      -4
blocked_sigset                                         4       -      -4
sig_child_handler                                    248     239      -9
logdirs_reopen                                      1263    1240     -23
buffer_pread                                         532     473     -59
svlogd_main                                         1466    1367     -99
------------------------------------------------------------------------------
(add/remove: 0/18 grow/shrink: 9/5 up/down: 42/-248)         Total: -206 bytes
   text    data     bss     dec     hex filename
 770916     989    9496  781401   bec59 busybox_old
 770768     980    9448  781196   beb8c busybox_unstripped

16 years agochpst: stop using data/bss
Denis Vlasenko [Fri, 5 Oct 2007 21:23:49 +0000 (21:23 -0000)]
chpst: stop using data/bss

function                                             old     new   delta
chpst_main                                          1066    1089     +23
set_user                                               4       -      -4
root                                                   4       -      -4
nicelvl                                                4       -      -4
limitt                                                 4       -      -4
limits                                               196     192      -4
limitr                                                 4       -      -4
limitp                                                 4       -      -4
limito                                                 4       -      -4
limitl                                                 4       -      -4
limitf                                                 4       -      -4
limitd                                                 4       -      -4
limitc                                                 4       -      -4
limita                                                 4       -      -4
env_user                                               4       -      -4
env_dir                                                4       -      -4
------------------------------------------------------------------------------
(add/remove: 0/14 grow/shrink: 1/1 up/down: 23/-60)           Total: -37 bytes
   text    data     bss     dec     hex filename
 770892    1029    9520  781441   bec81 busybox_old
 770916     989    9496  781401   bec59 busybox_unstripped

16 years agostat: code shrink; stop using bss; stop using strncat incorrectly
Denis Vlasenko [Fri, 5 Oct 2007 20:31:23 +0000 (20:31 -0000)]
stat: code shrink; stop using bss; stop using strncat incorrectly

function                                             old     new   delta
printfs                                                -      28     +28
strcatc                                                -      26     +26
human_time                                            41      44      +3
print_it                                             229     219     -10
buf                                                   30       -     -30
print_statfs                                         420     358     -62
print_stat                                          1089     921    -168
------------------------------------------------------------------------------
(add/remove: 2/1 grow/shrink: 1/3 up/down: 57/-270)          Total: -213 bytes
   text    data     bss     dec     hex filename
 771105    1029    9552  781686   bed76 busybox_old
 770892    1029    9520  781441   bec81 busybox_unstripped

16 years agodelete now unused check_header_gzip.c
Denis Vlasenko [Fri, 5 Oct 2007 20:29:31 +0000 (20:29 -0000)]
delete now unused check_header_gzip.c
sum: do not use uintmax needlessly

16 years agotail: sizeof(buf) is sizeof(char*)! must be BUFSIZ
Denis Vlasenko [Fri, 5 Oct 2007 19:17:16 +0000 (19:17 -0000)]
tail: sizeof(buf) is sizeof(char*)! must be BUFSIZ

16 years agoadd tests for gunzip
Denis Vlasenko [Fri, 5 Oct 2007 15:27:03 +0000 (15:27 -0000)]
add tests for gunzip

16 years agogunzip: support concatenated gz files.
Denis Vlasenko [Fri, 5 Oct 2007 15:26:08 +0000 (15:26 -0000)]
gunzip: support concatenated gz files.

   text    data     bss     dec     hex filename
 770988    1029    9552  781569   bed01 busybox.t0/busybox
 771105    1029    9552  781686   bed76 busybox.t3/busybox

16 years agotail: work correctly on /proc files (Kazuo TAKADA <kztakada@sm.sony.co.jp>)
Denis Vlasenko [Tue, 2 Oct 2007 10:17:56 +0000 (10:17 -0000)]
tail: work correctly on /proc files (Kazuo TAKADA <kztakada@sm.sony.co.jp>)

16 years agologger: fix a problem of losing all argv except first
Denis Vlasenko [Tue, 2 Oct 2007 09:57:41 +0000 (09:57 -0000)]
logger: fix a problem of losing all argv except first

16 years ago- ditch 2 bytes
Bernhard Reutner-Fischer [Mon, 1 Oct 2007 18:04:42 +0000 (18:04 -0000)]
- ditch 2 bytes

16 years agoprintf("%s\n") -> puts()
Denis Vlasenko [Mon, 1 Oct 2007 12:05:12 +0000 (12:05 -0000)]
printf("%s\n") -> puts()

16 years ago'simple' error message functions by Loic Grenie <loic.grenie@gmail.com>.
Denis Vlasenko [Mon, 1 Oct 2007 11:58:38 +0000 (11:58 -0000)]
'simple' error message functions by Loic Grenie <loic.grenie@gmail.com>.
263 bytes saved.

16 years agohush: fix glob() abuse. Code was making unfounded assumptions how
Denis Vlasenko [Mon, 1 Oct 2007 10:02:25 +0000 (10:02 -0000)]
hush: fix glob() abuse. Code was making unfounded assumptions how
glob() works, and it broke horribly on specific uclibc config.

16 years agohush: int->smallint for flag vars; make some names more "greppable"
Denis Vlasenko [Mon, 1 Oct 2007 10:00:45 +0000 (10:00 -0000)]
hush: int->smallint for flag vars; make some names more "greppable"

16 years agohush: feeble attempt at making it more NOMMU-friendly
Denis Vlasenko [Mon, 1 Oct 2007 09:59:47 +0000 (09:59 -0000)]
hush: feeble attempt at making it more NOMMU-friendly

16 years agohush: stop doing manual acounting of open fd's, kernel can do it for us
Denis Vlasenko [Mon, 1 Oct 2007 09:59:01 +0000 (09:59 -0000)]
hush: stop doing manual acounting of open fd's, kernel can do it for us

16 years agointroduce and use close_on_exec_on(fd). -50 bytes.
Denis Vlasenko [Sun, 30 Sep 2007 23:50:48 +0000 (23:50 -0000)]
introduce and use close_on_exec_on(fd). -50 bytes.

16 years agomove udhcp_{client/server}_config to common_bufsiz1
Denis Vlasenko [Sun, 30 Sep 2007 17:55:43 +0000 (17:55 -0000)]
move udhcp_{client/server}_config to common_bufsiz1

udhcp_run_script                                    1108    1151     +43
init_packet                                          209     210      +1
udhcpc_main                                         2395    2393      -2
udhcp_client_config                                   56       -     -56
udhcp_server_config                                   88       -     -88
------------------------------------------------------------------------------
(add/remove: 0/2 grow/shrink: 2/1 up/down: 44/-146)          Total: -102 bytes
   text    data     bss     dec     hex filename
 771326    1029    9696  782051   beee3 busybox_old
 771383    1029    9552  781964   bee8c busybox_unstripped

16 years agodhcpreplay: code shrink, -40 bytes
Denis Vlasenko [Sun, 30 Sep 2007 17:54:10 +0000 (17:54 -0000)]
dhcpreplay: code shrink, -40 bytes

16 years agofixlet to pgrep/pkill
Denis Vlasenko [Sun, 30 Sep 2007 16:36:02 +0000 (16:36 -0000)]
fixlet to pgrep/pkill

16 years agoprint_signames_and_exit -> print_signames (because of "ash calls kill_main")
Denis Vlasenko [Sun, 30 Sep 2007 16:32:01 +0000 (16:32 -0000)]
print_signames_and_exit -> print_signames (because of "ash calls kill_main")

16 years agoreplace printf with fputs where appropriate
Denis Vlasenko [Sun, 30 Sep 2007 16:22:36 +0000 (16:22 -0000)]
replace printf with fputs where appropriate

16 years agolibiproute: add missing break's
Denis Vlasenko [Sun, 30 Sep 2007 16:04:21 +0000 (16:04 -0000)]
libiproute: add missing break's

16 years agoannounce 1.7.2 on the website
Denis Vlasenko [Sun, 30 Sep 2007 00:06:42 +0000 (00:06 -0000)]
announce 1.7.2 on the website

16 years agosmall code shrink
Denis Vlasenko [Sat, 29 Sep 2007 23:26:52 +0000 (23:26 -0000)]
small code shrink

16 years agobuild system: pass EXTRA_LDFLAGS to final link stage
Denis Vlasenko [Sat, 29 Sep 2007 22:52:25 +0000 (22:52 -0000)]
build system: pass EXTRA_LDFLAGS to final link stage

16 years agotrivial typo fix
Denis Vlasenko [Sat, 29 Sep 2007 22:49:26 +0000 (22:49 -0000)]
trivial typo fix

16 years agopgrep,pkill: new applets by Loic Grenie <loic.grenie@gmail.com>
Denis Vlasenko [Sat, 29 Sep 2007 22:26:01 +0000 (22:26 -0000)]
pgrep,pkill: new applets by Loic Grenie <loic.grenie@gmail.com>

16 years agoxrealloc_getcwd_or_warn: smaller cod and less wasted RAM at run time
Denis Vlasenko [Sat, 29 Sep 2007 19:19:55 +0000 (19:19 -0000)]
xrealloc_getcwd_or_warn: smaller cod and less wasted RAM at run time

16 years agoremove if() which is always true
Denis Vlasenko [Sat, 29 Sep 2007 18:27:14 +0000 (18:27 -0000)]
remove if() which is always true

16 years agobunzip2: trim verbose messages
Denis Vlasenko [Fri, 28 Sep 2007 23:45:56 +0000 (23:45 -0000)]
bunzip2: trim verbose messages

   text    data     bss     dec     hex filename
 770752    1029    9696  781477   beca5 busybox_old
 770691    1029    9696  781416   bec68 busybox_unstripped

16 years agohttpd: trivial simplification
Denis Vlasenko [Fri, 28 Sep 2007 22:35:29 +0000 (22:35 -0000)]
httpd: trivial simplification

16 years agomore "if (p) free(p)" fixes; fix a typo in comment
Denis Vlasenko [Fri, 28 Sep 2007 22:13:55 +0000 (22:13 -0000)]
more "if (p) free(p)" fixes; fix a typo in comment

16 years agofix "if (p) free(p)" constructs
Denis Vlasenko [Fri, 28 Sep 2007 22:07:23 +0000 (22:07 -0000)]
fix "if (p) free(p)" constructs

16 years agoremove stray semicolon
Denis Vlasenko [Fri, 28 Sep 2007 21:56:36 +0000 (21:56 -0000)]
remove stray semicolon

16 years agohdparm: paranoia-induced fix against theoretical div-by-0 case
Denis Vlasenko [Fri, 28 Sep 2007 13:41:41 +0000 (13:41 -0000)]
hdparm: paranoia-induced fix against theoretical div-by-0 case

16 years agohdparm: more robust (re overflows) code. +38 bytes.
Denis Vlasenko [Fri, 28 Sep 2007 13:38:08 +0000 (13:38 -0000)]
hdparm: more robust (re overflows) code. +38 bytes.

16 years agotrivial fix in setfiles. spotted by Yuichi Nakamura <ynakam@hitachisoft.jp>
Denis Vlasenko [Fri, 28 Sep 2007 11:37:38 +0000 (11:37 -0000)]
trivial fix in setfiles. spotted by Yuichi Nakamura <ynakam@hitachisoft.jp>

16 years agohdparm: reduce possibility of numeric overflow in -T.
Denis Vlasenko [Fri, 28 Sep 2007 11:21:47 +0000 (11:21 -0000)]
hdparm: reduce possibility of numeric overflow in -T.

do_time                                              386     410     +24
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 1/0 up/down: 24/0)               Total: 24 bytes

16 years agoassorted static vars removal
Denis Vlasenko [Fri, 28 Sep 2007 10:29:17 +0000 (10:29 -0000)]
assorted static vars removal

function                                             old     new   delta
tcpudpsvd_main                                      1829    1839     +10
update_status                                        567     569      +2
sigterm                                                1       -      -1
.........
dhcprelay_signal_handler                               8       -      -8
nfs_strerror                                          60      49     -11
singlemount                                         4579    4564     -15
static.p                                              16       -     -16
svstatus                                              20       -     -20
dhcprelay_xid_list                                    32       -     -32
runsv_main                                          1785    1746     -39
static.buf                                            74      28     -46
svd                                                   56       -     -56
dhcprelay_main                                      1141    1080     -61
------------------------------------------------------------------------------
(add/remove: 0/20 grow/shrink: 2/10 up/down: 12/-386)        Total: -374 bytes

16 years agohdparm: simplify timing measurement (it wa the last last user
Denis Vlasenko [Fri, 28 Sep 2007 10:28:03 +0000 (10:28 -0000)]
hdparm: simplify timing measurement (it wa the last last user
of setitimer in the tree).

static.thousand                                       16       -     -16
read_big_block                                        81      46     -35
getitimer                                             41       -     -41
setitimer                                             47       -     -47
__GI_setitimer                                        47       -     -47
do_time                                              480     386     -94
------------------------------------------------------------------------------
(add/remove: 0/4 grow/shrink: 0/2 up/down: 0/-280)           Total: -280 bytes

M    miscutils/hdparm.c

16 years agohdparm: get rid of static variables
Denis Vlasenko [Fri, 28 Sep 2007 10:25:32 +0000 (10:25 -0000)]
hdparm: get rid of static variables

process_dev                                         5309    5311      +2
unregister_hwif                                        1       -      -1
...........
Xreadahead                                             4       -      -4
seek_to_zero                                          25      17      -8
hdparm_main                                         1242    1227     -15
do_time                                              547     480     -67
------------------------------------------------------------------------------
(add/remove: 0/83 grow/shrink: 1/3 up/down: 2/-248)          Total: -246 bytes

16 years agolibbb: make const_int_0 reside in rodata
Denis Vlasenko [Thu, 27 Sep 2007 20:49:57 +0000 (20:49 -0000)]
libbb: make const_int_0 reside in rodata

16 years agolibbb: align bb_common_bufsiz1 to "long long"
Denis Vlasenko [Thu, 27 Sep 2007 20:46:08 +0000 (20:46 -0000)]
libbb: align bb_common_bufsiz1 to "long long"

16 years agoless: make 'f' page forward
Denis Vlasenko [Thu, 27 Sep 2007 17:11:48 +0000 (17:11 -0000)]
less: make 'f' page forward

16 years agowget: -O FILE is allowed to overwrite existing file (compat)
Denis Vlasenko [Thu, 27 Sep 2007 15:07:23 +0000 (15:07 -0000)]
wget: -O FILE is allowed to overwrite existing file (compat)

16 years agozcip: fix unaligned trap on ARM
Denis Vlasenko [Thu, 27 Sep 2007 11:15:42 +0000 (11:15 -0000)]
zcip: fix unaligned trap on ARM

16 years agoremove stray '/*' within comment
Denis Vlasenko [Thu, 27 Sep 2007 10:26:59 +0000 (10:26 -0000)]
remove stray '/*' within comment