aboutsummaryrefslogtreecommitdiff
path: root/miscutils/hdparm.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/hdparm.c')
-rw-r--r--miscutils/hdparm.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/miscutils/hdparm.c b/miscutils/hdparm.c
index af7fb99e9..0bbe6ca10 100644
--- a/miscutils/hdparm.c
+++ b/miscutils/hdparm.c
@@ -16,58 +16,58 @@
16//config: default y 16//config: default y
17//config: select PLATFORM_LINUX 17//config: select PLATFORM_LINUX
18//config: help 18//config: help
19//config: Get/Set hard drive parameters. Primarily intended for ATA 19//config: Get/Set hard drive parameters. Primarily intended for ATA
20//config: drives. 20//config: drives.
21//config: 21//config:
22//config:config FEATURE_HDPARM_GET_IDENTITY 22//config:config FEATURE_HDPARM_GET_IDENTITY
23//config: bool "Support obtaining detailed information directly from drives" 23//config: bool "Support obtaining detailed information directly from drives"
24//config: default y 24//config: default y
25//config: depends on HDPARM 25//config: depends on HDPARM
26//config: help 26//config: help
27//config: Enable the -I and -i options to obtain detailed information 27//config: Enable the -I and -i options to obtain detailed information
28//config: directly from drives about their capabilities and supported ATA 28//config: directly from drives about their capabilities and supported ATA
29//config: feature set. If no device name is specified, hdparm will read 29//config: feature set. If no device name is specified, hdparm will read
30//config: identify data from stdin. Enabling this option will add about 16k... 30//config: identify data from stdin. Enabling this option will add about 16k...
31//config: 31//config:
32//config:config FEATURE_HDPARM_HDIO_SCAN_HWIF 32//config:config FEATURE_HDPARM_HDIO_SCAN_HWIF
33//config: bool "Register an IDE interface (DANGEROUS)" 33//config: bool "Register an IDE interface (DANGEROUS)"
34//config: default y 34//config: default y
35//config: depends on HDPARM 35//config: depends on HDPARM
36//config: help 36//config: help
37//config: Enable the 'hdparm -R' option to register an IDE interface. 37//config: Enable the 'hdparm -R' option to register an IDE interface.
38//config: This is dangerous stuff, so you should probably say N. 38//config: This is dangerous stuff, so you should probably say N.
39//config: 39//config:
40//config:config FEATURE_HDPARM_HDIO_UNREGISTER_HWIF 40//config:config FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
41//config: bool "Un-register an IDE interface (DANGEROUS)" 41//config: bool "Un-register an IDE interface (DANGEROUS)"
42//config: default y 42//config: default y
43//config: depends on HDPARM 43//config: depends on HDPARM
44//config: help 44//config: help
45//config: Enable the 'hdparm -U' option to un-register an IDE interface. 45//config: Enable the 'hdparm -U' option to un-register an IDE interface.
46//config: This is dangerous stuff, so you should probably say N. 46//config: This is dangerous stuff, so you should probably say N.
47//config: 47//config:
48//config:config FEATURE_HDPARM_HDIO_DRIVE_RESET 48//config:config FEATURE_HDPARM_HDIO_DRIVE_RESET
49//config: bool "Perform device reset (DANGEROUS)" 49//config: bool "Perform device reset (DANGEROUS)"
50//config: default y 50//config: default y
51//config: depends on HDPARM 51//config: depends on HDPARM
52//config: help 52//config: help
53//config: Enable the 'hdparm -w' option to perform a device reset. 53//config: Enable the 'hdparm -w' option to perform a device reset.
54//config: This is dangerous stuff, so you should probably say N. 54//config: This is dangerous stuff, so you should probably say N.
55//config: 55//config:
56//config:config FEATURE_HDPARM_HDIO_TRISTATE_HWIF 56//config:config FEATURE_HDPARM_HDIO_TRISTATE_HWIF
57//config: bool "Tristate device for hotswap (DANGEROUS)" 57//config: bool "Tristate device for hotswap (DANGEROUS)"
58//config: default y 58//config: default y
59//config: depends on HDPARM 59//config: depends on HDPARM
60//config: help 60//config: help
61//config: Enable the 'hdparm -x' option to tristate device for hotswap, 61//config: Enable the 'hdparm -x' option to tristate device for hotswap,
62//config: and the '-b' option to get/set bus state. This is dangerous 62//config: and the '-b' option to get/set bus state. This is dangerous
63//config: stuff, so you should probably say N. 63//config: stuff, so you should probably say N.
64//config: 64//config:
65//config:config FEATURE_HDPARM_HDIO_GETSET_DMA 65//config:config FEATURE_HDPARM_HDIO_GETSET_DMA
66//config: bool "Get/set using_dma flag" 66//config: bool "Get/set using_dma flag"
67//config: default y 67//config: default y
68//config: depends on HDPARM 68//config: depends on HDPARM
69//config: help 69//config: help
70//config: Enable the 'hdparm -d' option to get/set using_dma flag. 70//config: Enable the 'hdparm -d' option to get/set using_dma flag.
71 71
72//applet:IF_HDPARM(APPLET(hdparm, BB_DIR_SBIN, BB_SUID_DROP)) 72//applet:IF_HDPARM(APPLET(hdparm, BB_DIR_SBIN, BB_SUID_DROP))
73 73