diff options
author | Denys Vlasenko | 2016-11-22 23:14:24 +0100 |
---|---|---|
committer | Denys Vlasenko | 2016-11-22 23:14:24 +0100 |
commit | fb4da167114e96d7f20ef97474f976f8ffa604e7 (patch) | |
tree | 6f688202bc89ffa68b6679d1b252fd69b7471c94 /miscutils/eject.c | |
parent | 9f8eb1ee7620020e01b3596ac7259d51ebca7a7b (diff) | |
download | busybox-fb4da167114e96d7f20ef97474f976f8ffa604e7.zip busybox-fb4da167114e96d7f20ef97474f976f8ffa604e7.tar.gz |
Split miscutils/Config.src items into miscutils/*.c files
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/eject.c')
-rw-r--r-- | miscutils/eject.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/miscutils/eject.c b/miscutils/eject.c index 16ae250..d271066 100644 --- a/miscutils/eject.c +++ b/miscutils/eject.c @@ -12,6 +12,20 @@ * This is a simple hack of eject based on something Erik posted in #uclibc. * Most of the dirty work blatantly ripped off from cat.c =) */ +//config:config EJECT +//config: bool "eject" +//config: default y +//config: select PLATFORM_LINUX +//config: help +//config: Used to eject cdroms. (defaults to /dev/cdrom) +//config: +//config:config FEATURE_EJECT_SCSI +//config: bool "SCSI support" +//config: default y +//config: depends on EJECT +//config: help +//config: Add the -s option to eject, this allows to eject SCSI-Devices and +//config: usb-storage devices. //usage:#define eject_trivial_usage //usage: "[-t] [-T] [DEVICE]" |