From: Martin Michlmayr Date: Sat, 28 Jan 2006 18:38:15 +0000 (+0000) Subject: kbuild: Accept various mips sub-types in SUBARCH X-Git-Tag: firefly_0821_release~37156^2~39 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8999257c292cb757828ae3def9f5e9d894a24741;p=firefly-linux-kernel-4.4.55.git kbuild: Accept various mips sub-types in SUBARCH uname -m on MIPS can give a number of results, such as mips64. We need to add another substitution to the sed call for SUBARCH in the main Makefile. Signed-off-by: Martin Michlmayr Signed-off-by: Sam Ravnborg --- diff --git a/Makefile b/Makefile index 639d8a48bbde..1db819ef0dac 100644 --- a/Makefile +++ b/Makefile @@ -151,7 +151,7 @@ export srctree objtree VPATH TOPDIR SUBARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \ -e s/arm.*/arm/ -e s/sa110/arm/ \ -e s/s390x/s390/ -e s/parisc64/parisc/ \ - -e s/ppc.*/powerpc/ ) + -e s/ppc.*/powerpc/ -e s/mips.*/mips/ ) # Cross compiling and selecting different set of gcc/bin-utils # ---------------------------------------------------------------------------