Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-25 | whitespace fixes. no code changes | Denis Vlasenko | |
2008-06-16 | whitespace and comment fixes, no code changes | 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-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 | - Add config option for DEFAULT_DEPMOD_FILE and DEFAULT_DEPMOD_FILE. | Bernhard Reutner-Fischer | |
No obj-code changes. | |||
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 |