diff options
author | Alistair Francis <alistair.francis@wdc.com> | 2019-06-24 15:11:49 -0700 |
---|---|---|
committer | Palmer Dabbelt <palmer@sifive.com> | 2019-06-27 02:47:06 -0700 |
commit | 0ac24d56c5e7d32423ea78ac58a06b444d1df04d (patch) | |
tree | f92aa46bc262c12a463f5896afa8e885502956e5 /hw/riscv/Makefile.objs | |
parent | 05446f4133ea1fe4b444ba80a823fc1df1a9eeaf (diff) | |
download | qemu-0ac24d56c5e7d32423ea78ac58a06b444d1df04d.zip qemu-0ac24d56c5e7d32423ea78ac58a06b444d1df04d.tar.gz qemu-0ac24d56c5e7d32423ea78ac58a06b444d1df04d.tar.bz2 |
hw/riscv: Split out the boot functions
Split the common RISC-V boot functions into a seperate file. This allows
us to share the common code.
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Tested-by: Bin Meng <bmeng.cn@gmail.com>
Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
Diffstat (limited to 'hw/riscv/Makefile.objs')
-rw-r--r-- | hw/riscv/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/riscv/Makefile.objs b/hw/riscv/Makefile.objs index a650273..eb9d4f9 100644 --- a/hw/riscv/Makefile.objs +++ b/hw/riscv/Makefile.objs @@ -1,3 +1,4 @@ +obj-y += boot.o obj-$(CONFIG_SPIKE) += riscv_htif.o obj-$(CONFIG_HART) += riscv_hart.o obj-$(CONFIG_SIFIVE_E) += sifive_e.o |