d7520d3564
kexec does not support the avr32 architecture; this results in autobuilder failures such as the following. http://autobuild.buildroot.net/results/5f5e91c3eb622bce88402a9afc8a3e7bd5007136/build-end.log This patch disables support for the kexec package on the avr32 architecture. Signed-off-by: Simon Dawson <spdawson@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
16 lines
419 B
Plaintext
16 lines
419 B
Plaintext
config BR2_PACKAGE_KEXEC
|
|
bool "kexec"
|
|
depends on !BR2_avr32
|
|
help
|
|
Kexec is a user space utiltity for loading another kernel
|
|
and asking the currently running kernel to do something with it.
|
|
|
|
http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
|
|
|
|
config BR2_PACKAGE_KEXEC_ZLIB
|
|
bool "zlib support"
|
|
depends on BR2_PACKAGE_KEXEC
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
Support for compressed kernel images
|