diff options
Diffstat (limited to 'miscutils/Config.in')
-rw-r--r-- | miscutils/Config.in | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/miscutils/Config.in b/miscutils/Config.in index f70c12228..86be4d3a8 100644 --- a/miscutils/Config.in +++ b/miscutils/Config.in | |||
@@ -39,6 +39,56 @@ config CONFIG_DUTMP | |||
39 | help | 39 | help |
40 | Please submit a patch to add help text for this item. | 40 | Please submit a patch to add help text for this item. |
41 | 41 | ||
42 | config CONFIG_HDPARM | ||
43 | bool "hdparm" | ||
44 | default n | ||
45 | help | ||
46 | Get/Set hard drive parameters. Primarily intended for ATA | ||
47 | drives. Adds about 13k (or around 30k if you enable the | ||
48 | CONFIG_FEATURE_HDPARM_GET_IDENTITY option).... | ||
49 | |||
50 | config CONFIG_FEATURE_HDPARM_GET_IDENTITY | ||
51 | bool " Support obtaining detailed information directly from drives" | ||
52 | default y | ||
53 | depends on CONFIG_HDPARM | ||
54 | help | ||
55 | Enables the -I and -Istdin options to obtain detailed information | ||
56 | directly from drives about their capabilities and supported ATA | ||
57 | feature set. Enabling this option will add about 16k... | ||
58 | |||
59 | config CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF | ||
60 | bool " Register an IDE interface (DANGEROUS)" | ||
61 | default n | ||
62 | depends on CONFIG_HDPARM | ||
63 | help | ||
64 | Enables the 'hdparm -R' option to register an IDE interface. | ||
65 | This is dangerous stuff, so you should probably say N. | ||
66 | |||
67 | config CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF | ||
68 | bool " Un-register an IDE interface (DANGEROUS)" | ||
69 | default n | ||
70 | depends on CONFIG_HDPARM | ||
71 | help | ||
72 | Enables the 'hdparm -U' option to un-register an IDE interface. | ||
73 | This is dangerous stuff, so you should probably say N. | ||
74 | |||
75 | config CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET | ||
76 | bool " perform device reset (DANGEROUS)" | ||
77 | default n | ||
78 | depends on CONFIG_HDPARM | ||
79 | help | ||
80 | Enables the 'hdparm -w' option to perform a device reset. | ||
81 | This is dangerous stuff, so you should probably say N. | ||
82 | |||
83 | config CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF | ||
84 | bool " tristate device for hotswap (DANGEROUS)" | ||
85 | default n | ||
86 | depends on CONFIG_HDPARM | ||
87 | help | ||
88 | Enables the 'hdparm -x' option to tristate device for hotswap, | ||
89 | and the '-b' option to get/set bus state. This is dangerous | ||
90 | stuff, so you should probably say N. | ||
91 | |||
42 | config CONFIG_MAKEDEVS | 92 | config CONFIG_MAKEDEVS |
43 | bool "makedevs" | 93 | bool "makedevs" |
44 | default n | 94 | default n |