From patchwork Fri Nov 16 08:13:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 199508 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 1D81D2C0094 for ; Fri, 16 Nov 2012 19:13:31 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 72DCDA014C; Fri, 16 Nov 2012 08:13:29 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id M0QLZz5GJ-iF; Fri, 16 Nov 2012 08:13:27 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id E2D14A0182; Fri, 16 Nov 2012 08:13:26 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 7ADF28F74A for ; Fri, 16 Nov 2012 08:13:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1094E8D0BA for ; Fri, 16 Nov 2012 08:13:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4iR7YHnTg8Nx for ; Fri, 16 Nov 2012 08:13:22 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f171.google.com (mail-we0-f171.google.com [74.125.82.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id 6AA928D084 for ; Fri, 16 Nov 2012 08:13:22 +0000 (UTC) Received: by mail-we0-f171.google.com with SMTP id s43so1110532wey.16 for ; Fri, 16 Nov 2012 00:13:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:x-mailer; bh=zpUqiDhbi6mj+7XN01hahxMRuCz6Im7aK9x5jHqUF0Y=; b=Gf3gT7kAGZJQ9qS5ISW4yFYGSJ1zRuvD6J1+sQDLpLH44V3R0yLCaC/xLMw8p5CFNF mWtD4iJ2ltjmvleVW1MrakD/iEbUUxPNZOeZtfD2axVTYXI8Lo82Z3ZJofdbGrgMpx0k 6aEAlzwcC+esU3qFu9cuxZu4Hx7LZNer2SHYx5Xbps/3tDyoSke9GFDeeLU3xgWPuieS hydIIyN7yLByYrLfFfRkiw2Ukd2NiCHpMCQJIYrN9VMfAkPArN6UgSmcLy2pVMecK6WO E43CDvJQd7jUwDscvwvS89OyDQUxtec4zcML4Rv2huvJfh8+pk+uq3t0UpmAg/TPwPxi Ke0Q== Received: by 10.181.12.79 with SMTP id eo15mr3784907wid.14.1353053600653; Fri, 16 Nov 2012 00:13:20 -0800 (PST) Received: from localhost.localdomain ([212.183.128.10]) by mx.google.com with ESMTPS id d16sm14259270wiw.8.2012.11.16.00.13.18 (version=SSLv3 cipher=OTHER); Fri, 16 Nov 2012 00:13:19 -0800 (PST) From: spdawson@gmail.com To: buildroot@busybox.net Date: Fri, 16 Nov 2012 08:13:08 +0000 Message-Id: <1353053588-5156-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.7.10.4 Subject: [Buildroot] [PATCH] kexec: disable on unsupported architectures X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net From: Simon Dawson kexec only supports the following architectures. i?86 powerpc powerpc64 arm* s390x|s390 sh4|sh4a|sh3|sh mips* cris crisv32 ia64 x86_64 alpha The Buildroot kexec package is available when an unsupported target architecture is selected, leading to autobuild failures like the following. http://autobuild.buildroot.net/results/e706b08abb4fd1987fc4aa970d6be50fc92dc1fa/build-end.log This patch makes the kexec package available only for the supported architectures. Signed-off-by: Simon Dawson Acked-by: Thomas Petazzoni --- package/kexec/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/kexec/Config.in b/package/kexec/Config.in index e59a07b..fe50e06 100644 --- a/package/kexec/Config.in +++ b/package/kexec/Config.in @@ -1,6 +1,6 @@ config BR2_PACKAGE_KEXEC bool "kexec" - depends on !BR2_avr32 + depends on BR2_i386 || BR2_x86_64 || BR2_arm || BR2_armeb || BR2_mips || BR2_mips64 || BR2_mipsel || BR2_mips64el || BR2_powerpc || BR2_sh4 || BR2_sh4a || BR2_sh3 help Kexec is a user space utiltity for loading another kernel and asking the currently running kernel to do something with it.