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
+11
View File
@@ -0,0 +1,11 @@
config BR2_PACKAGE_BATS_CORE
bool "bats"
depends on BR2_PACKAGE_BASH # runtime
help
Bats: Bash Automated Testing System
Bats is a TAP-compliant testing framework for Bash. It
provides a simple way to verify that the UNIX programs you
write behave as expected.
https://github.com/bats-core/bats-core
+5
View File
@@ -0,0 +1,5 @@
# Locally calculated
sha256 bff517da043ae24440ec8272039f396c2a7907076ac67693c0f18d4a17c08f7d bats-core-1.4.1.tar.gz
# License files
sha256 55074b2b3b87809105034e1468e59076554d76a80c67bcc592000cc3d929852d LICENSE.md
+16
View File
@@ -0,0 +1,16 @@
################################################################################
#
# bats-core
#
################################################################################
BATS_CORE_VERSION = 1.4.1
BATS_CORE_SITE = $(call github,bats-core,bats-core,v$(BATS_CORE_VERSION))
BATS_CORE_LICENSE = MIT
BATS_CORE_LICENSE_FILES = LICENSE.md
define BATS_CORE_INSTALL_TARGET_CMDS
$(@D)/install.sh $(TARGET_DIR)/usr
endef
$(eval $(generic-package))