blob: 6b180c2005acecfa852722caf62d9b82cb8ab8d1 [file] [log] [blame]
Lucas De Marchibf89f762011-12-01 18:23:47 -02001
2Features:
3
4* config: configs that do not need to be matched by fnmatch() could be using a
5 vector instead of a list. This way we could search in it by calling
6 bsearch().
7
Lucas De Marchic3325cf2011-12-02 14:49:57 -02008* index: drop the "open(), seek(), read()" implementation and use another one
9 with mmap(). When lookup() is called and the file is not mmaped, mmap it.
10
Gustavo Sverzut Barbieric3d0a5f2011-12-11 19:36:18 -020011* create test-mock library to be LD_PRELOAD'ed before running the binaries
Gustavo Sverzut Barbieri7fe602b2011-12-10 13:32:27 -020012 so we're able to create unit tests
Gustavo Sverzut Barbieric3d0a5f2011-12-11 19:36:18 -020013
14* provide ELF manipulation to implement modinfo
15
Lucas De Marchid68ea2a2011-12-14 14:02:28 -020016* Add lookup for install commands in kmod_module_new_from_lookup()
17
18* Add lookup for remove commands
19
20* Add functions to dump configuration
21
22* Add functions list all modules known by modules.dep
23
24* Implement soft dependencies
25
Lucas De Marchid68ea2a2011-12-14 14:02:28 -020026* provide 1:1 compatibility with module-init-tools's modprobe
27 - show modversions (needs elf manipulation)
28 - dump configuration
Lucas De Marchic4b4ac92011-12-15 12:14:43 -020029 - use softdep
30 - install and remove commands may exist when there's no module with that
31 name. Properly handle this case
Lucas De Marchid68ea2a2011-12-14 14:02:28 -020032
Lucas De Marchi113c66a2011-12-14 15:21:10 -020033Known Bugs:
Lucas De Marchid68ea2a2011-12-14 14:02:28 -020034