diff options
author | Stafford Horne <shorne@gmail.com> | 2022-05-28 01:42:34 +0900 |
---|---|---|
committer | Stafford Horne <shorne@gmail.com> | 2022-09-04 07:02:56 +0100 |
commit | 7025114b1cd7683cb7fbef0810577c67aa3cbbd8 (patch) | |
tree | b1b06d506060ef228f62b4d52512cf5d099b3ec4 /hw/openrisc/meson.build | |
parent | 61fd710b8da8aedcea9b4f197283dc38638e4b60 (diff) |
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.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/openrisc/meson.build b/hw/openrisc/meson.build index ec48172c9d..ab563820c5 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} |