micropython: replace local fix with upstream one
[buildroot-gz.git] / package / kexec-lite / Config.in
blob97748dcce5e8408b89c8ae8cdc5280bff37c9ea0
1 config 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_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC # elfutils
7         select BR2_PACKAGE_ELFUTILS
8         select BR2_PACKAGE_DTC
9         select BR2_PACKAGE_DTC_PROGRAMS
10         help
11           Kexec is a user space utiltity for loading another kernel
12           and asking the currently running kernel to do something with it.
14           This package is a tiny implementation of the kexec userspace
15           components, for devicetree-based platforms.
17 comment "kexec-lite needs a uClibc or glibc toolchain w/ wchar, dynamic library"
18         depends on BR2_powerpc || BR2_powerpc64
19         depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR \
20                 || !(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC)