diff options
Diffstat (limited to 'kconfig')
-rwxr-xr-x | kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -116,7 +116,7 @@ if test -f .config; then elif grep -q "^CONFIG_ARM=y" .config; then arch="arm" elif grep -q "^CONFIG_PPC64=y" .config; then - arch="ppc64" + arch="powerpc" fi if test "$arch" != ""; then echo "# config arch is $arch" @@ -124,6 +124,7 @@ if test -f .config; then case "$(uname -m)" in i?86) harch="i386";; armv7*) harch="arm";; + ppc*) harch="powerpc";; *) harch="$(uname -m)";; esac echo "# host arch is $harch" |