aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Hutchings <ben@decadent.org.uk>2018-07-26 06:21:16 -0400
committerMasahiro Yamada <yamada.masahiro@socionext.com>2018-07-27 21:53:44 -0400
commit159b37942286b32aa1c08620b3a1ed2dace7d047 (patch)
tree817e326e49bb4cf9545e0f6993954ccb1ce5c91b
parent50d511ba6246c46654857b8ef64aefe76a87e455 (diff)
builddeb: Add automatic support for mips64el architecture
We currently label 64-bit little-endian kernel packages as mipsel (32-bit little-endian), mostly it was officially supported while mips64el (64-bit little-endian) was not. Now both are officially supported, so label these packages as mips64el. Signed-off-by: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
-rwxr-xr-xscripts/package/mkdebian7
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/package/mkdebian b/scripts/package/mkdebian
index 0891974f499b..350724cdc5af 100755
--- a/scripts/package/mkdebian
+++ b/scripts/package/mkdebian
@@ -44,7 +44,12 @@ set_debarch() {
44 parisc*) 44 parisc*)
45 debarch=hppa ;; 45 debarch=hppa ;;
46 mips*) 46 mips*)
47 debarch=mips$(if_enabled_echo CPU_LITTLE_ENDIAN el) ;; 47 if is_enabled CPU_LITTLE_ENDIAN; then
48 debarch=mips$(if_enabled_echo 64BIT 64)el
49 else
50 debarch=mips
51 fi
52 ;;
48 aarch64|arm64) 53 aarch64|arm64)
49 debarch=arm64 ;; 54 debarch=arm64 ;;
50 arm*) 55 arm*)