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.eb...@proxmox.com>
---
 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 \
-- 
2.39.2



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Reply via email to