From: Rick Chen Date: Tue, 13 Mar 2018 05:37:29 +0000 (+0800) Subject: tools: mkimage: Support RISC-V arch X-Git-Tag: v2018.05-rc1~4^2~12 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=86aa65a0cd220bdd88e19ab4e03f313e4ee0ffed;p=u-boot 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 --- diff --git a/common/image.c b/common/image.c index f5278a0df4..e1c50eb25d 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, "", "", }, };