2
1

Config.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. config BR2_PACKAGE_GDISK
  2. bool "gdisk"
  3. depends on BR2_LARGEFILE && BR2_INSTALL_LIBSTDCPP
  4. help
  5. GPT fdisk (consisting of the gdisk and sgdisk programs) is a
  6. text-mode partitioning tool that works on Globally Unique Identifier
  7. (GUID) Partition Table (GPT) disks, rather than on the more common
  8. (through 2010) Master Boot Record (MBR) partition tables.
  9. http://www.rodsbooks.com/gdisk/
  10. config BR2_PACKAGE_GDISK_GDISK
  11. bool "interactive gdisk"
  12. depends on BR2_PACKAGE_GDISK
  13. select BR2_PACKAGE_E2FSPROGS
  14. select BR2_PACKAGE_E2FSPROGS_LIBUUID
  15. help
  16. Install the interactive GUID partition table (GPT) manipulator
  17. /usr/sbin/gdisk which is modelled after and quite similar in use
  18. to the traditional MBR based fdisk tool.
  19. config BR2_PACKAGE_GDISK_SGDISK
  20. bool "command line sgdisk"
  21. depends on BR2_PACKAGE_GDISK
  22. select BR2_PACKAGE_E2FSPROGS
  23. select BR2_PACKAGE_E2FSPROGS_LIBUUID
  24. select BR2_PACKAGE_POPT
  25. help
  26. Install the command-line GUID partition table (GPT) manipulator
  27. /usr/sbin/sgdisk which is named after the traditional MBR based
  28. sfdisk tool albeit with an entirely different option syntax.
  29. comment "gdisk requires a toolchain with LARGEFILE and C++ support enabled"
  30. depends on !BR2_LARGEFILE || !BR2_INSTALL_LIBSTDCPP