From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id E6E1FBBE05 for ; Wed, 27 Mar 2024 14:38:17 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id BB9A73287B for ; Wed, 27 Mar 2024 14:38:17 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Wed, 27 Mar 2024 14:38:14 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id D0DD142559 for ; Wed, 27 Mar 2024 14:38:13 +0100 (CET) From: Fiona Ebner To: pve-devel@lists.proxmox.com Date: Wed, 27 Mar 2024 14:38:04 +0100 Message-Id: <20240327133806.284269-2-f.ebner@proxmox.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240327133806.284269-1-f.ebner@proxmox.com> References: <20240327133806.284269-1-f.ebner@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.323 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_NUMSUBJECT 0.5 Subject ends in numbers excluding current years SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH qemu 1/3] makefile: adapt firmware blob removal to changes for QEMU 8.2 X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Mar 2024 13:38:17 -0000 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 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