Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-07-21 | - commentary typo fix | Bernhard Reutner-Fischer | |
2008-07-18 | - fix compilation for mips (Brian Daniels) | Bernhard Reutner-Fischer | |
2008-07-14 | insmod: users report that "|| defined(__powerpc__)" is missing | Denis Vlasenko | |
2008-07-12 | cpio: internalize archive_xread_all_eof. add a few paranoia checks | Denis Vlasenko | |
for corrupted cpio files. modprobe-small: remove stray include route: small code shrink function old new delta get_header_cpio 958 980 +22 archive_xread_all_eof 33 - -33 ------------------------------------------------------------------------------ (add/remove: 0/1 grow/shrink: 1/0 up/down: 22/-33) Total: -11 bytes | |||
2008-07-10 | fix typo in config help text | Denis Vlasenko | |
2008-07-10 | open_transformer: do not return fd, it does not change | Denis Vlasenko | |
libbb: adopt zipped read from modprobe-small function old new delta getoptscmd 708 713 +5 qgravechar 106 109 +3 huft_build 1165 1168 +3 tr_main 474 472 -2 open_transformer 91 89 -2 evalvar 1376 1374 -2 rpm_main 1691 1688 -3 qrealloc 36 33 -3 get_header_tar_lzma 55 52 -3 get_header_tar_gz 100 97 -3 get_header_tar_bz2 55 52 -3 get_header_tar_Z 89 86 -3 find_main 418 406 -12 prepare 302 283 -19 xmalloc_open_zipped_read_close 161 135 -26 xmalloc_read 248 199 -49 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 3/13 up/down: 11/-130) Total: -119 bytes | |||
2008-07-10 | modprobe-small: make depmod compatible with kernel build. | Denis Vlasenko | |
three last commits' sizes combined: function old new delta find_alias 218 612 +394 load_dep_bb - 310 +310 modprobe_main 289 380 +91 copy_stringbuf - 40 +40 process_module 637 655 +18 reset_stringbuf - 15 +15 parse_module 333 334 +1 append 84 85 +1 fileAction 832 819 -13 ------------------------------------------------------------------------------ (add/remove: 3/0 grow/shrink: 5/1 up/down: 870/-13) Total: 857 bytes | |||
2008-07-10 | modprobe-small: add depfile creation | Denis Vlasenko | |
2008-07-10 | modprobe-small: add depfile loading | Denis Vlasenko | |
2008-07-09 | - fix typo (Cristian Ionescu-Idbohrn) | Bernhard Reutner-Fischer | |
2008-07-09 | modprobe-small: preparatory patch for modprobe.dep.bb creation patches, | Denis Vlasenko | |
Code size impact ~0. | |||
2008-07-09 | libbb: use improved xmalloc_read() from modprobe-small | Denis Vlasenko | |
who: fix compile breakage on some systems modprobe-small: improve Config help text wording | |||
2008-07-08 | libbb: introduce and use xrealloc_vector | Denis Vlasenko | |
function old new delta xrealloc_vector_helper - 51 +51 create_list 84 99 +15 getopt_main 690 695 +5 passwd_main 1049 1053 +4 get_cached 85 89 +4 msh_main 1377 1380 +3 add_match 42 41 -1 read_lines 720 718 -2 grave 1068 1066 -2 fill_match_lines 143 141 -2 add_to_dirlist 67 65 -2 add_input_file 49 47 -2 act 252 250 -2 fsck_main 2252 2246 -6 man_main 765 757 -8 bb_internal_initgroups 228 220 -8 cut_main 1052 1041 -11 add_edge_to_node 55 43 -12 dpkg_main 3851 3835 -16 ifupdown_main 2202 2178 -24 sort_main 838 812 -26 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 5/15 up/down: 82/-124) Total: -42 bytes | |||
2008-07-06 | modprobe-small: match aliases with fnmatch(), making | Denis Vlasenko | |
shell pattern-specified alias names in module bodies work. | |||
2008-07-06 | modprobe-small: fix debug leftover | Denis Vlasenko | |
2008-07-05 | *: rename ATTRIBUTE_XXX to just XXX. | Denis Vlasenko | |
2008-07-04 | modutils: optional modutils-small by Vladimir Dronnikov. | Denis Vlasenko | |
15kb smaller than standard one. libbb/recursive_action.c: commented-out code for aborting the scan. | |||
2008-06-27 | *: introduce and use FAST_FUNC: regparm on i386, otherwise no-on | Denis Vlasenko | |
text data bss dec hex filename 808035 611 6868 815514 c719a busybox_old 804472 611 6868 811951 c63af busybox_unstripped | |||
2008-06-26 | style fixes, no code changes | Denis Vlasenko | |
2008-06-25 | whitespace fixes. no code changes | Denis Vlasenko | |
2008-06-24 | changes in comments only | Denis Vlasenko | |
2008-06-22 | mdoprobe: fix SEGV bug (by Vlad Dronnikov) | Denis Vlasenko | |
2008-06-16 | whitespace and comment fixes, no code changes | Denis Vlasenko | |
2008-06-05 | replace single-char printf's with bb_putchar | Denis Vlasenko | |
2008-06-04 | config help text: fix capitalization | Denis Vlasenko | |
2008-06-02 | - add FIXME. Perhaps somebody is interrested in looking into this one. | Bernhard Reutner-Fischer | |
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; } } } | |||
2008-06-02 | - add alias support | Bernhard Reutner-Fischer | |
2008-06-02 | - revert revision 22183 since it breaks -b /abs /abs/path/to/mod.ko | Bernhard Reutner-Fischer | |
2008-06-02 | - just chdir to the basedir (-30b). | Bernhard Reutner-Fischer | |
2008-06-02 | - optional fancy pruning-mode for depmod | Bernhard Reutner-Fischer | |
2008-06-02 | Reinstate CONFIG_CROSS_COMPILE_PREFIX | Denis Vlasenko | |
2008-05-31 | - shrink modprobe a little bit (~-40 bytes). ACKed by Yann. | Bernhard Reutner-Fischer | |
2008-05-28 | - fix overflow; improve documentation while at it | Bernhard Reutner-Fischer | |
2008-05-28 | - misc. improvements and shrinkage | Bernhard Reutner-Fischer | |
2008-05-28 | - the moddir_base is supposed to be omitted frmo the .dep file | Bernhard Reutner-Fischer | |
- other tweaks while at it | |||
2008-05-27 | - Spaghetti alert. Fix clash with ancient fwd-decl. This is an unfortunate | Bernhard Reutner-Fischer | |
combination of linux not providing a useable linux/module.h to userspace and mixing legacy-cruft with the current stuff in one insmod.c. | |||
2008-05-27 | - Add config option for DEFAULT_DEPMOD_FILE and DEFAULT_DEPMOD_FILE. | Bernhard Reutner-Fischer | |
No obj-code changes. | |||
2008-05-27 | - use (uC)libc functions. Saves a dozen bytes. | Bernhard Reutner-Fischer | |
2008-05-27 | vda, xmalloc'ing can use *alot* of RAM. Don't forget that there are | Bernhard Reutner-Fischer | |
modules out there that are half a megabyte! mmap()ing is way nicer for small mem boxes. | |||
2008-05-27 | - improve help-text | Bernhard Reutner-Fischer | |
2008-05-26 | - improve option-handling a bit | Bernhard Reutner-Fischer | |
2008-05-26 | - add basic option-handling (+220b). Untested | Bernhard Reutner-Fischer | |
2008-05-26 | - use mmap instead of allocating hundreds of megabytes of RAM. +39b | Bernhard Reutner-Fischer | |
2008-05-26 | - remove some bloat -28b: now approx. 501b | Bernhard Reutner-Fischer | |
2008-05-26 | - switch to FILE base writer and remove now unneeded stuff. -50b | Bernhard Reutner-Fischer | |
2008-05-26 | - add simple first-draft unoptimized depmod just to proove Vladimir ↵ | Bernhard Reutner-Fischer | |
Dronnikov wrong text data bss dec hex filename 569 0 0 569 239 modutils/depmod.o | |||
2008-05-22 | modprobe: fix for blacklisting | Denis Vlasenko | |
The patch makes the order of the alias/blacklist in modprobe.conf irrelevant (like module-utils' modprobe). In first patch the alias had to be defined before the blacklist which caused problems because the modprobe.conf file is read before /lib/modules/*/modules.alias. The attatched patch will mark the blacklisted module itself rather than trying to find the alias that points to the blacklisted module and test this flag later in the alias resolving stage. | |||
2008-05-18 | modprobe: optional "blacklist" command support (by Natanael Copa) | Denis Vlasenko | |
is_conf_command - 56 +56 include_conf 898 917 +19 check_dep 348 356 +8 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 2/0 up/down: 83/0) Total: 83 bytes | |||
2008-05-17 | insmod: build fix for microblaze (by Greg Steuck <greg AT nest.cx>) | Denis Vlasenko | |
2008-05-16 | - fix compilation on x86_64 | Bernhard Reutner-Fischer | |