Config.in 1.1 KB

1234567891011121314151617181920212223242526272829
  1. config BR2_PACKAGE_SEDUTIL_ARCH_SUPPORTS
  2. bool
  3. # no big endian support
  4. default y if BR2_arcle || BR2_arm || BR2_aarch64 \
  5. || BR2_i386 || BR2_microblazeel || BR2_mipsel \
  6. || BR2_mips64el || BR2_nios2 || BR2_powerpc64le \
  7. || BR2_sh4 || BR2_sh4a || BR2_x86_64 \
  8. || BR2_XTENSA_LITTLE_ENDIAN
  9. config BR2_PACKAGE_SEDUTIL
  10. bool "sedutil"
  11. depends on BR2_PACKAGE_SEDUTIL_ARCH_SUPPORTS
  12. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12 # linux/nvme.h
  13. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
  14. depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS # 4.4.1 headers
  15. depends on BR2_INSTALL_LIBSTDCPP
  16. help
  17. The Drive Trust Alliance Self Encrypting Drive Utility,
  18. allowing configuration the SEDs that comply with the
  19. TCG OPAL 2.00 standard.
  20. https://github.com/Drive-Trust-Alliance/sedutil
  21. comment "sedutil needs a toolchain w/ C++, gcc >= 4.8, headers >= 3.12"
  22. depends on BR2_PACKAGE_SEDUTIL_ARCH_SUPPORTS
  23. depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS
  24. depends on !BR2_INSTALL_LIBSTDCPP || \
  25. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || \
  26. !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12