diff options
author | Malte Starostik <m-starostik@versanet.de> | 2011-02-27 16:19:45 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-04-25 23:28:59 +0200 |
commit | 7d5a772f63660b84c7c755518fd91cb1a7c7d0c7 (patch) | |
tree | 83a941e304e206e83954beb33cccaf42d2dc0582 /package/gdisk/Config.in | |
parent | 648d33d6142329151ca1ef61b50649477574c684 (diff) | |
download | buildroot-novena-7d5a772f63660b84c7c755518fd91cb1a7c7d0c7.tar.gz buildroot-novena-7d5a772f63660b84c7c755518fd91cb1a7c7d0c7.zip |
New package: gdisk
This includes two separately configurable parition manipulation
utilities: gdsik and sgdisk are to GPT disks what fdisk and sfdisk are
in MBR land.
[Peter: patch source, fix typos, fix partial build, pass correct flags]
Signed-off-by: Malte Starostik <m-starostik@versanet.de>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/gdisk/Config.in')
-rw-r--r-- | package/gdisk/Config.in | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/package/gdisk/Config.in b/package/gdisk/Config.in new file mode 100644 index 000000000..0daec5d5a --- /dev/null +++ b/package/gdisk/Config.in @@ -0,0 +1,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 |