diff mbox

[U-Boot] tools: moveconfig: add Xtensa GCC prefix to CROSS_COMPILE list

Message ID 1471762292-27231-1-git-send-email-yamada.masahiro@socionext.com
State Superseded
Delegated to: Tom Rini
Headers show

Commit Message

Masahiro Yamada Aug. 21, 2016, 6:51 a.m. UTC
This is needed to move CONFIG options for the recently-added
xtfpga_defconfig.

The tarball of the pre-built toolchain can be downloaded from:
https://www.kernel.org/pub/tools/crosstool/files/bin/x86_64/4.9.0/

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 tools/moveconfig.py | 1 +
 1 file changed, 1 insertion(+)
diff mbox

Patch

diff --git a/tools/moveconfig.py b/tools/moveconfig.py
index e7b245c..4b02c53 100755
--- a/tools/moveconfig.py
+++ b/tools/moveconfig.py
@@ -203,6 +203,7 @@  CROSS_COMPILE = {
     'powerpc': 'powerpc-linux-',
     'sh': 'sh-linux-gnu-',
     'sparc': 'sparc-linux-',
+    'xtensa': 'xtensa-linux-',
     'x86': 'i386-linux-'
 }