修订版 | 4211fc5532343adaa8f648cedfa8e44643944717 (tree) |
---|---|
时间 | 2022-01-21 14:52:57 |
作者 | Anup Patel <apatel@vent...> |
Commiter | Alistair Francis |
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>
@@ -43,9 +43,7 @@ build-opensbi: | ||
43 | 43 | artifacts: |
44 | 44 | paths: # 'artifacts.zip' will contains the following files: |
45 | 45 | - pc-bios/opensbi-riscv32-generic-fw_dynamic.bin |
46 | - - pc-bios/opensbi-riscv32-generic-fw_dynamic.elf | |
47 | 46 | - pc-bios/opensbi-riscv64-generic-fw_dynamic.bin |
48 | - - pc-bios/opensbi-riscv64-generic-fw_dynamic.elf | |
49 | 47 | - opensbi32-generic-stdout.log |
50 | 48 | - opensbi32-generic-stderr.log |
51 | 49 | - opensbi64-generic-stdout.log |
@@ -80,8 +80,6 @@ blobs = files( | ||
80 | 80 | 'hppa-firmware.img', |
81 | 81 | 'opensbi-riscv32-generic-fw_dynamic.bin', |
82 | 82 | 'opensbi-riscv64-generic-fw_dynamic.bin', |
83 | - 'opensbi-riscv32-generic-fw_dynamic.elf', | |
84 | - 'opensbi-riscv64-generic-fw_dynamic.elf', | |
85 | 83 | 'npcm7xx_bootrom.bin', |
86 | 84 | ) |
87 | 85 |
@@ -178,14 +178,12 @@ opensbi32-generic: | ||
178 | 178 | CROSS_COMPILE=$(riscv32_cross_prefix) \ |
179 | 179 | PLATFORM="generic" |
180 | 180 | cp opensbi/build/platform/generic/firmware/fw_dynamic.bin ../pc-bios/opensbi-riscv32-generic-fw_dynamic.bin |
181 | - cp opensbi/build/platform/generic/firmware/fw_dynamic.elf ../pc-bios/opensbi-riscv32-generic-fw_dynamic.elf | |
182 | 181 | |
183 | 182 | opensbi64-generic: |
184 | 183 | $(MAKE) -C opensbi \ |
185 | 184 | CROSS_COMPILE=$(riscv64_cross_prefix) \ |
186 | 185 | PLATFORM="generic" |
187 | 186 | cp opensbi/build/platform/generic/firmware/fw_dynamic.bin ../pc-bios/opensbi-riscv64-generic-fw_dynamic.bin |
188 | - cp opensbi/build/platform/generic/firmware/fw_dynamic.elf ../pc-bios/opensbi-riscv64-generic-fw_dynamic.elf | |
189 | 187 | |
190 | 188 | MESON = meson |
191 | 189 | NINJA = ninja |