Package: dpkg-cross
Severity: wishlist
Tags: patch
The attached patch adds support for the big-endian arm (armeb)
architecture. Please consider applying.
-- System Information:
Debian Release: testing/unstable
APT prefers stable
APT policy: (500, 'stable')
Architecture: armeb (armv4b)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
--- dpkg-cross-1.25/dpkg-cross.pl.orig 2005-10-27 19:47:17.000000000 +0200
+++ dpkg-cross-1.25/dpkg-cross.pl 2005-10-27 19:47:45.000000000 +0200
@@ -49,6 +49,7 @@
'alpha' => 'alpha-linux',
'm68k' => 'm68k-linux',
'arm' => 'arm-linux',
+ 'armeb' => 'armeb-linux',
'powerpc' => 'powerpc-linux',
'ppc' => 'powerpc-linux',
'mips' => 'mips-linux',
@@ -84,6 +85,7 @@
'alpha' => 'ELF 64-bit LSB .* Alpha',
'm68k' => 'ELF 32-bit MSB .* 680[02]0',
'arm' => 'ELF 32-bit LSB .* ARM',
+ 'armeb' => 'ELF 32-bit MSB .* ARM',
'powerpc' => 'ELF 32-bit MSB .* PowerPC',
'mips' => 'ELF 32-bit MSB .* MIPS',
'mipsel' => 'ELF 32-bit LSB .* MIPS',
@@ -104,6 +106,7 @@
"alpha" => [ "alpha-linux-" ],
"m68k" => [ "m68k-linux-" ],
"arm" => [ "arm-linux-" ],
+ "armeb" => [ "armeb-linux-" ],
"powerpc" => [ "powerpc-linux-", "ppc-linux-" ],
"mips" => [ "mips-linux-", "mips64-linux-" ],
"mipsel" => [ "mipsel-linux-", "mips64el-linux-" ],