mirror of https://github.com/xemu-project/xemu.git
roms/opensbi: Remove ELF images
Now that all RISC-V machines can use OpenSBI BIN images, we remove OpenSBI ELF images and also exclude these images from BIOS build. Signed-off-by: Anup Patel <apatel@ventanamicro.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
092dc6df92
commit
4211fc5532
|
@ -43,9 +43,7 @@ build-opensbi:
|
||||||
artifacts:
|
artifacts:
|
||||||
paths: # 'artifacts.zip' will contains the following files:
|
paths: # 'artifacts.zip' will contains the following files:
|
||||||
- pc-bios/opensbi-riscv32-generic-fw_dynamic.bin
|
- pc-bios/opensbi-riscv32-generic-fw_dynamic.bin
|
||||||
- pc-bios/opensbi-riscv32-generic-fw_dynamic.elf
|
|
||||||
- pc-bios/opensbi-riscv64-generic-fw_dynamic.bin
|
- pc-bios/opensbi-riscv64-generic-fw_dynamic.bin
|
||||||
- pc-bios/opensbi-riscv64-generic-fw_dynamic.elf
|
|
||||||
- opensbi32-generic-stdout.log
|
- opensbi32-generic-stdout.log
|
||||||
- opensbi32-generic-stderr.log
|
- opensbi32-generic-stderr.log
|
||||||
- opensbi64-generic-stdout.log
|
- opensbi64-generic-stdout.log
|
||||||
|
|
|
@ -80,8 +80,6 @@ blobs = files(
|
||||||
'hppa-firmware.img',
|
'hppa-firmware.img',
|
||||||
'opensbi-riscv32-generic-fw_dynamic.bin',
|
'opensbi-riscv32-generic-fw_dynamic.bin',
|
||||||
'opensbi-riscv64-generic-fw_dynamic.bin',
|
'opensbi-riscv64-generic-fw_dynamic.bin',
|
||||||
'opensbi-riscv32-generic-fw_dynamic.elf',
|
|
||||||
'opensbi-riscv64-generic-fw_dynamic.elf',
|
|
||||||
'npcm7xx_bootrom.bin',
|
'npcm7xx_bootrom.bin',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -178,14 +178,12 @@ opensbi32-generic:
|
||||||
CROSS_COMPILE=$(riscv32_cross_prefix) \
|
CROSS_COMPILE=$(riscv32_cross_prefix) \
|
||||||
PLATFORM="generic"
|
PLATFORM="generic"
|
||||||
cp opensbi/build/platform/generic/firmware/fw_dynamic.bin ../pc-bios/opensbi-riscv32-generic-fw_dynamic.bin
|
cp opensbi/build/platform/generic/firmware/fw_dynamic.bin ../pc-bios/opensbi-riscv32-generic-fw_dynamic.bin
|
||||||
cp opensbi/build/platform/generic/firmware/fw_dynamic.elf ../pc-bios/opensbi-riscv32-generic-fw_dynamic.elf
|
|
||||||
|
|
||||||
opensbi64-generic:
|
opensbi64-generic:
|
||||||
$(MAKE) -C opensbi \
|
$(MAKE) -C opensbi \
|
||||||
CROSS_COMPILE=$(riscv64_cross_prefix) \
|
CROSS_COMPILE=$(riscv64_cross_prefix) \
|
||||||
PLATFORM="generic"
|
PLATFORM="generic"
|
||||||
cp opensbi/build/platform/generic/firmware/fw_dynamic.bin ../pc-bios/opensbi-riscv64-generic-fw_dynamic.bin
|
cp opensbi/build/platform/generic/firmware/fw_dynamic.bin ../pc-bios/opensbi-riscv64-generic-fw_dynamic.bin
|
||||||
cp opensbi/build/platform/generic/firmware/fw_dynamic.elf ../pc-bios/opensbi-riscv64-generic-fw_dynamic.elf
|
|
||||||
|
|
||||||
MESON = meson
|
MESON = meson
|
||||||
NINJA = ninja
|
NINJA = ninja
|
||||||
|
|
Loading…
Reference in New Issue