From f76e07f370b586de02e202e817d105f2da0dda6d Mon Sep 17 00:00:00 2001 From: Fiona Ebner Date: Thu, 25 Apr 2024 17:21:26 +0200 Subject: [PATCH] makefile: adapt firmware blob removal to changes for QEMU 8.2 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 --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c05c641..a719e43 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 \