Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

scripts/decodecode: set ARCH when running natively on arm/arm64

When running decodecode natively on arm64, ARCH is likely not to be set,
and we end-up with .4byte instead of .inst when generating the
disassembly.

Similar effects would occur if running natively on a 32bit ARM platform,
although that's even less popular.

A simple workaround is to populate ARCH when it is not set and that we're
running on an arm/arm64 system.

Link: http://lkml.kernel.org/r/20181210174659.31054-2-marc.zyngier@arm.com
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Acked-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Marc Zyngier and committed by
Linus Torvalds
c5cfb62f e0b2475a

+7
+7
scripts/decodecode
··· 60 60 4) type=4byte ;; 61 61 esac 62 62 63 + if [ -z "$ARCH" ]; then 64 + case `uname -m` in 65 + aarch64*) ARCH=arm64 ;; 66 + arm*) ARCH=arm ;; 67 + esac 68 + fi 69 + 63 70 disas() { 64 71 ${CROSS_COMPILE}as $AFLAGS -o $1.o $1.s > /dev/null 2>&1 65 72