aboutsummaryrefslogtreecommitdiff
path: root/util-linux/fdisk.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/fdisk.c')
-rw-r--r--util-linux/fdisk.c42
1 files changed, 21 insertions, 21 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c
index c3784c28d..e00f85864 100644
--- a/util-linux/fdisk.c
+++ b/util-linux/fdisk.c
@@ -11,10 +11,10 @@
11//config: default y 11//config: default y
12//config: select PLATFORM_LINUX 12//config: select PLATFORM_LINUX
13//config: help 13//config: help
14//config: The fdisk utility is used to divide hard disks into one or more 14//config: The fdisk utility is used to divide hard disks into one or more
15//config: logical disks, which are generally called partitions. This utility 15//config: logical disks, which are generally called partitions. This utility
16//config: can be used to list and edit the set of partitions or BSD style 16//config: can be used to list and edit the set of partitions or BSD style
17//config: 'disk slices' that are defined on a hard drive. 17//config: 'disk slices' that are defined on a hard drive.
18//config: 18//config:
19//config:config FDISK_SUPPORT_LARGE_DISKS 19//config:config FDISK_SUPPORT_LARGE_DISKS
20//config: bool "Support over 4GB disks" 20//config: bool "Support over 4GB disks"
@@ -27,59 +27,59 @@
27//config: default y 27//config: default y
28//config: depends on FDISK 28//config: depends on FDISK
29//config: help 29//config: help
30//config: Enabling this option allows you to create or change a partition table 30//config: Enabling this option allows you to create or change a partition table
31//config: and write those changes out to disk. If you leave this option 31//config: and write those changes out to disk. If you leave this option
32//config: disabled, you will only be able to view the partition table. 32//config: disabled, you will only be able to view the partition table.
33//config: 33//config:
34//config:config FEATURE_AIX_LABEL 34//config:config FEATURE_AIX_LABEL
35//config: bool "Support AIX disklabels" 35//config: bool "Support AIX disklabels"
36//config: default n 36//config: default n
37//config: depends on FDISK && FEATURE_FDISK_WRITABLE 37//config: depends on FDISK && FEATURE_FDISK_WRITABLE
38//config: help 38//config: help
39//config: Enabling this option allows you to create or change AIX disklabels. 39//config: Enabling this option allows you to create or change AIX disklabels.
40//config: Most people can safely leave this option disabled. 40//config: Most people can safely leave this option disabled.
41//config: 41//config:
42//config:config FEATURE_SGI_LABEL 42//config:config FEATURE_SGI_LABEL
43//config: bool "Support SGI disklabels" 43//config: bool "Support SGI disklabels"
44//config: default n 44//config: default n
45//config: depends on FDISK && FEATURE_FDISK_WRITABLE 45//config: depends on FDISK && FEATURE_FDISK_WRITABLE
46//config: help 46//config: help
47//config: Enabling this option allows you to create or change SGI disklabels. 47//config: Enabling this option allows you to create or change SGI disklabels.
48//config: Most people can safely leave this option disabled. 48//config: Most people can safely leave this option disabled.
49//config: 49//config:
50//config:config FEATURE_SUN_LABEL 50//config:config FEATURE_SUN_LABEL
51//config: bool "Support SUN disklabels" 51//config: bool "Support SUN disklabels"
52//config: default n 52//config: default n
53//config: depends on FDISK && FEATURE_FDISK_WRITABLE 53//config: depends on FDISK && FEATURE_FDISK_WRITABLE
54//config: help 54//config: help
55//config: Enabling this option allows you to create or change SUN disklabels. 55//config: Enabling this option allows you to create or change SUN disklabels.
56//config: Most people can safely leave this option disabled. 56//config: Most people can safely leave this option disabled.
57//config: 57//config:
58//config:config FEATURE_OSF_LABEL 58//config:config FEATURE_OSF_LABEL
59//config: bool "Support BSD disklabels" 59//config: bool "Support BSD disklabels"
60//config: default n 60//config: default n
61//config: depends on FDISK && FEATURE_FDISK_WRITABLE 61//config: depends on FDISK && FEATURE_FDISK_WRITABLE
62//config: help 62//config: help
63//config: Enabling this option allows you to create or change BSD disklabels 63//config: Enabling this option allows you to create or change BSD disklabels
64//config: and define and edit BSD disk slices. 64//config: and define and edit BSD disk slices.
65//config: 65//config:
66//config:config FEATURE_GPT_LABEL 66//config:config FEATURE_GPT_LABEL
67//config: bool "Support GPT disklabels" 67//config: bool "Support GPT disklabels"
68//config: default n 68//config: default n
69//config: depends on FDISK && FEATURE_FDISK_WRITABLE 69//config: depends on FDISK && FEATURE_FDISK_WRITABLE
70//config: help 70//config: help
71//config: Enabling this option allows you to view GUID Partition Table 71//config: Enabling this option allows you to view GUID Partition Table
72//config: disklabels. 72//config: disklabels.
73//config: 73//config:
74//config:config FEATURE_FDISK_ADVANCED 74//config:config FEATURE_FDISK_ADVANCED
75//config: bool "Support expert mode" 75//config: bool "Support expert mode"
76//config: default y 76//config: default y
77//config: depends on FDISK && FEATURE_FDISK_WRITABLE 77//config: depends on FDISK && FEATURE_FDISK_WRITABLE
78//config: help 78//config: help
79//config: Enabling this option allows you to do terribly unsafe things like 79//config: Enabling this option allows you to do terribly unsafe things like
80//config: define arbitrary drive geometry, move the beginning of data in a 80//config: define arbitrary drive geometry, move the beginning of data in a
81//config: partition, and similarly evil things. Unless you have a very good 81//config: partition, and similarly evil things. Unless you have a very good
82//config: reason you would be wise to leave this disabled. 82//config: reason you would be wise to leave this disabled.
83 83
84//applet:IF_FDISK(APPLET(fdisk, BB_DIR_SBIN, BB_SUID_DROP)) 84//applet:IF_FDISK(APPLET(fdisk, BB_DIR_SBIN, BB_SUID_DROP))
85 85