2011-12-02 03:23:47 +07:00
|
|
|
Features:
|
2011-12-16 11:02:58 +07:00
|
|
|
=========
|
2011-12-02 03:23:47 +07:00
|
|
|
|
|
|
|
* config: configs that do not need to be matched by fnmatch() could be using a
|
|
|
|
vector instead of a list. This way we could search in it by calling
|
|
|
|
bsearch().
|
|
|
|
|
2011-12-02 23:49:57 +07:00
|
|
|
* index: drop the "open(), seek(), read()" implementation and use another one
|
|
|
|
with mmap(). When lookup() is called and the file is not mmaped, mmap it.
|
|
|
|
|
2011-12-12 04:36:18 +07:00
|
|
|
* create test-mock library to be LD_PRELOAD'ed before running the binaries
|
2011-12-10 22:32:27 +07:00
|
|
|
so we're able to create unit tests
|
2011-12-12 04:36:18 +07:00
|
|
|
|
|
|
|
* provide ELF manipulation to implement modinfo
|
|
|
|
|
2011-12-14 23:02:28 +07:00
|
|
|
* Add functions to dump configuration
|
|
|
|
|
|
|
|
* Add functions list all modules known by modules.dep
|
|
|
|
|
|
|
|
* provide 1:1 compatibility with module-init-tools's modprobe
|
2011-12-12 04:36:18 +07:00
|
|
|
- show modversions (needs elf manipulation)
|
2011-12-14 23:02:28 +07:00
|
|
|
- dump configuration
|
2011-12-15 21:14:43 +07:00
|
|
|
- install and remove commands may exist when there's no module with that
|
|
|
|
name. Properly handle this case
|
2011-12-12 19:48:02 +07:00
|
|
|
|
2011-12-15 00:21:10 +07:00
|
|
|
Known Bugs:
|
2011-12-16 11:02:58 +07:00
|
|
|
===========
|
|
|
|
|
|
|
|
|
|
|
|
Notes for future development:
|
|
|
|
=============================
|
|
|
|
|
|
|
|
* Kill support for /etc/modprobe.conf
|
|
|
|
|
|
|
|
* Kill support for map files
|
|
|
|
|
|
|
|
Things to be added removed in kernel (check what is really needed):
|
|
|
|
===================================================================
|
|
|
|
|
|
|
|
* list of currently loaded modules
|
|
|
|
|
|
|
|
* module's size should be available under /sys
|
2011-12-14 23:02:28 +07:00
|
|
|
|
2011-12-16 11:02:58 +07:00
|
|
|
* kill /proc/modules ?
|