DistroKit Mailinglist
 help / color / mirror / Atom feed
From: Roland Hieber <rhi@pengutronix.de>
To: distrokit@pengutronix.de
Cc: Roland Hieber <rhi@pengutronix.de>
Subject: [DistroKit] [PATCH 12/16] v7a: remove outdated support for afi-gf board
Date: Mon, 16 Jun 2025 18:22:19 +0200	[thread overview]
Message-ID: <20250616162223.2089237-12-rhi@pengutronix.de> (raw)
In-Reply-To: <20250616162223.2089237-1-rhi@pengutronix.de>

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 <rhi@pengutronix.de>
---
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 <s.hauer@pengutronix.de>
-#
-# 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




  parent reply	other threads:[~2025-06-16 16:22 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-16 16:22 [DistroKit] [PATCH 01/16] platforms: images: use descriptive partition-type-uuids Roland Hieber
2025-06-16 16:22 ` [DistroKit] [PATCH 02/16] v7a: barebox: version bump 2025.03.0 -> 2025.05.0 Roland Hieber
2025-06-16 16:22 ` [DistroKit] [PATCH 03/16] v7a: barebox: boot from bootsource Roland Hieber
2025-06-16 16:22 ` [DistroKit] [PATCH 04/16] v7a: image-stm32mp*: use new partition-table-type option Roland Hieber
2025-06-16 16:22 ` [DistroKit] [PATCH 05/16] v7a: stm32mp: switch to upstream barebox recipe Roland Hieber
2025-06-16 16:22 ` [DistroKit] [PATCH 06/16] v7a: stm32mp: populate default environment in barebox partition Roland Hieber
2025-06-16 16:22 ` [DistroKit] [PATCH 07/16] v7a: mx6: switch to upstream barebox recipe Roland Hieber
2025-06-16 16:22 ` [DistroKit] [PATCH 08/16] v7a: vexpress: " Roland Hieber
2025-06-16 16:22 ` [DistroKit] [PATCH 09/16] v7a: rpi: " Roland Hieber
2025-06-16 16:22 ` [DistroKit] [PATCH 10/16] v7a: rpi: remove "2" from recipe names Roland Hieber
2025-06-16 16:22 ` [DistroKit] [PATCH 11/16] v7a: barebox: enable HWRNG drivers and allow fallback to PRNG Roland Hieber
2025-06-16 16:22 ` Roland Hieber [this message]
2025-06-16 16:22 ` [DistroKit] [PATCH 13/16] v7a: update fastboot documentation Roland Hieber
2025-06-16 16:22 ` [DistroKit] [PATCH 14/16] v7a: barebox: build images for i.MX6ULL EVK Roland Hieber
2025-06-16 16:22 ` [DistroKit] [PATCH 15/16] v7a: kernel: enable i.MX6ULL support Roland Hieber
2025-06-16 16:22 ` [DistroKit] [PATCH 16/16] v7a: platformconfig: enable i.MX6ULL EVK device tree Roland Hieber
2025-06-16 16:27 ` [DistroKit] [PATCH v2 01/16] platforms: images: use descriptive partition-type-uuids Roland Hieber
2025-06-16 17:35 ` [DistroKit] [PATCH " Robert Schwebel
2025-06-17 10:16   ` Roland Hieber

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250616162223.2089237-12-rhi@pengutronix.de \
    --to=rhi@pengutronix.de \
    --cc=distrokit@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox