From: Simon Dawson Date: Mon, 12 Nov 2012 22:51:47 +0000 (+0000) Subject: kexec: disable on avr32 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d7520d3564bdade478d2778a0d3a2cdcc8c1ac81;p=buildroot.git kexec: disable on avr32 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 Acked-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Peter Korsgaard --- diff --git a/package/kexec/Config.in b/package/kexec/Config.in index 6f10b89d53..e59a07b9d5 100644 --- a/package/kexec/Config.in +++ b/package/kexec/Config.in @@ -1,5 +1,6 @@ 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.