aboutsummaryrefslogtreecommitdiff
path: root/util-linux/mdev.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/mdev.c')
-rw-r--r--util-linux/mdev.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c
index a68e3f4e6..23b6f8285 100644
--- a/util-linux/mdev.c
+++ b/util-linux/mdev.c
@@ -13,58 +13,58 @@
13//config: default y 13//config: default y
14//config: select PLATFORM_LINUX 14//config: select PLATFORM_LINUX
15//config: help 15//config: help
16//config: mdev is a mini-udev implementation for dynamically creating device 16//config: mdev is a mini-udev implementation for dynamically creating device
17//config: nodes in the /dev directory. 17//config: nodes in the /dev directory.
18//config: 18//config:
19//config: For more information, please see docs/mdev.txt 19//config: For more information, please see docs/mdev.txt
20//config: 20//config:
21//config:config FEATURE_MDEV_CONF 21//config:config FEATURE_MDEV_CONF
22//config: bool "Support /etc/mdev.conf" 22//config: bool "Support /etc/mdev.conf"
23//config: default y 23//config: default y
24//config: depends on MDEV 24//config: depends on MDEV
25//config: help 25//config: help
26//config: Add support for the mdev config file to control ownership and 26//config: Add support for the mdev config file to control ownership and
27//config: permissions of the device nodes. 27//config: permissions of the device nodes.
28//config: 28//config:
29//config: For more information, please see docs/mdev.txt 29//config: For more information, please see docs/mdev.txt
30//config: 30//config:
31//config:config FEATURE_MDEV_RENAME 31//config:config FEATURE_MDEV_RENAME
32//config: bool "Support subdirs/symlinks" 32//config: bool "Support subdirs/symlinks"
33//config: default y 33//config: default y
34//config: depends on FEATURE_MDEV_CONF 34//config: depends on FEATURE_MDEV_CONF
35//config: help 35//config: help
36//config: Add support for renaming devices and creating symlinks. 36//config: Add support for renaming devices and creating symlinks.
37//config: 37//config:
38//config: For more information, please see docs/mdev.txt 38//config: For more information, please see docs/mdev.txt
39//config: 39//config:
40//config:config FEATURE_MDEV_RENAME_REGEXP 40//config:config FEATURE_MDEV_RENAME_REGEXP
41//config: bool "Support regular expressions substitutions when renaming device" 41//config: bool "Support regular expressions substitutions when renaming device"
42//config: default y 42//config: default y
43//config: depends on FEATURE_MDEV_RENAME 43//config: depends on FEATURE_MDEV_RENAME
44//config: help 44//config: help
45//config: Add support for regular expressions substitutions when renaming 45//config: Add support for regular expressions substitutions when renaming
46//config: device. 46//config: device.
47//config: 47//config:
48//config:config FEATURE_MDEV_EXEC 48//config:config FEATURE_MDEV_EXEC
49//config: bool "Support command execution at device addition/removal" 49//config: bool "Support command execution at device addition/removal"
50//config: default y 50//config: default y
51//config: depends on FEATURE_MDEV_CONF 51//config: depends on FEATURE_MDEV_CONF
52//config: help 52//config: help
53//config: This adds support for an optional field to /etc/mdev.conf for 53//config: This adds support for an optional field to /etc/mdev.conf for
54//config: executing commands when devices are created/removed. 54//config: executing commands when devices are created/removed.
55//config: 55//config:
56//config: For more information, please see docs/mdev.txt 56//config: For more information, please see docs/mdev.txt
57//config: 57//config:
58//config:config FEATURE_MDEV_LOAD_FIRMWARE 58//config:config FEATURE_MDEV_LOAD_FIRMWARE
59//config: bool "Support loading of firmwares" 59//config: bool "Support loading of firmwares"
60//config: default y 60//config: default y
61//config: depends on MDEV 61//config: depends on MDEV
62//config: help 62//config: help
63//config: Some devices need to load firmware before they can be usable. 63//config: Some devices need to load firmware before they can be usable.
64//config: 64//config:
65//config: These devices will request userspace look up the files in 65//config: These devices will request userspace look up the files in
66//config: /lib/firmware/ and if it exists, send it to the kernel for 66//config: /lib/firmware/ and if it exists, send it to the kernel for
67//config: loading into the hardware. 67//config: loading into the hardware.
68 68
69//applet:IF_MDEV(APPLET(mdev, BB_DIR_SBIN, BB_SUID_DROP)) 69//applet:IF_MDEV(APPLET(mdev, BB_DIR_SBIN, BB_SUID_DROP))
70 70