952d96d5ae
Drop the dependency as it isn't really nice that other packages need to select it, and kconf complains about it: warning: (BR2_PACKAGE_E2FSPROGS && BR2_PACKAGE_USBMOUNT) selects BR2_PACKAGE_BUSYBOX_SHOW_OTHERS which has unmet direct dependencies (!BR2_PACKAGE_BUSYBOX) Instead ensure that only the libraries are built by default, so busybox applets are still used unless explicitly configured. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
Plaintext
config BR2_PACKAGE_GDISK
|
|
bool "gdisk"
|
|
depends on BR2_LARGEFILE
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_USE_WCHAR # util-linux
|
|
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_UTIL_LINUX
|
|
select BR2_PACKAGE_UTIL_LINUX_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_UTIL_LINUX
|
|
select BR2_PACKAGE_UTIL_LINUX_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/WCHAR/C++ support enabled"
|
|
depends on !(BR2_LARGEFILE && BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR)
|