summaryrefslogtreecommitdiffstats
path: root/rules/module-init-tools.in
blob: 765de6b9754ec160ad161226f30d4aa90d2649fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
## SECTION=shell_and_console
# module-init-tools configuration

menuconfig 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 (!BUSYBOX_INSMOD && !LIBKMOD_INSMOD) || ALLYES
	help
	  simple program to insert a module into the Linux Kernel

comment "BusyBox' insmod is selected!"
	depends on BUSYBOX_INSMOD

comment "kmod insmod is selected!"
	depends on LIBKMOD_INSMOD

config MODULE_INIT_TOOLS_RMMOD
	bool
	prompt "Install rmmod on target"
	depends on (!BUSYBOX_RMMOD && !LIBKMOD_RMMOD) || ALLYES
	help
	  simple program to remove a module from the Linux Kernel

comment "BusyBox' rmmod is selected!"
	depends on BUSYBOX_RMMOD

comment "kmod rmmod is selected!"
	depends on LIBKMOD_RMMOD

config MODULE_INIT_TOOLS_LSMOD
	bool
	prompt "Install lsmod on target"
	depends on (!BUSYBOX_LSMOD && !LIBKMOD_LSMOD) || ALLYES
	help
	  program to show the status of modules in the Linux Kernel

comment "BusyBox' lsmod is selected!"
	depends on BUSYBOX_LSMOD

comment "kmod lsmod is selected!"
	depends on LIBKMOD_LSMOD

config MODULE_INIT_TOOLS_MODINFO
	bool
	prompt "Install modinfo on target"
	depends on (!BUSYBOX_MODINFO && !LIBKMOD_MODINFO) || ALLYES
	help
	  program to show information about a Linux Kernel module

comment "BusyBox' modinfo is selected!"
	depends on BUSYBOX_MODINFO

comment "kmod modinfo is selected!"
	depends on LIBKMOD_MODINFO

config MODULE_INIT_TOOLS_MODPROBE
	bool
	prompt "Install modprobe on target"
	depends on (!BUSYBOX_MODPROBE && !LIBKMOD_MODPROBE) || ALLYES
	help
	  program to add and remove modules from the Linux Kernel

comment "BusyBox' modprobe is selected!"
	depends on BUSYBOX_MODPROBE

comment "kmod modprobe is selected!"
	depends on LIBKMOD_MODPROBE

config MODULE_INIT_TOOLS_DEPMOD
	bool
	prompt "Install depmod on target"
	depends on (!BUSYBOX_DEPMOD && !LIBKMOD_DEPMOD) || ALLYES
	help
	  program to generate modules.dep and map files

endif