diff options
author | Denys Vlasenko | 2022-11-29 14:14:06 +0100 |
---|---|---|
committer | Denys Vlasenko | 2022-11-29 14:14:06 +0100 |
commit | 99476502f926fb6e5d61126c3b672f3f6f357d5d (patch) | |
tree | d8887c28536e559ed62c57f808f3407e439cf299 /modutils | |
parent | 77216c368f3ae65c3a9fc504d28d3fadd46d6d8d (diff) | |
download | busybox-99476502f926fb6e5d61126c3b672f3f6f357d5d.zip busybox-99476502f926fb6e5d61126c3b672f3f6f357d5d.tar.gz |
Remove "select PLATFORM_LINUX"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/Config.src | 1 | ||||
-rw-r--r-- | modutils/depmod.c | 1 | ||||
-rw-r--r-- | modutils/insmod.c | 1 | ||||
-rw-r--r-- | modutils/lsmod.c | 1 | ||||
-rw-r--r-- | modutils/modinfo.c | 1 | ||||
-rw-r--r-- | modutils/modprobe.c | 1 | ||||
-rw-r--r-- | modutils/rmmod.c | 1 |
7 files changed, 0 insertions, 7 deletions
diff --git a/modutils/Config.src b/modutils/Config.src index b8ba3b7..1882968 100644 --- a/modutils/Config.src +++ b/modutils/Config.src @@ -8,7 +8,6 @@ menu "Linux Module Utilities" config MODPROBE_SMALL bool "Simplified modutils" default y - select PLATFORM_LINUX help Build smaller (~1.5 kbytes), simplified module tools. diff --git a/modutils/depmod.c b/modutils/depmod.c index 9e39481..bb42bbe 100644 --- a/modutils/depmod.c +++ b/modutils/depmod.c @@ -10,7 +10,6 @@ //config:config DEPMOD //config: bool "depmod (27 kb)" //config: default y -//config: select PLATFORM_LINUX //config: help //config: depmod generates modules.dep (and potentially modules.alias //config: and modules.symbols) that contain dependency information diff --git a/modutils/insmod.c b/modutils/insmod.c index 85b46cd..8f7163e 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c @@ -9,7 +9,6 @@ //config:config INSMOD //config: bool "insmod (22 kb)" //config: default y -//config: select PLATFORM_LINUX //config: help //config: insmod is used to load specified modules in the running kernel. diff --git a/modutils/lsmod.c b/modutils/lsmod.c index 39dc8e6..2beb123 100644 --- a/modutils/lsmod.c +++ b/modutils/lsmod.c @@ -10,7 +10,6 @@ //config:config LSMOD //config: bool "lsmod (1.9 kb)" //config: default y -//config: select PLATFORM_LINUX //config: help //config: lsmod is used to display a list of loaded modules. //config: diff --git a/modutils/modinfo.c b/modutils/modinfo.c index 5d01179..0a86c32 100644 --- a/modutils/modinfo.c +++ b/modutils/modinfo.c @@ -8,7 +8,6 @@ //config:config MODINFO //config: bool "modinfo (24 kb)" //config: default y -//config: select PLATFORM_LINUX //config: help //config: Show information about a Linux Kernel module diff --git a/modutils/modprobe.c b/modutils/modprobe.c index 77c4bb7..235706f 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c @@ -10,7 +10,6 @@ //config:config MODPROBE //config: bool "modprobe (28 kb)" //config: default y -//config: select PLATFORM_LINUX //config: help //config: Handle the loading of modules, and their dependencies on a high //config: level. diff --git a/modutils/rmmod.c b/modutils/rmmod.c index 8d4639f..2b3c391 100644 --- a/modutils/rmmod.c +++ b/modutils/rmmod.c @@ -10,7 +10,6 @@ //config:config RMMOD //config: bool "rmmod (3.3 kb)" //config: default y -//config: select PLATFORM_LINUX //config: help //config: rmmod is used to unload specified modules from the kernel. |