diff options
-rwxr-xr-x | scripts/runqemu | 4 |
1 files changed, 4 insertions, 0 deletions
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): | |||
1077 | qbsys = 'mipsel' | 1077 | qbsys = 'mipsel' |
1078 | elif mach == 'qemumips64el': | 1078 | elif mach == 'qemumips64el': |
1079 | qbsys = 'mips64el' | 1079 | qbsys = 'mips64el' |
1080 | elif mach == 'qemuriscv64': | ||
1081 | qbsys = 'riscv64' | ||
1082 | elif mach == 'qemuriscv32': | ||
1083 | qbsys = 'riscv32' | ||
1080 | 1084 | ||
1081 | return 'qemu-system-%s' % qbsys | 1085 | return 'qemu-system-%s' % qbsys |
1082 | 1086 | ||