aboutsummaryrefslogtreecommitdiff
path: root/TODO
AgeCommit message (Collapse)Author
2018-04-05libkmod-module: check for NULL before accessing pointersLuca Bruno
This introduces a few missing NULL-checks in public functions, and align their docstrings with real behavior by getting rid of copy-paste mistakes. Signed-off-by: Luca Bruno <luca.bruno@coreos.com>
2015-03-01Update TODOLucas De Marchi
2015-02-19Update TODOLucas De Marchi
2015-01-26Update TODOLucas De Marchi
2015-01-14Update TODOLucas De Marchi
2014-09-23Update TODOLucas De Marchi
2013-07-17README: Move items from TODOLucas De Marchi
Put the differences between kmod and module-init-tools in the README file so it's more visible.
2013-04-30TODO: Add some entriesLucas De Marchi
2013-04-23libkmod-index: Return early if readroot failedLucas De Marchi
2013-04-09TODO: update and reorderLucas De Marchi
2012-11-08TODO: remove completed actionLucas De Marchi
2012-11-05TODO: update file with tasksLucas De Marchi
2012-10-17rmmod: Deprecate --wait optionLucas De Marchi
Remove --wait from usage() and give a message + sleep(10) if user is in fact using it.
2012-08-30TODO: deprecate use of rmmod -wLucas De Marchi
As discussed with Rusty Russel, it would be nice to remove the related code from kernel. Deprecate its use on kmod, so people know they shouldn't be using it.
2012-06-11TODO: update tasksLucas De Marchi
- Remove dependency loop with install commands, since it's done - Add reasoning behind API refactor
2012-06-05testsuite: create initstate file upon fake init_module()Lucas De Marchi
2012-04-16TODO: add item to implement actions in kmodLucas De Marchi
2012-02-22TODO: update and organize itemsLucas De Marchi
2012-02-16kmod-module: lookup: search modules.builtin file tooLucas De Marchi
Search modules.builtin file before saying the module was not found. Note: these "modules" should not appear as dependencies of other modules (in modules.dep) even if they appear in modinfo. This fixes the return code of modprobe with builtin modules. Also fixes a small coding style issue in module_is_inkernel().
2012-02-16testsuite: add .path member to test structDave Reisner
This allows us to prepend an arbitrary item to the PATH environment variable, meaning we can favor the binaries we just built, rather than relying on those in the filesystem.
2012-02-14TODO: add tasks and bug fixesLucas De Marchi
2012-02-08testsuite: add tests to modprobe --show-dependsLucas De Marchi
test 1 - check whether modprobe outputs the right thing when using --show-depends is used with already loaded modules. test 2 - check whether modprobe outputs the right thing when using --show-depends with modules not loaded yet
2012-02-07libkmod-module: probe: Fix ignore-loaded flag not being appliedLucas De Marchi
2012-02-06Add WARNING file for test dir and improve testsuite READMELucas De Marchi
2012-02-03TODO: add task to write testsuite/READMELucas De Marchi
2012-01-31Prepare for API bumpLucas De Marchi
2012-01-26testsuite: trap calls to delete_module() including simple testLucas De Marchi
2012-01-20TODO: system() should not be used inside a libraryLucas De Marchi
2012-01-16libkmod: dump index filesLucas De Marchi
Provide a function to dump the index files to a certain fd. It could be more optimized (particularly the functions to dump the index that were copied and pasted from m-i-t), but it seems like the only user of it is 'modprobe -c', used for debugging purposes. So, keep it as is.
2012-01-13modprobe: dump configurationLucas De Marchi
2012-01-12TODO: add code unification to list of tasksLucas De Marchi
2012-01-12modprobe: abort on dependency loop that cannot be brokenLucas De Marchi
2012-01-12TODO: update tasksLucas De Marchi
2012-01-12TODO: update differences with m-i-tLucas De Marchi
2012-01-11modprobe: show if module is in kernelLucas De Marchi
Now with './tools/modprobe --show-depends ahci' (ahci is builtin) we have the following output: $ ./tools/modprobe --show-depends ahci builtin ahci Just like modprobe from m-i-t. Previously we had: $ ./tools/modprobe --show-depends ahci FATAL: Module ahci not found.
2012-01-10modprobe: check for EPERM on insertionDave Reisner
Throw an appropriate error when an unprivileged user attempts to load a module.
2012-01-11config: deprecate 'include' and 'config' commandsLucas De Marchi
2012-01-10TODO: add task to modprobeLucas De Marchi
2012-01-10TODO: add tasks to modprobeLucas De Marchi
2012-01-01TODO: add task for providing man pageLucas De Marchi
2012-01-01Add call to check if resources are validLucas De Marchi
2012-01-01TODO: add list of things that are different on kmodLucas De Marchi
2011-12-31kmodprobe: post-remove module deps with 0 refcntDave Reisner
2011-12-27TODO: format and add taskLucas De Marchi
2011-12-27update TODOGustavo Sverzut Barbieri
depmod was done, and without map support
2011-12-26TODO: add task in modprobe's compatibilityLucas De Marchi
2011-12-24elf: implement kmod_module_get_dependency_symbols()Gustavo Sverzut Barbieri
Uses kmod_elf_get_dependency_symbols() that looks into ".symtab" for UNDEF symbols and matches the name from ".strtab" to "__versions" to get crc. Likely the public API should unify the symbol information getters and list release, they are almost the same.
2011-12-19Introduce kmod-modinfo.Gustavo Sverzut Barbieri
2011-12-19kmod-modprobe: implement --dump-modversionsGustavo Sverzut Barbieri
2011-12-19TODO: add idea about single file with all compressed modules.Gustavo Sverzut Barbieri