diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-03-07 10:45:29 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-03-10 22:31:17 +0100 |
commit | 20a60679c463ef1ec83a870358a2114c1b9babd6 (patch) | |
tree | 7a8ae287a004f2181cfa2579e1743233601c8fd4 | |
parent | 6c83b40a1b2d1eb46de50d49572db13a4ce59f03 (diff) | |
download | buildroot-novena-20a60679c463ef1ec83a870358a2114c1b9babd6.tar.gz buildroot-novena-20a60679c463ef1ec83a870358a2114c1b9babd6.zip |
gptfdisk: add support for building and install cgdisk
In addition to the command-line tool gdisk and the interactive tool
sgdisk, gptfdisk also provides a ncurses based tool, cgdisk. This
commit adds support for building and installing this tool.
[Peter: Update gdisk autoselection logic to consider cgdisk as well]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/gptfdisk/Config.in | 11 | ||||
-rw-r--r-- | package/gptfdisk/gptfdisk.mk | 4 |
2 files changed, 14 insertions, 1 deletions
diff --git a/package/gptfdisk/Config.in b/package/gptfdisk/Config.in index 0d7e35836..28b20df04 100644 --- a/package/gptfdisk/Config.in +++ b/package/gptfdisk/Config.in @@ -5,7 +5,8 @@ config BR2_PACKAGE_GPTFDISK depends on BR2_USE_WCHAR # util-linux select BR2_PACKAGE_UTIL_LINUX select BR2_PACKAGE_UTIL_LINUX_LIBUUID - select BR2_PACKAGE_GPTFDISK_GDISK if !BR2_PACKAGE_GPTFDISK_SGDISK + select BR2_PACKAGE_GPTFDISK_GDISK if \ + !(BR2_PACKAGE_GPTFDISK_SGDISK || BR2_PACKAGE_GPTFDISK_CGDISK) help GPT fdisk (consisting of the gdisk and sgdisk programs) is a text-mode partitioning tool that works on Globally Unique Identifier @@ -31,5 +32,13 @@ config BR2_PACKAGE_GPTFDISK_SGDISK /usr/sbin/sgdisk which is named after the traditional MBR based sfdisk tool albeit with an entirely different option syntax. +config BR2_PACKAGE_GPTFDISK_CGDISK + bool "ncurses cgdisk" + depends on BR2_PACKAGE_GPTFDISK + select BR2_PACKAGE_NCURSES + help + Install the ncurses-based GUID partition table (GPT) + manipulator /usr/sbin/cgdisk. + comment "gptfdisk requires a toolchain with LARGEFILE/WCHAR/C++ support enabled" depends on !(BR2_LARGEFILE && BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR) diff --git a/package/gptfdisk/gptfdisk.mk b/package/gptfdisk/gptfdisk.mk index 0478041d9..15ec842de 100644 --- a/package/gptfdisk/gptfdisk.mk +++ b/package/gptfdisk/gptfdisk.mk @@ -9,11 +9,15 @@ GPTFDISK_SITE = http://downloads.sourceforge.net/sourceforge/gptfdisk GPTFDISK_TARGETS_$(BR2_PACKAGE_GPTFDISK_GDISK) += gdisk GPTFDISK_TARGETS_$(BR2_PACKAGE_GPTFDISK_SGDISK) += sgdisk +GPTFDISK_TARGETS_$(BR2_PACKAGE_GPTFDISK_CGDISK) += cgdisk GPTFDISK_DEPENDENCIES += util-linux ifeq ($(BR2_PACKAGE_GPTFDISK_SGDISK),y) GPTFDISK_DEPENDENCIES += popt endif +ifeq ($(BR2_PACKAGE_GPTFDISK_CGDISK),y) + GPTFDISK_DEPENDENCIES += ncurses +endif ifeq ($(BR2_PACKAGE_ICU),y) GPTFDISK_DEPENDENCIES += icu |