From c0abf446307bb9b495d296b8845177dff5824b2b Mon Sep 17 00:00:00 2001 From: Thomas Bonnefille Date: Fri, 22 Aug 2025 10:11:08 +0200 Subject: [PATCH] package/starfive-spltool: remove the starfive-spltool package The starfive-spltool host package was added to Buildroot to create a bootable image for the Starfive JH7110 SoC. Mainline U-Boot can now build an image without it so it is not required anymore. Signed-off-by: Thomas Bonnefille [Julien: remove DEVELOPERS entry] Signed-off-by: Julien Olivain --- DEVELOPERS | 1 - package/Config.in.host | 1 - package/starfive-spltool/Config.in.host | 8 -------- .../starfive-spltool/starfive-spltool.hash | 2 -- package/starfive-spltool/starfive-spltool.mk | 20 ------------------- 5 files changed, 32 deletions(-) delete mode 100644 package/starfive-spltool/Config.in.host delete mode 100644 package/starfive-spltool/starfive-spltool.hash delete mode 100644 package/starfive-spltool/starfive-spltool.mk diff --git a/DEVELOPERS b/DEVELOPERS index db001d6bb0..5e1fa6401f 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -3172,7 +3172,6 @@ F: package/x265/ N: Thomas Bonnefille F: board/pine64/star64 F: configs/pine64_star64_defconfig -F: package/starfive-spltool/ N: Thomas Claveirole F: package/fcgiwrap/ diff --git a/package/Config.in.host b/package/Config.in.host index d0088364d0..f76d0ce36a 100644 --- a/package/Config.in.host +++ b/package/Config.in.host @@ -114,7 +114,6 @@ menu "Host utilities" source "package/sloci-image/Config.in.host" source "package/snagboot/Config.in.host" source "package/squashfs/Config.in.host" - source "package/starfive-spltool/Config.in.host" source "package/sunxi-tools/Config.in.host" source "package/swig/Config.in.host" source "package/swtpm/Config.in.host" diff --git a/package/starfive-spltool/Config.in.host b/package/starfive-spltool/Config.in.host deleted file mode 100644 index afb2777ca6..0000000000 --- a/package/starfive-spltool/Config.in.host +++ /dev/null @@ -1,8 +0,0 @@ -config BR2_PACKAGE_HOST_STARFIVE_SPLTOOL - bool "host starfive-spltool" - depends on BR2_riscv - help - Add header to the Secondary Program Loader with the 3rd party - software given by Starfive-Tech for their SoCs. - - https://github.com/starfive-tech/soft_3rdpart/tree/JH7110_VisionFive2_devel/spl_tool diff --git a/package/starfive-spltool/starfive-spltool.hash b/package/starfive-spltool/starfive-spltool.hash deleted file mode 100644 index 55835de310..0000000000 --- a/package/starfive-spltool/starfive-spltool.hash +++ /dev/null @@ -1,2 +0,0 @@ -# Locally computed -sha256 f5466225021fbe4e983cc85f32ce11d92ad30689b18e0d1390d16f6bfab74477 starfive-spltool-JH7110_VF2_515_v5.11.3.tar.gz diff --git a/package/starfive-spltool/starfive-spltool.mk b/package/starfive-spltool/starfive-spltool.mk deleted file mode 100644 index 559df35074..0000000000 --- a/package/starfive-spltool/starfive-spltool.mk +++ /dev/null @@ -1,20 +0,0 @@ -################################################################################ -# -# starfive-spltool -# -################################################################################ - -STARFIVE_SPLTOOL_VERSION = JH7110_VF2_515_v5.11.3 -STARFIVE_SPLTOOL_SITE = $(call github,starfive-tech,soft_3rdpart,$(STARFIVE_SPLTOOL_VERSION)) -STARFIVE_SPLTOOL_LICENSE = GPL-2.0+ -STARFIVE_SPLTOOL_FILES = spl_tool/LICENSE - -define HOST_STARFIVE_SPLTOOL_BUILD_CMDS - $(HOST_MAKE_ENV) $(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D)/spl_tool -endef - -define HOST_STARFIVE_SPLTOOL_INSTALL_CMDS - $(INSTALL) -D -m 0755 $(@D)/spl_tool/spl_tool $(HOST_DIR)/bin/spl_tool -endef - -$(eval $(host-generic-package))