aboutsummaryrefslogtreecommitdiff
path: root/miscutils/Config.in
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-06-05 07:54:52 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-06-05 07:54:52 +0000
commit1349a74a046c6a7842fcf832f0963299813f6cfb (patch)
tree80a5447e076ed386b5d7ae7c92540ee87b39f008 /miscutils/Config.in
parentf8852a50956e0b50e7463a329d1471974b01f7f3 (diff)
downloadbusybox-w32-1349a74a046c6a7842fcf832f0963299813f6cfb.tar.gz
busybox-w32-1349a74a046c6a7842fcf832f0963299813f6cfb.tar.bz2
busybox-w32-1349a74a046c6a7842fcf832f0963299813f6cfb.zip
Device table support for makedevs, the previous behaviour can been
selected at configure time. git-svn-id: svn://busybox.net/trunk/busybox@8885 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'miscutils/Config.in')
-rw-r--r--miscutils/Config.in30
1 files changed, 26 insertions, 4 deletions
diff --git a/miscutils/Config.in b/miscutils/Config.in
index 7e18c16a0..320f4c2b4 100644
--- a/miscutils/Config.in
+++ b/miscutils/Config.in
@@ -143,10 +143,32 @@ config CONFIG_MAKEDEVS
143 bool "makedevs" 143 bool "makedevs"
144 default n 144 default n
145 help 145 help
146 'makedevs' is a utility used and created by the Linux Router Project. 146 'makedevs' is a utility used to create a batch of devices with
147 It creates a large number of device special files (/dev devices) 147 one command.
148 rather quickly, and can be considerably faster then running mknod a 148 .
149 zillion times. 149 There are two choices for command line behaviour, the interface
150 as used by LEAF/Linux Router Project, or a device table file.
151 .
152 'leaf' is traditionally what busybox follows, it allows multiple
153 devices of a particluar type to be created per command.
154 e.g. /dev/hda[0-9]
155 Device properties are passed as command line arguments.
156 .
157 'table' reads device properties from a file or stdin, allowing
158 a batch of unrelated devices to be makde with one command.
159 User/group names are allowed as an alternative to uid/gid.
160
161choice
162 prompt "Choose makedevs behaviour"
163 default CONFIG_FEATURE_MAKDEVS_TABLE
164
165config CONFIG_FEATURE_MAKEDEVS_LEAF
166 bool "leaf"
167
168config CONFIG_FEATURE_MAKEDEVS_TABLE
169 bool "table"
170
171endchoice
150 172
151config CONFIG_MT 173config CONFIG_MT
152 bool "mt" 174 bool "mt"