diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2019-08-02 23:08:04 -0700 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2019-08-13 12:46:24 +0100 |
commit | 02db1be1d074d75ad1c9bd1e9681f1b0b6299cee (patch) | |
tree | 5b55ead396b15bd5ab2f16576058184232a5653c | |
parent | 968ff692cf5096a9e0d33e7e4a7fff10edb63001 (diff) |
riscv: roms: Fix make rules for building sifive_u bios
Currently the make rules are wrongly using qemu/virt opensbi image
for sifive_u machine. Correct it.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Chih-Min Chao <chihmin.chao@sifive.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-id: 1564812484-20385-1-git-send-email-bmeng.cn@gmail.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | roms/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roms/Makefile b/roms/Makefile index dc70fb5aea..775c963f9d 100644 --- a/roms/Makefile +++ b/roms/Makefile @@ -183,7 +183,7 @@ opensbi64-sifive_u: $(MAKE) -C opensbi \ CROSS_COMPILE=$(riscv64_cross_prefix) \ PLATFORM="qemu/sifive_u" - cp opensbi/build/platform/qemu/virt/firmware/fw_jump.bin ../pc-bios/opensbi-riscv64-sifive_u-fw_jump.bin + cp opensbi/build/platform/qemu/sifive_u/firmware/fw_jump.bin ../pc-bios/opensbi-riscv64-sifive_u-fw_jump.bin clean: rm -rf seabios/.config seabios/out seabios/builds |