diff options
author | Eric Andersen | 2005-06-09 10:16:02 +0000 |
---|---|---|
committer | Eric Andersen | 2005-06-09 10:16:02 +0000 |
commit | 3d9256225fe96b06f6e895f693c9b17519758b6c (patch) | |
tree | e2d8a335fd223f33b787679a2cdc608dee2b3cbe /miscutils/Config.in | |
parent | 06813d066b379ce74801a6c125213a03104fc4e1 (diff) | |
download | busybox-3d9256225fe96b06f6e895f693c9b17519758b6c.zip busybox-3d9256225fe96b06f6e895f693c9b17519758b6c.tar.gz |
About time to just apply this and kill off the patches
Diffstat (limited to 'miscutils/Config.in')
-rw-r--r-- | miscutils/Config.in | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/miscutils/Config.in b/miscutils/Config.in index afa70a5..3b2f76c 100644 --- a/miscutils/Config.in +++ b/miscutils/Config.in @@ -158,10 +158,32 @@ config CONFIG_MAKEDEVS bool "makedevs" default n help - 'makedevs' is a utility used and created by the Linux Router Project. - It creates a large number of device special files (/dev devices) - rather quickly, and can be considerably faster then running mknod a - zillion times. + 'makedevs' is a utility used to create a batch of devices with + one command. + . + There are two choices for command line behaviour, the interface + as used by LEAF/Linux Router Project, or a device table file. + . + 'leaf' is traditionally what busybox follows, it allows multiple + devices of a particluar type to be created per command. + e.g. /dev/hda[0-9] + Device properties are passed as command line arguments. + . + 'table' reads device properties from a file or stdin, allowing + a batch of unrelated devices to be makde with one command. + User/group names are allowed as an alternative to uid/gid. + +choice + prompt "Choose makedevs behaviour" + default CONFIG_FEATURE_MAKDEVS_TABLE + +config CONFIG_FEATURE_MAKEDEVS_LEAF + bool "leaf" + +config CONFIG_FEATURE_MAKEDEVS_TABLE + bool "table" + +endchoice config CONFIG_MT bool "mt" |