package/kexec-lite: introduce BR2_PACKAGE_KEXEC_LITE_ARCH_SUPPORTS

This will make it easier to handle packages that want to select
kexec-lite.

It also fixes the current inconsistency in the comment: it was not
displayed for powerpc64le.

Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
This commit is contained in:
Arnout Vandecappelle 2023-11-05 18:23:18 +01:00
parent 12e9643021
commit a97c1925b2

View File

@ -1,6 +1,11 @@
config BR2_PACKAGE_KEXEC_LITE_ARCH_SUPPORTS
bool
default y
depends on BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le
config BR2_PACKAGE_KEXEC_LITE
bool "kexec-lite"
depends on BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le
depends on BR2_PACKAGE_KEXEC_LITE_ARCH_SUPPORTS
depends on !BR2_STATIC_LIBS # dtc, elfutils
depends on BR2_USE_WCHAR # elfutils
depends on BR2_TOOLCHAIN_HAS_THREADS # elfutils
@ -18,6 +23,6 @@ config BR2_PACKAGE_KEXEC_LITE
https://github.com/antonblanchard/kexec-lite
comment "kexec-lite needs a toolchain w/ wchar, dynamic library, threads"
depends on BR2_powerpc || BR2_powerpc64
depends on BR2_PACKAGE_KEXEC_LITE_ARCH_SUPPORTS
depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR \
|| !BR2_TOOLCHAIN_HAS_THREADS