From f8ddf2aa61d0015b4008c58ddfadd1fb82b86304 Mon Sep 17 00:00:00 2001 From: Rick Chen Date: Tue, 13 Mar 2018 13:37:29 +0800 Subject: [PATCH] UPSTREAM: tools: mkimage: Support RISC-V arch Add riscv uimage arch to support riscv-linux booting. It can Convert riscv-linux to image which can be booted by bootm command. Signed-off-by: Rick Chen Signed-off-by: Rick Chen Signed-off-by: Jason Zhu Change-Id: I38119fadebb4fa9f1db12897d6561f97fbf03f02 (cherry picked from commit: 86aa65a0cd2) --- common/image.c | 1 + 1 file changed, 1 insertion(+) diff --git a/common/image.c b/common/image.c index 4134ac80d7..4518a8f960 100644 --- a/common/image.c +++ b/common/image.c @@ -86,6 +86,7 @@ static const table_entry_t uimage_arch[] = { { IH_ARCH_ARC, "arc", "ARC", }, { IH_ARCH_X86_64, "x86_64", "AMD x86_64", }, { IH_ARCH_XTENSA, "xtensa", "Xtensa", }, + { IH_ARCH_RISCV, "riscv", "RISC-V", }, { -1, "", "", }, };