aboutsummaryrefslogtreecommitdiff
path: root/miscutils/eject.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/eject.c')
-rw-r--r--miscutils/eject.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/miscutils/eject.c b/miscutils/eject.c
index 16ae250ff..667932f6c 100644
--- a/miscutils/eject.c
+++ b/miscutils/eject.c
@@ -12,6 +12,24 @@
12 * This is a simple hack of eject based on something Erik posted in #uclibc. 12 * This is a simple hack of eject based on something Erik posted in #uclibc.
13 * Most of the dirty work blatantly ripped off from cat.c =) 13 * Most of the dirty work blatantly ripped off from cat.c =)
14 */ 14 */
15//config:config EJECT
16//config: bool "eject"
17//config: default y
18//config: select PLATFORM_LINUX
19//config: help
20//config: Used to eject cdroms. (defaults to /dev/cdrom)
21//config:
22//config:config FEATURE_EJECT_SCSI
23//config: bool "SCSI support"
24//config: default y
25//config: depends on EJECT
26//config: help
27//config: Add the -s option to eject, this allows to eject SCSI-Devices and
28//config: usb-storage devices.
29
30//applet:IF_EJECT(APPLET(eject, BB_DIR_USR_BIN, BB_SUID_DROP))
31
32//kbuild:lib-$(CONFIG_EJECT) += eject.o
15 33
16//usage:#define eject_trivial_usage 34//usage:#define eject_trivial_usage
17//usage: "[-t] [-T] [DEVICE]" 35//usage: "[-t] [-T] [DEVICE]"