aboutsummaryrefslogtreecommitdiff
path: root/util-linux/Config.in
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-01-04 11:56:06 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-01-04 11:56:06 +0000
commit4dcc2ddfccc364826fb6f485a28625df34464b46 (patch)
tree59fe6c1386b57674696abb53f26b138c9d26cd8f /util-linux/Config.in
parent2c24bb80f9f2e226f212c48d600bdf64956fc972 (diff)
downloadbusybox-w32-4dcc2ddfccc364826fb6f485a28625df34464b46.tar.gz
busybox-w32-4dcc2ddfccc364826fb6f485a28625df34464b46.tar.bz2
busybox-w32-4dcc2ddfccc364826fb6f485a28625df34464b46.zip
fdisk writable feature, allows compilation of a small fdisk that can
only read partition table, by Vladimir N. Oleynik
Diffstat (limited to 'util-linux/Config.in')
-rw-r--r--util-linux/Config.in18
1 files changed, 13 insertions, 5 deletions
diff --git a/util-linux/Config.in b/util-linux/Config.in
index 0c84c77af..2494e6e1c 100644
--- a/util-linux/Config.in
+++ b/util-linux/Config.in
@@ -44,38 +44,46 @@ config CONFIG_FDISK
44 help 44 help
45 Please submit a patch to add help text for this item. 45 Please submit a patch to add help text for this item.
46 46
47config CONFIG_FEATURE_FDISK_WRITABLE
48 bool " Write support"
49 default y
50 depends on CONFIG_FDISK
51 help
52 Allow changes to be written to disk, without this you
53 will only be able to view the partition table.
54
47config CONFIG_FEATURE_AIX_LABEL 55config CONFIG_FEATURE_AIX_LABEL
48 bool " Support AIX disklabels" 56 bool " Support AIX disklabels"
49 default n 57 default n
50 depends on CONFIG_FDISK 58 depends on CONFIG_FDISK && CONFIG_FEATURE_FDISK_WRITABLE
51 help 59 help
52 Please submit a patch to add help text for this item. 60 Please submit a patch to add help text for this item.
53 61
54config CONFIG_FEATURE_SGI_LABEL 62config CONFIG_FEATURE_SGI_LABEL
55 bool " Support SGI disklabels" 63 bool " Support SGI disklabels"
56 default n 64 default n
57 depends on CONFIG_FDISK 65 depends on CONFIG_FDISK && CONFIG_FEATURE_FDISK_WRITABLE
58 help 66 help
59 Please submit a patch to add help text for this item. 67 Please submit a patch to add help text for this item.
60 68
61config CONFIG_FEATURE_SUN_LABEL 69config CONFIG_FEATURE_SUN_LABEL
62 bool " Support SUN disklabels" 70 bool " Support SUN disklabels"
63 default n 71 default n
64 depends on CONFIG_FDISK 72 depends on CONFIG_FDISK && CONFIG_FEATURE_FDISK_WRITABLE
65 help 73 help
66 Please submit a patch to add help text for this item. 74 Please submit a patch to add help text for this item.
67 75
68config CONFIG_FEATURE_OSF_LABEL 76config CONFIG_FEATURE_OSF_LABEL
69 bool " Support BSD disklabels" 77 bool " Support BSD disklabels"
70 default n 78 default n
71 depends on CONFIG_FDISK 79 depends on CONFIG_FDISK && CONFIG_FEATURE_FDISK_WRITABLE
72 help 80 help
73 Please submit a patch to add help text for this item. 81 Please submit a patch to add help text for this item.
74 82
75config CONFIG_FEATURE_FDISK_ADVANCED 83config CONFIG_FEATURE_FDISK_ADVANCED
76 bool " Support expert mode" 84 bool " Support expert mode"
77 default n 85 default n
78 depends on CONFIG_FDISK 86 depends on CONFIG_FDISK && CONFIG_FEATURE_FDISK_WRITABLE
79 help 87 help
80 Please submit a patch to add help text for this item. 88 Please submit a patch to add help text for this item.
81 89