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
+8
View File
@@ -0,0 +1,8 @@
config BR2_PACKAGE_TINYSSH
bool "tinyssh"
depends on BR2_USE_MMU # fork()
help
TinySSH is a minimalistic SSH server which implements only
a subset of SSHv2 features.
https://tinyssh.org
+3
View File
@@ -0,0 +1,3 @@
# locally computed
sha256 2a051437878998c7782d9d38ef13e5e7a76435ae6b9c3e9ec492c3a567bd6314 tinyssh-20210601.tar.gz
sha256 b5dc19477e29f4111e1c16cd89ec0782f5a07b1a30e3bdb7c155425b81b12c46 LICENCE
+20
View File
@@ -0,0 +1,20 @@
################################################################################
#
# tinyssh
#
################################################################################
TINYSSH_VERSION = 20210601
TINYSSH_SITE = $(call github,janmojzis,tinyssh,$(TINYSSH_VERSION))
TINYSSH_LICENSE = Public Domain, CC0-1.0
TINYSSH_LICENSE_FILES = LICENCE
define TINYSSH_BUILD_CMDS
$(TARGET_MAKE_ENV) CC="$(TARGET_CC)" $(MAKE) -C $(@D) cross-compile
endef
define TINYSSH_INSTALL_TARGET_CMDS
$(MAKE) DESTDIR="$(TARGET_DIR)" -C $(@D) install
endef
$(eval $(generic-package))