2013-03-07 11:45:24 +01:00
|
|
|
config BR2_PACKAGE_GPTFDISK
|
|
|
|
bool "gptfdisk"
|
2011-07-29 08:49:48 +02:00
|
|
|
depends on BR2_LARGEFILE
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
|
depends on BR2_USE_WCHAR # util-linux
|
2013-03-07 11:45:25 +01:00
|
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
|
|
|
select BR2_PACKAGE_GPTFDISK_GDISK if !BR2_PACKAGE_GPTFDISK_SGDISK
|
2011-02-27 16:19:45 +01:00
|
|
|
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/
|
|
|
|
|
2013-03-07 11:45:24 +01:00
|
|
|
config BR2_PACKAGE_GPTFDISK_GDISK
|
2011-02-27 16:19:45 +01:00
|
|
|
bool "interactive gdisk"
|
2013-03-07 11:45:24 +01:00
|
|
|
depends on BR2_PACKAGE_GPTFDISK
|
2011-02-27 16:19:45 +01:00
|
|
|
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.
|
|
|
|
|
2013-03-07 11:45:24 +01:00
|
|
|
config BR2_PACKAGE_GPTFDISK_SGDISK
|
2011-02-27 16:19:45 +01:00
|
|
|
bool "command line sgdisk"
|
2013-03-07 11:45:24 +01:00
|
|
|
depends on BR2_PACKAGE_GPTFDISK
|
2011-02-27 16:19:45 +01:00
|
|
|
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.
|
|
|
|
|
2013-03-07 11:45:24 +01:00
|
|
|
comment "gptfdisk requires a toolchain with LARGEFILE/WCHAR/C++ support enabled"
|
2011-07-29 08:49:48 +02:00
|
|
|
depends on !(BR2_LARGEFILE && BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR)
|