diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-10-31 23:13:09 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-11-02 16:49:04 +0100 |
commit | d36bc81bb4432f78ce5b332780df2a33e56a678c (patch) | |
tree | 2706b8a8b8ceb922bc6690373b85f41bf75ca51c /extra/Configs | |
parent | 04df27ce9847a2ce7d1104732cc497d4e6f02d89 (diff) |
stubs: handle linux module functions
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'extra/Configs')
-rw-r--r-- | extra/Configs/Config.in | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index a4398cb97..e44ac4631 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -930,9 +930,18 @@ config UCLIBC_GRP_BUFFER_SIZE comment "Support various families of functions" +config UCLIBC_LINUX_MODULE_26 + bool "Linux kernel module functions (2.6)" + default y + help + delete_module, init_module + are used in linux for loadable kernel modules. + + Say N if you do not use kernel modules. + config UCLIBC_LINUX_MODULE_24 - bool "Linux kernel module functions" - default !(TARGET_bfin) + bool "Linux kernel module functions (<2.6)" + depends on !TARGET_bfin && !TARGET_c6x help create_module, query_module are used in linux (prior to 2.6) for loadable kernel modules. |