powerpc: Fix defconfig choice logic when cross compiling
authorMichael Ellerman <mpe@ellerman.id.au>
Thu, 7 Feb 2019 05:16:52 +0000 (16:16 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Sat, 20 Apr 2019 12:02:11 +0000 (22:02 +1000)
commitaf5cd05de5dd38cf25d14ea4d30ae9b791d2420b
tree748dbc0ea10bd5ae610d770e21968fbc941a3364
parenta273fa386a947612a23b0d56dcfb8823662b8606
powerpc: Fix defconfig choice logic when cross compiling

Our logic for choosing defconfig doesn't work well in some situations.

For example if you're on a ppc64le machine but you specify a non-empty
CROSS_COMPILE, in order to use a non-default toolchain, then defconfig
will give you ppc64_defconfig (big endian):

  $ make CROSS_COMPILE=~/toolchains/gcc-8/bin/powerpc-linux- defconfig
  *** Default configuration is based on 'ppc64_defconfig'

This is because we assume that CROSS_COMPILE being set means we
can't be on a ppc machine and rather than checking we just default to
ppc64_defconfig.

We should just ignore CROSS_COMPILE, instead check the machine with
uname and if it's one of ppc, ppc64 or ppc64le then use that
defconfig. If it's none of those then we fall back to ppc64_defconfig.

Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/Makefile