1config BR2_PACKAGE_KEXEC_LITE 2 bool "kexec-lite" 3 depends on BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le 4 depends on !BR2_STATIC_LIBS # dtc, elfutils 5 depends on BR2_USE_WCHAR # elfutils 6 depends on BR2_TOOLCHAIN_HAS_THREADS # elfutils 7 depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC # elfutils 8 select BR2_PACKAGE_ELFUTILS 9 select BR2_PACKAGE_DTC 10 select BR2_PACKAGE_DTC_PROGRAMS 11 help 12 Kexec is a user space utiltity for loading another kernel 13 and asking the currently running kernel to do something with 14 it. 15 16 This package is a tiny implementation of the kexec userspace 17 components, for devicetree-based platforms. 18 19 https://github.com/antonblanchard/kexec-lite 20 21comment "kexec-lite needs a uClibc or glibc toolchain w/ wchar, dynamic library, threads" 22 depends on BR2_powerpc || BR2_powerpc64 23 depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR \ 24 || !BR2_TOOLCHAIN_HAS_THREADS \ 25 || !(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC) 26