From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 16 Jun 2025 18:22:36 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1uRCbU-007yee-0V for lore@lore.pengutronix.de; Mon, 16 Jun 2025 18:22:36 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1uRCbT-00080O-Cd; Mon, 16 Jun 2025 18:22:35 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1uRCbL-0007ZO-Hj; Mon, 16 Jun 2025 18:22:27 +0200 Received: from dude04.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::ac]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1uRCbL-003psw-07; Mon, 16 Jun 2025 18:22:27 +0200 Received: from rhi by dude04.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1uRCbK-008lYg-2n; Mon, 16 Jun 2025 18:22:26 +0200 From: Roland Hieber To: distrokit@pengutronix.de Date: Mon, 16 Jun 2025 18:22:19 +0200 Message-Id: <20250616162223.2089237-12-rhi@pengutronix.de> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20250616162223.2089237-1-rhi@pengutronix.de> References: <20250616162223.2089237-1-rhi@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [DistroKit] [PATCH 12/16] v7a: remove outdated support for afi-gf board X-BeenThere: distrokit@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: DistroKit Mailinglist List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Roland Hieber Sender: "DistroKit" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: distrokit-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false With the recent changes in barebox' AM33xx platform, it will be possible to build the MLO along with the proper barebox image, so we could get rid of the extra barebox-am335x-mlo recipe. The upstream afi-gf board doesn't support that new mechanism yet. However, the board also has only historical relevance today, so remove its support in DistroKit. Signed-off-by: Roland Hieber --- PATCH v2: new in v2 --- configs/platform-v7a/config/images/gf.config | 25 ---------------- configs/platform-v7a/platformconfig | 1 - configs/platform-v7a/platforms/image-gf.in | 12 -------- configs/platform-v7a/rules/image-gf.make | 31 -------------------- 4 files changed, 69 deletions(-) delete mode 100644 configs/platform-v7a/config/images/gf.config delete mode 100644 configs/platform-v7a/platforms/image-gf.in delete mode 100644 configs/platform-v7a/rules/image-gf.make diff --git a/configs/platform-v7a/config/images/gf.config b/configs/platform-v7a/config/images/gf.config deleted file mode 100644 index f0b0f1afb1f3..000000000000 --- a/configs/platform-v7a/config/images/gf.config +++ /dev/null @@ -1,25 +0,0 @@ -image gf-boot.vfat { - vfat { - file MLO { image = "barebox-am33xx-afi-gf-mlo.img"} - file barebox.bin { image = "barebox-am33xx-afi-gf.img" } - } - size = 32M -} - -image @IMAGE@ { - hdimage { - align = 1M - partition-table-type = hybrid - } - partition boot { - image = gf-boot.vfat - partition-type = 0xc - partition-type-uuid = fat32 - bootable = true - } - partition root-A { - image = root.ext2 - partition-type-uuid = root-arm - } -} -/* vim: set tabstop=8 noexpandtab : */ diff --git a/configs/platform-v7a/platformconfig b/configs/platform-v7a/platformconfig index 9af61ed58b52..74200eb091f1 100644 --- a/configs/platform-v7a/platformconfig +++ b/configs/platform-v7a/platformconfig @@ -261,7 +261,6 @@ PTXCONF_BLSPEC_ENTRY_APPENDROOT=y PTXCONF_IMAGE_BEAGLEBONE=y # PTXCONF_IMAGE_BOOT_MLO is not set # PTXCONF_IMAGE_BOOT_VFAT is not set -PTXCONF_IMAGE_GF=y # PTXCONF_IMAGE_HD_VDI is not set PTXCONF_IMAGE_HDIMG=y PTXCONF_IMAGE_HDIMG_GPT=y diff --git a/configs/platform-v7a/platforms/image-gf.in b/configs/platform-v7a/platforms/image-gf.in deleted file mode 100644 index 4c11bbf41ed1..000000000000 --- a/configs/platform-v7a/platforms/image-gf.in +++ /dev/null @@ -1,12 +0,0 @@ -## SECTION=image - -config IMAGE_GF - tristate - select HOST_GENIMAGE - select HOST_DOSFSTOOLS - select HOST_MTOOLS - select IMAGE_ROOT_EXT - select BAREBOX_AM335X_MLO - prompt "Generate images/gf.hdimg" - help - FIXME diff --git a/configs/platform-v7a/rules/image-gf.make b/configs/platform-v7a/rules/image-gf.make deleted file mode 100644 index 70a8902376ab..000000000000 --- a/configs/platform-v7a/rules/image-gf.make +++ /dev/null @@ -1,31 +0,0 @@ -# -*-makefile-*- -# -# Copyright (C) 2017 by Sascha Hauer -# -# For further information about the PTXdist project and license conditions -# see the README file. -# - -# -# We provide this package -# -IMAGE_PACKAGES-$(PTXCONF_IMAGE_GF) += image-gf - -# -# Paths and names -# -IMAGE_GF := image-gf -IMAGE_GF_DIR := $(BUILDDIR)/$(IMAGE_GF) -IMAGE_GF_IMAGE := $(IMAGEDIR)/gf.hdimg -IMAGE_GF_CONFIG := gf.config - -# ---------------------------------------------------------------------------- -# Image -# ---------------------------------------------------------------------------- - -$(IMAGE_GF_IMAGE): - @$(call targetinfo) - @$(call image/genimage, IMAGE_GF) - @$(call finish) - -# vim: syntax=make -- 2.39.5