From patchwork Sat Feb 25 19:55:02 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mathieu Poirier X-Patchwork-Id: 6930 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 65C1723EB0 for ; Sat, 25 Feb 2012 19:55:16 +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 1D6BAA183A7 for ; Sat, 25 Feb 2012 19:55:16 +0000 (UTC) Received: by iabz7 with SMTP id z7so6151572iab.11 for ; Sat, 25 Feb 2012 11:55:15 -0800 (PST) Received: from mr.google.com ([10.50.87.201]) by 10.50.87.201 with SMTP id ba9mr9915212igb.30.1330199715636 (num_hops = 1); Sat, 25 Feb 2012 11:55:15 -0800 (PST) Received: by 10.50.87.201 with SMTP id ba9mr7920225igb.30.1330199715454; Sat, 25 Feb 2012 11:55:15 -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 r10csp37232ibr; Sat, 25 Feb 2012 11:55:14 -0800 (PST) Received: by 10.68.130.7 with SMTP id oa7mr19273023pbb.16.1330199714479; Sat, 25 Feb 2012 11:55:14 -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 e6si11053165pbj.210.2012.02.25.11.55.14 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 25 Feb 2012 11:55:14 -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 wy7so190485pbc.37 for ; Sat, 25 Feb 2012 11:55:14 -0800 (PST) Received-SPF: pass (google.com: domain of mathieu.poirier@linaro.org designates 10.68.136.33 as permitted sender) client-ip=10.68.136.33; Received: from mr.google.com ([10.68.136.33]) by 10.68.136.33 with SMTP id px1mr22624047pbb.38.1330199714293 (num_hops = 1); Sat, 25 Feb 2012 11:55:14 -0800 (PST) MIME-Version: 1.0 Received: by 10.68.136.33 with SMTP id px1mr18986899pbb.38.1330199714186; Sat, 25 Feb 2012 11:55:14 -0800 (PST) Received: from localhost.localdomain (S0106002369de4dac.cg.shawcable.net. [70.73.24.112]) by mx.google.com with ESMTPS id q1sm7909864pbv.49.2012.02.25.11.55.12 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 25 Feb 2012 11:55:13 -0800 (PST) From: mathieu.poirier@linaro.org To: linus.walleij@linaro.org Cc: linux-arm-kernel@lists.infradead.org, arnd@arndb.de, patches@linaro.org Subject: [PATCH 1/6] arm: U8500 depends on MMU Date: Sat, 25 Feb 2012 12:55:02 -0700 Message-Id: <1330199707-5179-1-git-send-email-mathieu.poirier@linaro.org> X-Mailer: git-send-email 1.7.5.4 X-Gm-Message-State: ALoCoQnTSl2ftaFo2EGliL5eBqrcQ/esquBuPnc31HehtMnHbtfvBkyyMd/puqlmjcEzGVmCGnC2 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