summaryrefslogtreecommitdiffstats
path: root/rules/module-init-tools.in
diff options
context:
space:
mode:
authorHenning Steffen <h.steffen@pengutronix.de>2008-06-04 13:05:24 +0000
committerHenning Steffen <h.steffen@pengutronix.de>2008-06-04 13:05:24 +0000
commit17df9f2c792259af0074adf384745903c2b972a4 (patch)
tree9b233de816eef1a7b52ba2735962f7b559d66406 /rules/module-init-tools.in
parente77d46edfa498ea6b9e482eed2f9a4783fb8d66d (diff)
downloadptxdist-17df9f2c792259af0074adf384745903c2b972a4.tar.gz
ptxdist-17df9f2c792259af0074adf384745903c2b972a4.tar.xz
* change bool to tristate .in Files from H to M
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8312 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/module-init-tools.in')
-rw-r--r--rules/module-init-tools.in25
1 files changed, 14 insertions, 11 deletions
diff --git a/rules/module-init-tools.in b/rules/module-init-tools.in
index 14d912203..588ecdf74 100644
--- a/rules/module-init-tools.in
+++ b/rules/module-init-tools.in
@@ -1,62 +1,65 @@
# module-init-tools configuration
menuconfig MODULE_INIT_TOOLS
- bool "module-init-tools "
+ tristate
+ prompt "module-init-tools "
help
This package contains a set of programs for loading, inserting
and removing kernel modules for Linux (versions 2.5.48 and
above).
+if MODULE_INIT_TOOLS
+
config MODULE_INIT_TOOLS_INSMOD
bool
prompt "Install insmod on target"
- depends on MODULE_INIT_TOOLS && !BB_CONFIG_INSMOD
+ depends on !BB_CONFIG_INSMOD
help
simple program to insert a module into the Linux Kernel
comment "Busybox' insmod is selected!"
- depends on MODULE_INIT_TOOLS && BB_CONFIG_INSMOD
+ depends on BB_CONFIG_INSMOD
config MODULE_INIT_TOOLS_RMMOD
bool
prompt "Install rmmod on target"
- depends on MODULE_INIT_TOOLS && !BB_CONFIG_RMMOD
+ depends on !BB_CONFIG_RMMOD
help
simple program to remove a module from the Linux Kernel
comment "Busybox' rmmod is selected!"
- depends on MODULE_INIT_TOOLS && BB_CONFIG_RMMOD
+ depends on BB_CONFIG_RMMOD
config MODULE_INIT_TOOLS_LSMOD
bool
prompt "Install lsmod on target"
- depends on MODULE_INIT_TOOLS && !BB_CONFIG_LSMOD
+ depends on !BB_CONFIG_LSMOD
help
program to show the status of modules in the Linux Kernel
comment "Busybox' lsmod is selected!"
- depends on MODULE_INIT_TOOLS && BB_CONFIG_LSMOD
+ depends on BB_CONFIG_LSMOD
config MODULE_INIT_TOOLS_MODINFO
bool
prompt "Install modinfo on target"
- depends on MODULE_INIT_TOOLS
help
program to show information about a Linux Kernel module
config MODULE_INIT_TOOLS_MODPROBE
bool
prompt "Install modprobe on target"
- depends on MODULE_INIT_TOOLS && !BB_CONFIG_MODPROBE
+ depends on !BB_CONFIG_MODPROBE
help
program to add and remove modules from the Linux Kernel
comment "Busybox' modprobe is selected!"
- depends on MODULE_INIT_TOOLS && BB_CONFIG_MODPROBE
+ depends on BB_CONFIG_MODPROBE
config MODULE_INIT_TOOLS_DEPMOD
bool
prompt "Install depmod on target"
- depends on MODULE_INIT_TOOLS
help
program to generate modules.dep and map files
+
+endif