2016-12-26 16:22:34 +01:00
|
|
|
comment "gptfdisk needs a toolchain w/ C++"
|
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP
|
2013-03-07 11:45:30 +01:00
|
|
|
|
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_INSTALL_LIBSTDCPP
|
2013-03-07 11:45:25 +01:00
|
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
2013-03-07 11:45:29 +01:00
|
|
|
select BR2_PACKAGE_GPTFDISK_GDISK if \
|
2014-10-27 09:25:28 +01:00
|
|
|
!(BR2_PACKAGE_GPTFDISK_SGDISK || BR2_PACKAGE_GPTFDISK_CGDISK)
|
2011-02-27 16:19:45 +01:00
|
|
|
help
|
|
|
|
GPT fdisk (consisting of the gdisk and sgdisk programs) is a
|
2017-07-31 15:53:43 +02:00
|
|
|
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.
|
2011-02-27 16:19:45 +01:00
|
|
|
|
|
|
|
http://www.rodsbooks.com/gdisk/
|
|
|
|
|
2013-03-07 11:45:30 +01:00
|
|
|
if BR2_PACKAGE_GPTFDISK
|
|
|
|
|
2013-03-07 11:45:24 +01:00
|
|
|
config BR2_PACKAGE_GPTFDISK_GDISK
|
2011-02-27 16:19:45 +01:00
|
|
|
bool "interactive gdisk"
|
|
|
|
help
|
|
|
|
Install the interactive GUID partition table (GPT) manipulator
|
2017-07-31 15:53:43 +02:00
|
|
|
/usr/sbin/gdisk which is modelled after and quite similar in
|
|
|
|
use to the traditional MBR based fdisk tool.
|
2011-02-27 16:19:45 +01:00
|
|
|
|
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"
|
|
|
|
select BR2_PACKAGE_POPT
|
|
|
|
help
|
2017-07-31 15:53:43 +02:00
|
|
|
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.
|
2011-02-27 16:19:45 +01:00
|
|
|
|
2013-03-07 11:45:29 +01:00
|
|
|
config BR2_PACKAGE_GPTFDISK_CGDISK
|
|
|
|
bool "ncurses cgdisk"
|
2016-12-26 16:22:34 +01:00
|
|
|
depends on BR2_USE_WCHAR # ncurses wchar
|
2017-04-22 19:17:54 +02:00
|
|
|
select BR2_PACKAGE_NCURSES
|
|
|
|
select BR2_PACKAGE_NCURSES_WCHAR # needed because of UTF-16
|
2013-03-07 11:45:29 +01:00
|
|
|
help
|
|
|
|
Install the ncurses-based GUID partition table (GPT)
|
|
|
|
manipulator /usr/sbin/cgdisk.
|
|
|
|
|
2013-03-07 11:45:30 +01:00
|
|
|
endif
|