summaryrefslogtreecommitdiff
path: root/modutils/depmod.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* libbb: [x]fopen_for_{read,write} introduced and used.Denis Vlasenko2008-07-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (by Valdimir) function old new delta config_open2 - 41 +41 config_read 507 542 +35 find_pair 169 187 +18 fopen_for_write - 14 +14 fopen_for_read - 14 +14 find_main 406 418 +12 xfopen_for_write - 10 +10 xfopen_for_read - 10 +10 popstring 134 140 +6 parse_inittab 396 401 +5 next_token 923 928 +5 pack_gzip 1659 1661 +2 bb__parsespent 117 119 +2 fallbackSort 1719 1717 -2 evalvar 1376 1374 -2 qrealloc 36 33 -3 ... ... ... ... singlemount 4579 4569 -10 process_stdin 443 433 -10 patch_main 1111 1101 -10 ifupdown_main 2175 2165 -10 file_action_grep 90 80 -10 uuidcache_init 649 637 -12 hush_main 797 785 -12 read_config 230 217 -13 dpkg_main 3835 3820 -15 read_line_input 3134 3110 -24 sysctl_main 232 203 -29 config_open 40 10 -30 WARN_BAD_LINE 44 - -44 login_main 1714 1575 -139 ------------------------------------------------------------------------------ (add/remove: 5/1 grow/shrink: 8/74 up/down: 174/-737) Total: -563 bytes
* *: rename ATTRIBUTE_XXX to just XXX.Denis Vlasenko2008-07-051-2/+2
|
* *: introduce and use FAST_FUNC: regparm on i386, otherwise no-onDenis Vlasenko2008-06-271-1/+1
| | | | | | | text data bss dec hex filename 808035 611 6868 815514 c719a busybox_old 804472 611 6868 811951 c63af busybox_unstripped
* whitespace fixes. no code changesDenis Vlasenko2008-06-251-2/+2
|
* whitespace and comment fixes, no code changesDenis Vlasenko2008-06-161-1/+1
|
* - add FIXME. Perhaps somebody is interrested in looking into this one.Bernhard Reutner-Fischer2008-06-021-1/+1
| | | | | | | | | | | | | | | | | | | We would try to be clever and compare the *data instead of the *elt. Somethink like this might be of more general use: /* Unlink arbitrary element from the list that contains data */ void llist_unlink_data(llist_t **head, void *data) { llist_t *elt; for (elt = *head; elt; elt = elt->link) { if (elt->data == data) { llist_unlink(elt); return; } } }
* - add alias supportBernhard Reutner-Fischer2008-06-021-85/+105
|
* - revert revision 22183 since it breaks -b /abs /abs/path/to/mod.koBernhard Reutner-Fischer2008-06-021-4/+11
|
* - just chdir to the basedir (-30b).Bernhard Reutner-Fischer2008-06-021-11/+4
|
* - optional fancy pruning-mode for depmodBernhard Reutner-Fischer2008-06-021-21/+107
|
* - misc. improvements and shrinkageBernhard Reutner-Fischer2008-05-281-33/+33
|
* - the moddir_base is supposed to be omitted frmo the .dep fileBernhard Reutner-Fischer2008-05-281-28/+28
| | | | - other tweaks while at it
* - Add config option for DEFAULT_DEPMOD_FILE and DEFAULT_DEPMOD_FILE.Bernhard Reutner-Fischer2008-05-271-8/+2
| | | | No obj-code changes.
* - improve option-handling a bitBernhard Reutner-Fischer2008-05-261-22/+41
|
* - add basic option-handling (+220b). UntestedBernhard Reutner-Fischer2008-05-261-8/+42
|
* - use mmap instead of allocating hundreds of megabytes of RAM. +39bBernhard Reutner-Fischer2008-05-261-20/+43
|
* - remove some bloat -28b: now approx. 501bBernhard Reutner-Fischer2008-05-261-4/+5
|
* - switch to FILE base writer and remove now unneeded stuff. -50bBernhard Reutner-Fischer2008-05-261-10/+5
|
* - add simple first-draft unoptimized depmod just to proove Vladimir ↵Bernhard Reutner-Fischer2008-05-261-0/+116
Dronnikov wrong text data bss dec hex filename 569 0 0 569 239 modutils/depmod.o