Re: [PATCH 1/4] deb-pkg: Add automatic support for armhf architecture

2015-04-09 Thread Riku Voipio
On 2 April 2015 at 17:18, Michal Marek wrote: > On 2015-04-02 15:14, Riku Voipio wrote: >> On 2 April 2015 at 15:01, Arnaud Patard wrote: >>> riku.voi...@linaro.org writes: --- a/scripts/package/builddeb +++ b/scripts/package/builddeb @@ -45,7 +45,16 @@ create_package() {

Re: [PATCH 1/4] deb-pkg: Add automatic support for armhf architecture

2015-04-02 Thread Michal Marek
On 2015-04-02 15:14, Riku Voipio wrote: > On 2 April 2015 at 15:01, Arnaud Patard wrote: >> riku.voi...@linaro.org writes: >>> --- a/scripts/package/builddeb >>> +++ b/scripts/package/builddeb >>> @@ -45,7 +45,16 @@ create_package() { >>> arm64) >>> debarch=arm64 ;; >>> a

Re: [PATCH 1/4] deb-pkg: Add automatic support for armhf architecture

2015-04-02 Thread Riku Voipio
On 2 April 2015 at 15:01, Arnaud Patard wrote: > riku.voi...@linaro.org writes: >> --- a/scripts/package/builddeb >> +++ b/scripts/package/builddeb >> @@ -45,7 +45,16 @@ create_package() { >> arm64) >> debarch=arm64 ;; >> arm*) >> - debarch=arm$(grep -q CONFIG

Re: [PATCH 1/4] deb-pkg: Add automatic support for armhf architecture

2015-04-02 Thread Rtp
riku.voi...@linaro.org writes: > From: Ben Hutchings > > The Debian armhf architecture uses the ARM EABI hard-float variant, > whereas armel uses the soft-float variant. If the compiler used > to compile the kernel uses the __ARM_PCS_VFP ABI, the compiler > targets armhf architecture. > > v3 by

[PATCH 1/4] deb-pkg: Add automatic support for armhf architecture

2015-04-02 Thread riku . voipio
From: Ben Hutchings The Debian armhf architecture uses the ARM EABI hard-float variant, whereas armel uses the soft-float variant. If the compiler used to compile the kernel uses the __ARM_PCS_VFP ABI, the compiler targets armhf architecture. v3 by Riku: Use gcc define instead of CONFIG_VFP Cc