[pve-devel] [PATCH qemu 1/3] makefile: adapt firmware blob removal to changes for QEMU 8.2
Fiona Ebner
f.ebner at proxmox.com
Wed Mar 27 14:38:04 CET 2024
Namely, it's also necessary to remove .dts source files from the
meson.build file, because the .dtb file names are not directly listed
anymore since commit 6e0dc9d2a8 ("meson: compile bundled device
trees").
The same commit also introduced a "'.dtb'" in a line not just listing
a file name and removing that line would break the script. Be more
precise and require an alphanumeric character before the suffix.
Signed-off-by: Fiona Ebner <f.ebner at proxmox.com>
---
Makefile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index cad130e..1d021a7 100644
--- a/Makefile
+++ b/Makefile
@@ -31,7 +31,8 @@ PC_BIOS_FW_PURGE_LIST_IN = \
s390-ccw.img \
s390-netboot.img \
u-boot.e500 \
- .*\.dtb \
+ .*[a-zA-Z0-9]\.dtb \
+ .*[a-zA-Z0-9]\.dts \
qemu_vga.ndrv \
slof.bin \
opensbi-riscv.*-generic-fw_dynamic.bin \
--
2.39.2
More information about the pve-devel
mailing list