summaryrefslogtreecommitdiffstats
path: root/linux-user/riscv/target_elf.h
diff options
context:
space:
mode:
authorMichael Clark2018-03-02 13:31:11 +0100
committerMichael Clark2018-03-06 20:30:28 +0100
commit47ae93cdfedc683c56e19113d516d7ce4971c8e6 (patch)
tree713240f8392d981ec9b11893d603475f7a5dcfa5 /linux-user/riscv/target_elf.h
parentRISC-V Physical Memory Protection (diff)
downloadqemu-47ae93cdfedc683c56e19113d516d7ce4971c8e6.tar.gz
qemu-47ae93cdfedc683c56e19113d516d7ce4971c8e6.tar.xz
qemu-47ae93cdfedc683c56e19113d516d7ce4971c8e6.zip
RISC-V Linux User Emulation
Implementation of linux user emulation for RISC-V. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Sagar Karandikar <sagark@eecs.berkeley.edu> Signed-off-by: Michael Clark <mjc@sifive.com>
Diffstat (limited to 'linux-user/riscv/target_elf.h')
-rw-r--r--linux-user/riscv/target_elf.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/linux-user/riscv/target_elf.h b/linux-user/riscv/target_elf.h
new file mode 100644
index 0000000000..a6716a6aac
--- /dev/null
+++ b/linux-user/riscv/target_elf.h
@@ -0,0 +1,14 @@
+/*
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation, or (at your option) any
+ * later version. See the COPYING file in the top-level directory.
+ */
+
+#ifndef RISCV_TARGET_ELF_H
+#define RISCV_TARGET_ELF_H
+static inline const char *cpu_get_model(uint32_t eflags)
+{
+ return "any";
+}
+#endif