From patchwork Sat Feb 25 19:48:49 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mathieu Poirier X-Patchwork-Id: 6924 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 78FC02450A for ; Sat, 25 Feb 2012 19:49:09 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id 3C0A2A183AD for ; Sat, 25 Feb 2012 19:49:09 +0000 (UTC) Received: by iabz7 with SMTP id z7so6145251iab.11 for ; Sat, 25 Feb 2012 11:49:08 -0800 (PST) Received: from mr.google.com ([10.42.131.129]) by 10.42.131.129 with SMTP id z1mr7821508ics.53.1330199348585 (num_hops = 1); Sat, 25 Feb 2012 11:49:08 -0800 (PST) Received: by 10.42.131.129 with SMTP id z1mr6272780ics.53.1330199348517; Sat, 25 Feb 2012 11:49:08 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.11.10 with SMTP id r10csp37182ibr; Sat, 25 Feb 2012 11:49:07 -0800 (PST) Received: by 10.68.213.4 with SMTP id no4mr3740753pbc.47.1330199347136; Sat, 25 Feb 2012 11:49:07 -0800 (PST) Received: from mail-pw0-f50.google.com (mail-pw0-f50.google.com [209.85.160.50]) by mx.google.com with ESMTPS id j8si11065508pbk.98.2012.02.25.11.49.06 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 25 Feb 2012 11:49:07 -0800 (PST) Received-SPF: neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of mathieu.poirier@linaro.org) client-ip=209.85.160.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of mathieu.poirier@linaro.org) smtp.mail=mathieu.poirier@linaro.org Received: by pbcwy7 with SMTP id wy7so187593pbc.37 for ; Sat, 25 Feb 2012 11:49:06 -0800 (PST) Received-SPF: pass (google.com: domain of mathieu.poirier@linaro.org designates 10.68.74.97 as permitted sender) client-ip=10.68.74.97; Received: from mr.google.com ([10.68.74.97]) by 10.68.74.97 with SMTP id s1mr22604561pbv.46.1330199346908 (num_hops = 1); Sat, 25 Feb 2012 11:49:06 -0800 (PST) MIME-Version: 1.0 Received: by 10.68.74.97 with SMTP id s1mr18941045pbv.46.1330199346707; Sat, 25 Feb 2012 11:49:06 -0800 (PST) Received: from localhost.localdomain (S0106002369de4dac.cg.shawcable.net. [70.73.24.112]) by mx.google.com with ESMTPS id q1sm7891147pbq.68.2012.02.25.11.49.05 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 25 Feb 2012 11:49:05 -0800 (PST) From: mathieu.poirier@linaro.org To: linus.walleij@linaro.org Cc: linux-arm-kernel@infradead.org, arnd@arndb.de, patches@linaro.org Subject: [PATCH 1/6] arm: U8500 depends on MMU Date: Sat, 25 Feb 2012 12:48:49 -0700 Message-Id: <1330199334-5133-1-git-send-email-mathieu.poirier@linaro.org> X-Mailer: git-send-email 1.7.5.4 X-Gm-Message-State: ALoCoQnLyFPwviSoJhAnBlsSverwk/wnMG1j1KMQAZ75BlbLVkaJmjBYTORF51LSqEU1nD+4643c From: Arnd Bergmann There is no way to build U8500 kernels without an MMU at this point because of dependencies on MMU-only functions. As long as nobody is interested in fixing this, let's just disable the platforms for nommu kernels. Signed-off-by: Arnd Bergmann Signed-off-by: Mathieu Poirier --- arch/arm/Kconfig | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index a48aecc..f489e52 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -901,6 +901,7 @@ config ARCH_U300 config ARCH_U8500 bool "ST-Ericsson U8500 Series" + depends on MMU select CPU_V7 select ARM_AMBA select GENERIC_CLOCKEVENTS