From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 0BF071FF183 for ; Wed, 24 Sep 2025 16:48:55 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 3D490B199; Wed, 24 Sep 2025 16:49:26 +0200 (CEST) From: Fiona Ebner To: pve-devel@lists.proxmox.com Date: Wed, 24 Sep 2025 16:47:10 +0200 Message-ID: <20250924144848.170589-2-f.ebner@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20250924144848.170589-1-f.ebner@proxmox.com> References: <20250924144848.170589-1-f.ebner@proxmox.com> MIME-Version: 1.0 X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1758725318643 X-SPAM-LEVEL: Spam detection results: 0 AWL -0.022 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 RCVD_IN_VALIDITY_CERTIFIED_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_RPBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_SAFE_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [proxmox.com] Subject: [pve-devel] [PATCH qemu 1/5] buildsys: adapt removal of dtb files for 10.1.0 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" QEMU commit 12963e79ca ("pc-bios: Move device tree files in their own subdir") moved all .dtb and .dts files into a separate 'dtb' subdirectory. Adapt the Makefile to remove that directory. Signed-off-by: Fiona Ebner --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f31d3b8..eecdf17 100644 --- a/Makefile +++ b/Makefile @@ -32,8 +32,6 @@ PC_BIOS_FW_PURGE_LIST_IN = \ s390-ccw.img \ s390-netboot.img \ u-boot.e500 \ - .*[a-zA-Z0-9]\.dtb \ - .*[a-zA-Z0-9]\.dts \ qemu_vga.ndrv \ slof.bin \ opensbi-riscv.*-generic-fw_dynamic.bin \ @@ -49,8 +47,10 @@ $(BUILDDIR): submodule cp -a $(SRCDIR) $@.tmp cp -a debian $@.tmp/debian rm -rf $@.tmp/roms/edk2 # packaged separately + rm -rf $@.tmp/pc-bios/dtb find $@.tmp/pc-bios -type f | grep $(BLOB_PURGE_FILTER) | xargs rm -f sed -i $(BLOB_PURGE_SED_CMDS) $@.tmp/pc-bios/meson.build + sed -i "/subdir('dtb')/d" $@.tmp/pc-bios/meson.build echo "git clone git://git.proxmox.com/git/pve-qemu.git\\ngit checkout $(GITVERSION)" > $@.tmp/debian/SOURCE mv $@.tmp $@ -- 2.47.3 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel