Browse Source

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>
Arnout Vandecappelle 1 year ago
parent
commit
a97c1925b2
1 changed files with 7 additions and 2 deletions
  1. 7 2
      package/kexec-lite/Config.in

+ 7 - 2
package/kexec-lite/Config.in

@@ -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