summaryrefslogtreecommitdiff
path: root/miscutils/Config.in
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2005-06-09 10:16:02 +0000
committerEric Andersen <andersen@codepoet.org>2005-06-09 10:16:02 +0000
commit3d9256225fe96b06f6e895f693c9b17519758b6c (patch)
treee2d8a335fd223f33b787679a2cdc608dee2b3cbe /miscutils/Config.in
parent06813d066b379ce74801a6c125213a03104fc4e1 (diff)
downloadbusybox-w32-3d9256225fe96b06f6e895f693c9b17519758b6c.tar.gz
busybox-w32-3d9256225fe96b06f6e895f693c9b17519758b6c.tar.bz2
busybox-w32-3d9256225fe96b06f6e895f693c9b17519758b6c.zip
About time to just apply this and kill off the patches
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 afa70a597..3b2f76c79 100644
--- a/miscutils/Config.in
+++ b/miscutils/Config.in
@@ -158,10 +158,32 @@ config CONFIG_MAKEDEVS
158 bool "makedevs" 158 bool "makedevs"
159 default n 159 default n
160 help 160 help
161 'makedevs' is a utility used and created by the Linux Router Project. 161 'makedevs' is a utility used to create a batch of devices with
162 It creates a large number of device special files (/dev devices) 162 one command.
163 rather quickly, and can be considerably faster then running mknod a 163 .
164 zillion times. 164 There are two choices for command line behaviour, the interface
165 as used by LEAF/Linux Router Project, or a device table file.
166 .
167 'leaf' is traditionally what busybox follows, it allows multiple
168 devices of a particluar type to be created per command.
169 e.g. /dev/hda[0-9]
170 Device properties are passed as command line arguments.
171 .
172 'table' reads device properties from a file or stdin, allowing
173 a batch of unrelated devices to be makde with one command.
174 User/group names are allowed as an alternative to uid/gid.
175
176choice
177 prompt "Choose makedevs behaviour"
178 default CONFIG_FEATURE_MAKDEVS_TABLE
179
180config CONFIG_FEATURE_MAKEDEVS_LEAF
181 bool "leaf"
182
183config CONFIG_FEATURE_MAKEDEVS_TABLE
184 bool "table"
185
186endchoice
165 187
166config CONFIG_MT 188config CONFIG_MT
167 bool "mt" 189 bool "mt"