aboutsummaryrefslogtreecommitdiff
path: root/hw/openrisc/meson.build
diff options
context:
space:
mode:
authorStafford Horne <shorne@gmail.com>2022-05-28 01:42:34 +0900
committerStafford Horne <shorne@gmail.com>2022-09-04 07:02:56 +0100
commit7025114b1cd7683cb7fbef0810577c67aa3cbbd8 (patch)
treeb1b06d506060ef228f62b4d52512cf5d099b3ec4 /hw/openrisc/meson.build
parent61fd710b8da8aedcea9b4f197283dc38638e4b60 (diff)
downloadqemu-7025114b1cd7683cb7fbef0810577c67aa3cbbd8.zip
qemu-7025114b1cd7683cb7fbef0810577c67aa3cbbd8.tar.gz
qemu-7025114b1cd7683cb7fbef0810577c67aa3cbbd8.tar.bz2
hw/openrisc: Split re-usable boot time apis out to boot.c
These will be shared with the virt platform. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Stafford Horne <shorne@gmail.com>
Diffstat (limited to 'hw/openrisc/meson.build')
-rw-r--r--hw/openrisc/meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/openrisc/meson.build b/hw/openrisc/meson.build
index ec48172..ab56382 100644
--- a/hw/openrisc/meson.build
+++ b/hw/openrisc/meson.build
@@ -1,5 +1,6 @@
openrisc_ss = ss.source_set()
openrisc_ss.add(files('cputimer.c'))
+openrisc_ss.add(files('boot.c'))
openrisc_ss.add(when: 'CONFIG_OR1K_SIM', if_true: [files('openrisc_sim.c'), fdt])
hw_arch += {'openrisc': openrisc_ss}