From patchwork Wed Mar 16 00:30:16 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Lo=C3=AFc_Minier?= X-Patchwork-Id: 87134 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id E9DD2B6F7E for ; Wed, 16 Mar 2011 11:30:51 +1100 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1PzedS-0001TQ-A7; Wed, 16 Mar 2011 00:30:46 +0000 Received: from pig2.dooz.org ([88.191.118.219]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1PzedQ-0001S6-Kb for kernel-team@lists.ubuntu.com; Wed, 16 Mar 2011 00:30:44 +0000 Received: from bee.dooz.org (serris.dooz.org [88.166.229.232]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "bee.dooz.org", Issuer "CA Cert Signing Authority" (verified OK)) by pig2.dooz.org (Postfix) with ESMTPS id 12AD5C0022; Wed, 16 Mar 2011 00:30:48 +0000 (UTC) Received: by bee.dooz.org (Postfix, from userid 1000) id 7CA054A98; Wed, 16 Mar 2011 01:30:36 +0100 (CET) From: =?UTF-8?q?Lo=C3=AFc=20Minier?= To: kernel-team@lists.ubuntu.com Subject: [PATCH 4/6] UBUNTU: Add armhf to Debian -> Linux arch map Date: Wed, 16 Mar 2011 01:30:16 +0100 Message-Id: <1300235418-19872-5-git-send-email-loic.minier@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1300235418-19872-1-git-send-email-loic.minier@linaro.org> References: <1300235418-19872-1-git-send-email-loic.minier@linaro.org> MIME-Version: 1.0 Cc: =?UTF-8?q?Lo=C3=AFc=20Minier?= X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: kernel-team-bounces@lists.ubuntu.com Errors-To: kernel-team-bounces@lists.ubuntu.com debian/scripts/misc/kernelconfig: add support for armhf to Debian -> Linux arch map. Signed-off-by: Loïc Minier --- debian/scripts/misc/kernelconfig | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/debian/scripts/misc/kernelconfig b/debian/scripts/misc/kernelconfig index 6432276..8812b61 100755 --- a/debian/scripts/misc/kernelconfig +++ b/debian/scripts/misc/kernelconfig @@ -46,12 +46,12 @@ for arch in $archs; do # Map debian archs to kernel archs case "$arch" in - ppc64) kernarch="powerpc" ;; - amd64) kernarch="x86_64" ;; - lpia) kernarch="x86" ;; - sparc) kernarch="sparc64" ;; - armel) kernarch="arm" ;; - *) kernarch="$arch" ;; + ppc64) kernarch="powerpc" ;; + amd64) kernarch="x86_64" ;; + lpia) kernarch="x86" ;; + sparc) kernarch="sparc64" ;; + armel|armhf) kernarch="arm" ;; + *) kernarch="$arch" ;; esac archconfdir=$confdir/$arch