Config.in 1.3 KB

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