From bfdebfdfc974220fa2893eddbfc966bbc0761d4c Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 5 Oct 2017 17:50:44 -0700 Subject: runqemu: Add riscv support for qemu machines Signed-off-by: Khem Raj Signed-off-by: Ross Burton --- scripts/runqemu | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'scripts') diff --git a/scripts/runqemu b/scripts/runqemu index df76270904..9dc6a05c57 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -1077,6 +1077,10 @@ class BaseConfig(object): qbsys = 'mipsel' elif mach == 'qemumips64el': qbsys = 'mips64el' + elif mach == 'qemuriscv64': + qbsys = 'riscv64' + elif mach == 'qemuriscv32': + qbsys = 'riscv32' return 'qemu-system-%s' % qbsys -- cgit 1.2.3-korg