package/starfive-spltool: new package
This patch adds a new package for the Starfive SPL tool. It is used to add a header to the Secondary Program Loader for platforms based on the Starfive JH7110 SoC. Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
8996fedefb
commit
6c4a992050
@ -2960,6 +2960,9 @@ N: Thijs Vermeir <thijsvermeir@gmail.com>
|
||||
F: package/ranger/
|
||||
F: package/x265/
|
||||
|
||||
N: Thomas Bonnefille <thomas.bonnefille@bootlin.com>
|
||||
F: package/starfive-spltool/
|
||||
|
||||
N: Thomas Claveirole <thomas.claveirole@green-communications.fr>
|
||||
F: package/fcgiwrap/
|
||||
F: package/openlayers/
|
||||
|
@ -107,6 +107,7 @@ menu "Host utilities"
|
||||
source "package/sentry-cli/Config.in.host"
|
||||
source "package/sloci-image/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/swugenerator/Config.in.host"
|
||||
|
8
package/starfive-spltool/Config.in.host
Normal file
8
package/starfive-spltool/Config.in.host
Normal file
@ -0,0 +1,8 @@
|
||||
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
|
2
package/starfive-spltool/starfive-spltool.hash
Normal file
2
package/starfive-spltool/starfive-spltool.hash
Normal file
@ -0,0 +1,2 @@
|
||||
# Locally computed
|
||||
sha256 f5466225021fbe4e983cc85f32ce11d92ad30689b18e0d1390d16f6bfab74477 starfive-spltool-JH7110_VF2_515_v5.11.3.tar.gz
|
20
package/starfive-spltool/starfive-spltool.mk
Normal file
20
package/starfive-spltool/starfive-spltool.mk
Normal file
@ -0,0 +1,20 @@
|
||||
################################################################################
|
||||
#
|
||||
# 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))
|
Loading…
Reference in New Issue
Block a user