bump version to 2022.02.9

add miyoo_defconfig
This commit is contained in:
tiopex
2023-01-31 13:11:45 +01:00
parent 1fa746c353
commit dcdaa3599c
8423 changed files with 184305 additions and 91107 deletions

View File

@@ -0,0 +1,7 @@
config BR2_PACKAGE_HOST_JH71XX_TOOLS
bool "host jh71xx-tools"
depends on BR2_riscv
help
Bootloader recovery and updater tool for StarFive JH7100 SoCs.
https://github.com/kprasadvnsi/JH71xx-tools

View File

@@ -0,0 +1,3 @@
# Locally calculated
sha256 0f16ea896164f6e8bfe0a03bbbd95ff14d474445ba6f045f9377d01282c9364f jh71xx-tools-7a29f4b9d2355aa39afa8680680909bb74e4991d.tar.gz
sha256 cf03c59b41f6d8a5046f7bff4bbe3576075314299a4d0828d7855bf60af81001 LICENSE

View File

@@ -0,0 +1,20 @@
################################################################################
#
# jh71xx-tools
#
################################################################################
JH71XX_TOOLS_VERSION = 7a29f4b9d2355aa39afa8680680909bb74e4991d
JH71XX_TOOLS_SITE = $(call github,kprasadvnsi,JH71xx-tools,$(JH71XX_TOOLS_VERSION))
JH71XX_TOOLS_LICENSE = MIT
JH71XX_TOOLS_LICENSE_FILES = LICENSE
define HOST_JH71XX_TOOLS_BUILD_CMDS
$(HOSTCC) -o $(@D)/jh7100-recover $(@D)/jh7100-recover.c
endef
define HOST_JH71XX_TOOLS_INSTALL_CMDS
$(INSTALL) -D -m 0755 $(@D)/jh7100-recover $(HOST_DIR)/bin/jh7100-recover
endef
$(eval $(host-generic-package))