From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ozlabs.org (ozlabs.org [103.22.144.67]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 34E321A02D4 for ; Fri, 5 Sep 2014 17:55:19 +1000 (EST) Message-ID: <1409903718.11359.30.camel@ale.ozlabs.ibm.com> Subject: [PATCH v2] deb-pkg: Add support for powerpc little endian From: Michael Neuling To: Gabriel Paubert Date: Fri, 05 Sep 2014 17:55:18 +1000 In-Reply-To: <20140905071344.GA16024@visitor2.iram.es> References: <1409894927.11359.26.camel@ale.ozlabs.ibm.com> <20140905071344.GA16024@visitor2.iram.es> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Cc: Michal Marek , linux-kbuild@vger.kernel.org, Ben Hutchings , linux-kernel , Anton Blanchard , Leann Ogasawara , linuxppc-dev List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Fri, 2014-09-05 at 09:13 +0200, Gabriel Paubert wrote: > On Fri, Sep 05, 2014 at 03:28:47PM +1000, Michael Neuling wrote: > > The Debian powerpc little endian architecture is called ppc64le. This >=20 > Huh? ppc64le or ppc64el? ppc64el. Commit message is wrong. Fixed below. Mikey From: Michael Neuling deb-pkg: Add support for powerpc little endian The Debian powerpc little endian architecture is called ppc64el. This is the default architecture used by Ubuntu for powerpc. The below checks the kernel config to see if we are compiling little endian and sets the Debian arch appropriately. Signed-off-by: Michael Neuling diff --git a/scripts/package/builddeb b/scripts/package/builddeb index 35d5a58..6f4a1af 100644 --- a/scripts/package/builddeb +++ b/scripts/package/builddeb @@ -37,7 +37,7 @@ create_package() { s390*) debarch=3Ds390$(grep -q CONFIG_64BIT=3Dy $KCONFIG_CONFIG && echo x || tr= ue) ;; ppc*) - debarch=3Dpowerpc ;; + debarch=3D$(grep -q CPU_LITTLE_ENDIAN=3Dy $KCONFIG_CONFIG && echo ppc64e= l || echo powerpc) ;; parisc*) debarch=3Dhppa ;; mips*)