aboutsummaryrefslogtreecommitdiff
path: root/modutils (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* introduce and use bb_basename()Denis Vlasenko2007-06-302-21/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | function old new delta bb_basename - 26 +26 sv_main 1226 1225 -1 passwd_main 1985 1983 -2 showdirs 482 478 -4 sendCgi 1811 1807 -4 make_device 1354 1350 -4 handleIncoming 2443 2439 -4 func_name 82 78 -4 service_name 2292 2285 -7 main 909 901 -8 cmp_main 555 547 -8 test_main 434 422 -12 act 228 216 -12 find_pair 180 164 -16 rmmod_main 298 280 -18 find_pid_by_name 156 134 -22 modprobe_main 1606 1576 -30 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 0/16 up/down: 26/-156) Total: -130 bytes text data bss dec hex filename 734933 3028 14400 752361 b7ae9 busybox_old 734801 3028 14400 752229 b7a65 busybox_unstripped
* Consolidate ARRAY_SIZE macro; remove one unneeded global var (walter harms ↵Denis Vlasenko2007-06-251-2/+2
| | | | <wharms@bfs.de>)
* random shrinkage of statics, -60 bytes savedDenis Vlasenko2007-06-211-3/+5
|
* hush: fix read builtin to not read ahead past eol and to not useDenis Vlasenko2007-06-132-4/+5
| | | | | insane amounts of stack. Testsuite updated.
* A few more string duplicates found & eliminatedDenis Vlasenko2007-06-121-11/+6
| | | | | | | | # size busybox_old busybox_unstripped text data bss dec hex filename 679693 2700 15632 698025 aa6a9 busybox_old 679523 2700 15632 697855 aa5ff busybox_unstripped
* Audit bb_common_bufsiz usage, add script which looks for misuse.Denis Vlasenko2007-06-041-3/+5
| | | | | | tr: stop using globals needlessly. code: -103 bytes
* delete tons of extra #includesDenis Vlasenko2007-05-311-1/+0
|
* usage.c: remove reference to busybox.hDenis Vlasenko2007-05-264-4/+4
| | | | | *: s/include "busybox.h"/include "libbb.h"
* style fixes, no code changesDenis Vlasenko2007-04-161-1/+2
|
* style fixes. No code changesDenis Vlasenko2007-04-122-7/+7
|
* style fixes, no code changes.Denis Vlasenko2007-04-112-29/+33
|
* style fixes. No code changes.Denis Vlasenko2007-04-102-11/+11
|
* find: fix handling of -pruneDenis Vlasenko2007-04-081-2/+2
| | | | recursive_actions: uppercase flag constants
* - fold recurse, depthFirst and dereference params into one param flags.Bernhard Reutner-Fischer2007-03-291-2/+2
| | | | Minor size improvement (-16b for size, -24b according to bloat-o-meter).
* /etc/modules.conf is a 2.6.x file while /etc/modules.conf and ↵Mike Frysinger2007-02-081-4/+8
| | | | /etc/conf.modules are 2.4.x and older files
* touchup style; no functional changesMike Frysinger2007-02-081-23/+12
|
* suppress warnings about easch <applet>_main() havingDenis Vlasenko2007-02-034-0/+6
| | | | no preceding prototype
* preparatory patch for -Wwrite-strings #6Denis Vlasenko2007-01-291-25/+22
|
* preparatory patch for -Wwrite-strings #4Denis Vlasenko2007-01-291-1/+1
|
* preparatory patch for -Wwrite-strings #2Denis Vlasenko2007-01-292-5/+7
|
* as Peter Kjellerstedt points out, bool/prompt/depend need to be split up in ↵Mike Frysinger2007-01-241-4/+6
| | | | order to achieve the desired behavior (default to Y without a prompt); revert previous to commits to this file
* change "bool ... if OPT" to more common "depend ... OPT"Mike Frysinger2007-01-241-4/+4
|
* combine bool;prompt to just boolMike Frysinger2007-01-241-4/+2
|
* cleanups: unnecessary casts, unified const_1, eliminate cross-.c fileDenis Vlasenko2007-01-221-2/+0
| | | | | prototypes (heresy!), add spaces in places like "flags&NETSTAT_CONNECTED", removed unused #defines, #ifdef -> #if, use uint32_t for ipv4 addrs.
* stop using __u32 etc. uint32_t is there for a reasonDenis Vlasenko2006-12-311-9/+6
|
* next bunch of fixes for bugs found by randconfigDenis Vlasenko2006-12-301-3/+4
|
* done a dozen of randconfig test. guess what? ALL failed...Denis Vlasenko2006-12-301-0/+1
| | | | these are resulting fixes
* style fixesDenis Vlasenko2006-12-262-2/+2
| | | | last xcalloc replaced by xzalloc
* remove casts from xmalloc()Denis Vlasenko2006-12-191-1/+1
|
* style cleanup: return(a) -> return a, part 2Denis Vlasenko2006-11-271-3/+3
|
* style cleanup: return(a) -> return a, part 1Denis Vlasenko2006-11-273-10/+9
|
* insmod: set STRVERSIONLEN = 64, convert #ifdef CONFIG to #if ENABLE,Denis Vlasenko2006-11-211-115/+114
| | | | stop using CONFIG_ prefix for non-config-system variables
* insmod_ng_main: -80 bytes. Stopp mmapping, use xmalloc_open_read_close().Denis Vlasenko2006-11-211-22/+26
|
* rodata cleanup. "unable to" == "cannot". -300 bytesDenis Vlasenko2006-11-181-2/+2
|
* recursive_action: add depth paramDenis Vlasenko2006-10-271-3/+3
| | | | chmod: match coreutils versus following links
* modprobe: reformat to match bbox styleDenis Vlasenko2006-10-271-291/+291
|
* last nail into error_msg() (de)capitalizationDenis Vlasenko2006-10-271-2/+2
|
* silly size savings and capitalization fixesDenis Vlasenko2006-10-261-2/+2
|
* use skip_whitespace where appropriateDenis Vlasenko2006-10-251-8/+4
|
* message string changes, mostly for consistency, also -32 bytes in .rodataDenis Vlasenko2006-10-202-4/+4
|
* modprobe: fix for 2.4 kernels - byDenis Vlasenko2006-10-141-1/+1
| | | | Yann E. MORIN <yann.morin.1998@anciens.enib.fr>
* add open_read_close() and similar stuffDenis Vlasenko2006-10-143-36/+7
|
* style fixesDenis Vlasenko2006-10-121-280/+271
|
* fixes from Vladimir Dronnikov <dronnikov@gmail.ru>Denis Vlasenko2006-10-101-1/+1
|
* attempt to regularize atoi mess.Denis Vlasenko2006-10-081-1/+1
|
* dnsd fix; option_mask32 added. dnsd needs more love.Denis Vlasenko2006-10-061-9/+8
|
* build system overhaulDenis Vlasenko2006-10-054-86/+42
|
* getopt_ulflags -> getopt32.Denis Vlasenko2006-10-033-4/+4
| | | | | | | | It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit.
* lsmod: repair indentationDenis Vlasenko2006-09-301-31/+31
| | | | httpd: ifdef CONFIG -> if ENABLE (shorted, catched typos)
* Yet another silly little byte saving. couldn't -> cannotDenis Vlasenko2006-09-291-1/+1
|