diff options
author | Rob Landley | 2005-12-13 08:21:33 +0000 |
---|---|---|
committer | Rob Landley | 2005-12-13 08:21:33 +0000 |
commit | 70f7ef7be385f782e57106df523f1c5e16fbdc47 (patch) | |
tree | e560de3934ac70ae03dd77695450cff91bdfce0b /util-linux/Config.in | |
parent | 3858bf18d5d3b6a858ca46acb6c8628715520d1c (diff) | |
download | busybox-70f7ef7be385f782e57106df523f1c5e16fbdc47.zip busybox-70f7ef7be385f782e57106df523f1c5e16fbdc47.tar.gz |
Nothing to see here. Move along.
Not buying it, eh?
I know I said new features before 1.1, but, well... (I was weak!)
The config file and hotplug modes aren't implemented yet. Might take a stab at
those tomorrow. (I _should_ go back to focusing on the bug triage list.)
Diffstat (limited to 'util-linux/Config.in')
-rw-r--r-- | util-linux/Config.in | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/util-linux/Config.in b/util-linux/Config.in index fe71dac..5ab54e0 100644 --- a/util-linux/Config.in +++ b/util-linux/Config.in @@ -245,6 +245,36 @@ config CONFIG_LOSETUP file or block device, and to query the status of a loop device. This version does not currently support enabling data encryption. +config CONFIG_MDEV + bool "mdev" + default n + help + mdev is a mini-udev implementation: call it with -s to populate + /dev from /sys, then "echo /sbin/mdev > /sys/kernel/hotplug" to + have it handle hotplug events afterwards. Device names are taken + from sysfs. + +config CONFIG_FEATURE_MDEV_CONFIG + bool " Support /etc/mdev.conf" + default n + depends on CONFIG_MDEV + help + The mdev config file contains lines that look like: + + hd[a-z][0-9]* 0:3 660 + + That's device name (with regex match), uid:gid, and permissions. + + Optionally, that can be followed (on the same line) by an asterisk + and a command line to run after creating the corresponding device(s), + ala: + + hdc root:cdrom 660 *ln -s hdc cdrom + + Config file parsing stops on the first matching line. If no config + entry is matched, devices are created with default 0:0 660. (Make + the last line match .* to override this.) + config CONFIG_MKSWAP bool "mkswap" default n |