diff mbox

[v2] kexec: disable on avr32

Message ID 1352796707-9197-1-git-send-email-spdawson@gmail.com
State Accepted
Commit d7520d3564bdade478d2778a0d3a2cdcc8c1ac81
Headers show

Commit Message

Simon Dawson Nov. 13, 2012, 8:51 a.m. UTC
From: Simon Dawson <spdawson@gmail.com>

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>
---
 v2: As suggested by Thomas Petazzoni, don't use a comment to indicate that
     the package is not available on avr32

 package/kexec/Config.in |    1 +
 1 file changed, 1 insertion(+)

Comments

Arnout Vandecappelle Nov. 13, 2012, 8:22 p.m. UTC | #1
On 13/11/12 09:51, spdawson@gmail.com wrote:
> From: Simon Dawson<spdawson@gmail.com>
>
> 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>

  Regards,
  Arnout
Peter Korsgaard Nov. 14, 2012, 9:30 p.m. UTC | #2
>>>>> "spdawson" == spdawson  <spdawson@gmail.com> writes:

 spdawson> From: Simon Dawson <spdawson@gmail.com>

 spdawson> kexec does not support the avr32 architecture; this results
 spdawson> in autobuilder failures such as the following.

Committed, thanks.
diff mbox

Patch

diff --git a/package/kexec/Config.in b/package/kexec/Config.in
index 6f10b89..e59a07b 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.