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
+23
View File
@@ -0,0 +1,23 @@
config BR2_PACKAGE_KYUA
bool "kyua"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_PACKAGE_HAS_LUAINTERPRETER # lutok
depends on !BR2_PACKAGE_LUAJIT # lutok
depends on !BR2_STATIC_LIBS # lutok
depends on BR2_USE_MMU # atf
select BR2_PACKAGE_ATF
select BR2_PACKAGE_LUTOK
select BR2_PACKAGE_SQLITE
help
Kyua is a testing framework for infrastructure software,
originally designed to equip BSD-based operating systems
with a test suite. This means that Kyua is lightweight
and simple, and that Kyua integrates well with various build
systems and continuous integration frameworks.
https://github.com/jmmv/kyua
comment "kyua needs a toolchain w/ C++, dynamic library and full Lua"
depends on !BR2_INSTALL_LIBSTDCPP || BR2_PACKAGE_LUAJIT || BR2_STATIC_LIBS
depends on BR2_PACKAGE_HAS_LUAINTERPRETER
depends on BR2_USE_MMU
+3
View File
@@ -0,0 +1,3 @@
# Locally calculated
sha256 db6e5d341d5cf7e49e50aa361243e19087a00ba33742b0855d2685c0b8e721d6 kyua-0.13.tar.gz
sha256 a6a8f43f6d2ed9b801978cc012cc816c4a9421a6dcea0579d3a40eab4b349674 LICENSE
+27
View File
@@ -0,0 +1,27 @@
################################################################################
#
# kyua
#
################################################################################
KYUA_VERSION = 0.13
KYUA_SITE = https://github.com/jmmv/kyua/releases/download/kyua-$(KYUA_VERSION)
KYUA_DEPENDENCIES = host-pkgconf atf lutok sqlite
KYUA_CONF_OPTS = --without-doxygen --without-atf
KYUA_LICENSE = BSD-3-Clause
KYUA_LICENSE_FILES = LICENSE
KYUA_CONF_ENV = \
kyua_cv_attribute_noreturn=yes \
kyua_cv_getcwd_dyn=yes \
kyua_cv_lchmod_works=no \
kyua_cv_getopt_gnu=yes \
kyua_cv_getopt_optind_reset_value=0 \
kyua_cv_signals_lastno=15
define KYUA_INSTALL_CONFIG
$(INSTALL) -D -m 644 $(@D)/examples/kyua.conf $(TARGET_DIR)/etc/kyua/kyua.conf
endef
KYUA_POST_INSTALL_HOOKS += KYUA_INSTALL_CONFIG
$(eval $(autotools-package))