platform/upstream/kmod.git
2011-12-16 Lucas De Marchitools: fix kmod-modprobe -R trying to insert module
2011-12-16 Lucas De MarchiTODO: add new tasks and notes to future development
2011-12-15 Ulisses Furquimtrivial: fix typo causing an infinite loop
2011-12-15 Lucas De Marchikmod 1 v1
2011-12-15 Lucas De MarchiAdd libkmod files to EXTRA_DIST
2011-12-15 Lucas De MarchiRemove module from hash when it's gone
2011-12-15 Lucas De MarchiImprove test of double references
2011-12-15 Lucas De MarchiAdd safety NULL checks in exported functions
2011-12-15 Lucas De MarchiFix changing hash key after module is inserted in hash
2011-12-15 Lucas De MarchiFix docs with wrong function names
2011-12-15 Lucas De MarchiAdd comment in public header about flags not implemented
2011-12-15 Lucas De MarchiRename symbol group
2011-12-15 Lucas De MarchiRemove flags that likely will not be used
2011-12-15 Lucas De MarchiTODO: rephrase some tasks
2011-12-15 Lucas De MarchiAdd file with details regarding coding style
2011-12-14 Lucas De MarchiFix format of log message
2011-12-14 Lucas De Marchikmod_config: parse kernel command line for options...
2011-12-14 Luis Felipe... Do not depend on AM_SILENT_RULES if it is not available.
2011-12-14 Lucas De Marchikmod_module: use 'modname/aliasname' as key for hash
2011-12-14 Lucas De MarchiUse malloc + memset instead of calloc
2011-12-14 Lucas De MarchiTODO: update tasks
2011-12-14 Lucas De Marchikmod_module: move function to the right section
2011-12-14 Lucas De Marchikmod_module: fix log message upon module removal
2011-12-14 Lucas De Marchikmod_module: add missing documentation
2011-12-14 Lucas De MarchiSimplify kmod_load_resources()
2011-12-14 Lucas De MarchiLog and break early if index is already open
2011-12-14 Lucas De MarchiUpdate documentation
2011-12-13 Lucas De MarchiRemove function kmod_resolve_alias_options()
2011-12-13 Lucas De Marchikmod_module: make get_options() search for alias names too
2011-12-13 Lucas De MarchiCreate module by alias name where appropriate
2011-12-13 Lucas De MarchiAdd private function kmod_module_new_from_alias()
2011-12-13 Lucas De Marchikmod_module: use pointer instead of vector for its...
2011-12-13 Lucas De MarchiReturn early on lookup error
2011-12-13 Lucas De MarchiUse alias_normalize() instead of modname_normalize()
2011-12-13 Lucas De MarchiAdd helper alias_normalize()
2011-12-13 Lucas De MarchiFix check for NULL variable
2011-12-12 Lucas De MarchiFix "Dereference of null pointer" as reported by llvm
2011-12-12 Lucas De MarchiFix "Dead assignments" as reported by llvm
2011-12-12 Gustavo Sverzut... handle case where modname was not detected.
2011-12-12 Lucas De MarchiChange licenses
2011-12-12 Lucas De Marchibuild-sys: enable debug by default in autogen.sh
2011-12-12 Lucas De Marchibuild-sys: Set CFLAGS to "-O2 -Werror" in autogen.sh
2011-12-12 Lucas De MarchiRemove warnings: ‘err’ may be used uninitialized in...
2011-12-12 Lucas De Marchibuild-sys: add version map file to build dependencies
2011-12-12 Lucas De MarchiRename project from libkmod to kmod
2011-12-12 Lucas De MarchiDo not use config if it's not needed/wanted
2011-12-12 Lucas De MarchiUse true/false for bool return
2011-12-12 Lucas De MarchiDirectories inside config directories are not supported
2011-12-12 Lucas De MarchiDo not stat() dir twice
2011-12-12 Lucas De MarchiFix leak of DIR
2011-12-12 Lucas De MarchiRemove leftover comment
2011-12-12 Lucas De MarchiRemove libkmod-loaded.c and re-order functions in libkm...
2011-12-12 Lucas De MarchiRename kmod_loaded_get_list() to kmod_module_new_from_l...
2011-12-12 Lucas De Marchibuild-sys: replace spaces with tabs
2011-12-12 Lucas De Marchibuild-sys: move remaining warning flags to configure
2011-12-12 Lucas De Marchibuild-sys: remove duplicated warning flags
2011-12-12 Lucas De Marchicoding style: be consistent with blank lines
2011-12-12 Lucas De Marchicoding style: fix lines over 80 chars
2011-12-12 Lucas De MarchiMerge branch 'use-mmap'
2011-12-11 Gustavo Sverzut... API-BREAK: kmod_new() takes a second parameter for...
2011-12-11 Gustavo Sverzut... tools: add modprobe
2011-12-11 Gustavo Sverzut... add lsmod, insmod and rmmod tools.
2011-12-11 Gustavo Sverzut... add missing newline to log messages.
2011-12-11 Gustavo Sverzut... be less verbose on initstate for unexistent modules.
2011-12-11 Gustavo Sverzut... beef compile flags.
2011-12-11 Gustavo Sverzut... insmod: allows providing option to module.
2011-12-11 Gustavo Sverzut... always normalize user-given alias.
2011-12-11 Gustavo Sverzut... export module's options and commands.
2011-12-11 Gustavo Sverzut... parse_depline may be called from libkmod.c
2011-12-11 Gustavo Sverzut... fix string replace.
2011-12-11 Lucas De Marchikmod: Add documentation and format comments
2011-12-10 Gustavo Sverzut... update TODO
2011-12-10 Gustavo Sverzut... index: fix memleak for non-matchin aliases.
2011-12-10 Gustavo Sverzut... index-mm: allocate values inline into node, strings...
2011-12-10 Gustavo Sverzut... index: cleanup header, move as much as possible to...
2011-12-10 Gustavo Sverzut... index-mm: no need to allocate prefix.
2011-12-10 Gustavo Sverzut... index-mm: fix memory access.
2011-12-10 Gustavo Sverzut... test-lookup: allow loading resources for testing.
2011-12-10 Gustavo Sverzut... kmod_load_resources: use proper full path to binary...
2011-12-10 Gustavo Sverzut... kmod_lookup_alias_from_alias_bin: debug message for...
2011-12-10 Gustavo Sverzut... kmod_search_moddep: reorder to avoid creating path...
2011-12-10 Gustavo Sverzut... fix snprintf usage.
2011-12-09 Lucas De Marchikmod: Add documentation and format comments
2011-12-09 Lucas De MarchiUse alias/symbol index_mm if it's open
2011-12-09 Lucas De MarchiPass enum around instead of filename
2011-12-09 Lucas De MarchiUse index_mm if it's open for moddep search
2011-12-09 Lucas De MarchiDo not allocate path for known places an close resource...
2011-12-08 Lucas De MarchiLoad and unload resources
2011-12-08 Lucas De Marchiindex: mm: Add flag to open call to populate buffer
2011-12-08 Lucas De MarchiRefactor index file handling
2011-12-08 Gustavo Sverzut... remove useless look checking for duplicates
2011-12-08 Gustavo Sverzut... index: avoid strlen() whenever possible.
2011-12-08 Gustavo Sverzut... reduce calls to realloc() if size did not change.
2011-12-08 Gustavo Sverzut... index: improve buffer management and reduce mallocs.
2011-12-08 Gustavo Sverzut... fix path handling at dependencies parsing.
2011-12-08 Gustavo Sverzut... NULL safety in public places, allows disable logging.
2011-12-08 Gustavo Sverzut... log: give log function its data instead of kmod_ctx.
2011-12-08 Gustavo Sverzut... modname_normalize: fix const and buffer overflow.
2011-12-08 Lucas De Marchikmod_loaded: document exported function
2011-12-08 Lucas De Marchikmod_list: document exported functions
next