initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+7
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
+3
View File
@@ -0,0 +1,3 @@
# Locally calculated
sha256 0f16ea896164f6e8bfe0a03bbbd95ff14d474445ba6f045f9377d01282c9364f jh71xx-tools-7a29f4b9d2355aa39afa8680680909bb74e4991d.tar.gz
sha256 cf03c59b41f6d8a5046f7bff4bbe3576075314299a4d0828d7855bf60af81001 LICENSE
+20
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))