From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id 5A8C520EC88 for ; Thu, 25 Apr 2024 17:21:59 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 77C0E1E330; Thu, 25 Apr 2024 17:22:06 +0200 (CEST) From: Fiona Ebner To: pve-devel@lists.proxmox.com Date: Thu, 25 Apr 2024 17:21:26 +0200 Message-Id: <20240425152129.143825-2-f.ebner@proxmox.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240425152129.143825-1-f.ebner@proxmox.com> References: <20240425152129.143825-1-f.ebner@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL -0.317 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/4] 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: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" 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 \ -- 2.39.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel