Files
buildroot/package/sedutil/Config.in
Titouan Christophe 4daac8b973 toolchain/external: remove Sourcery Codebench MIPS toolchain
This toollchain is almost 10 years old now, and not maintained anymore.
Let's therefore remove it from Buildroot. Newer maintained external
toolchains for MIPS are still available from Bootlin

Signed-off-by: Titouan Christophe <titouan.christophe@mind.be>
[Romain: remove leftover link to binutils 2.27 bug 19908]
Signed-off-by: Romain Naour <romain.naour@smile.fr>
2025-09-10 23:02:29 +02:00

28 lines
990 B
Plaintext

config BR2_PACKAGE_SEDUTIL_ARCH_SUPPORTS
bool
# no big endian support
default y if BR2_arcle || BR2_arm || BR2_aarch64 \
|| BR2_i386 || BR2_microblazeel || BR2_mipsel \
|| BR2_mips64el || BR2_powerpc64le \
|| BR2_sh4 || BR2_sh4a || BR2_x86_64 \
|| BR2_XTENSA_LITTLE_ENDIAN
config BR2_PACKAGE_SEDUTIL
bool "sedutil"
depends on BR2_PACKAGE_SEDUTIL_ARCH_SUPPORTS
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12 # linux/nvme.h
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
depends on BR2_INSTALL_LIBSTDCPP
help
The Drive Trust Alliance Self Encrypting Drive Utility,
allowing configuration the SEDs that comply with the
TCG OPAL 2.00 standard.
https://github.com/Drive-Trust-Alliance/sedutil
comment "sedutil needs a toolchain w/ C++, gcc >= 4.8, headers >= 3.12"
depends on BR2_PACKAGE_SEDUTIL_ARCH_SUPPORTS
depends on !BR2_INSTALL_LIBSTDCPP || \
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || \
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12