From: Ben Hutchings <b...@decadent.org.uk>

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: debian-arm@lists.debian.org
Signed-off-by: Ben Hutchings <b...@decadent.org.uk>
Signed-off-by: Riku Voipio <riku.voi...@linaro.org>
---
 scripts/package/builddeb | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index 88dbf23..146b74f 100755
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -45,7 +45,16 @@ create_package() {
        arm64)
                debarch=arm64 ;;
        arm*)
-               debarch=arm$(grep -q CONFIG_AEABI=y $KCONFIG_CONFIG && echo el 
|| true) ;;
+               if grep -q CONFIG_AEABI=y $KCONFIG_CONFIG; then
+                       if $CC -dM -E - < /dev/null|grep -q __ARM_PCS_VFP; then
+                               debarch=armhf
+                       else
+                               debarch=armel
+                       fi
+               else
+                       debarch=arm
+               fi
+               ;;
        *)
                echo "" >&2
                echo "** ** **  WARNING  ** ** **" >&2
-- 
2.1.4


-- 
To UNSUBSCRIBE, email to debian-arm-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/834bd55c0de686780eb15f9a06b13f7fb560e9a8.1427968988.git.riku.voi...@linaro.org

Reply via email to