summaryrefslogtreecommitdiff
path: root/package/gdisk/Config.in
blob: 0daec5d5a63d5413af64bd4e0dd8662ca6ab314c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
config BR2_PACKAGE_GDISK
	bool "gdisk"
	depends on BR2_LARGEFILE && BR2_INSTALL_LIBSTDCPP
	help
	  GPT fdisk (consisting of the gdisk and sgdisk programs) is a
	  text-mode partitioning tool that works on Globally Unique Identifier
	  (GUID) Partition Table (GPT) disks, rather than on the more common
	  (through 2010) Master Boot Record (MBR) partition tables.

	  http://www.rodsbooks.com/gdisk/

config BR2_PACKAGE_GDISK_GDISK
	bool "interactive gdisk"
	depends on BR2_PACKAGE_GDISK
	select BR2_PACKAGE_E2FSPROGS
	select BR2_PACKAGE_E2FSPROGS_LIBUUID
	help
	  Install the interactive GUID partition table (GPT) manipulator
	  /usr/sbin/gdisk which is modelled after and quite similar in use
	  to the traditional MBR based fdisk tool.

config BR2_PACKAGE_GDISK_SGDISK
	bool "command line sgdisk"
	depends on BR2_PACKAGE_GDISK
	select BR2_PACKAGE_E2FSPROGS
	select BR2_PACKAGE_E2FSPROGS_LIBUUID
	select BR2_PACKAGE_POPT
	help
	  Install the command-line GUID partition table (GPT) manipulator
	  /usr/sbin/sgdisk which is named after the traditional MBR based
	  sfdisk tool albeit with an entirely different option syntax.

comment "gdisk requires a toolchain with LARGEFILE and C++ support enabled"
	depends on !BR2_LARGEFILE || !BR2_INSTALL_LIBSTDCPP