From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Hershberger Date: Mon, 11 May 2015 12:23:13 -0500 Subject: [U-Boot] [PATCH v2 2/7] moveconfig: Add a mapping for the arc cross-compiler In-Reply-To: <1431364998-2905-1-git-send-email-joe.hershberger@ni.com> References: <1431033780-2286-1-git-send-email-joe.hershberger@ni.com> <1431364998-2905-1-git-send-email-joe.hershberger@ni.com> Message-ID: <1431364998-2905-2-git-send-email-joe.hershberger@ni.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The arc architecture is supported by U-Boot, so add a mapping here for it as well. Signed-off-by: Joe Hershberger --- Changes in v2: None tools/moveconfig.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/moveconfig.py b/tools/moveconfig.py index 30dc4f6..c81f32c 100755 --- a/tools/moveconfig.py +++ b/tools/moveconfig.py @@ -26,6 +26,7 @@ SLEEP_TIME=0.03 CROSS_COMPILE = { 'aarch64': 'aarch64-linux-', + 'arc': 'arc-linux-', 'arm': 'arm-unknown-linux-gnueabi-', 'avr32': 'avr32-linux-', 'blackfin': 'bfin-elf-', -- 1.7.11.5