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
+13
View File
@@ -0,0 +1,13 @@
config BR2_PACKAGE_LUA_AUGEAS
bool "lua-augeas"
depends on !BR2_arc # augeas
depends on BR2_USE_WCHAR # augeas
select BR2_PACKAGE_AUGEAS
help
Lua binding for augeas library
https://github.com/ncopa/lua-augeas
comment "lua-augeas needs a toolchain w/ wchar"
depends on !BR2_arc
depends on !BR2_USE_WCHAR
+3
View File
@@ -0,0 +1,3 @@
# Locally computed:
sha256 694fe887eebac27b558c9695042405f70a86382e92916094e7ba5f411673fbc1 lua-augeas-a6eace5116d1a711218a7c9086a4e3c4db88ee57.tar.gz
sha256 1f5c5ee5da981332b7f73cc5a59af660b03104279e2aa21b6b86890430c3eff0 COPYRIGHT
+33
View File
@@ -0,0 +1,33 @@
################################################################################
#
# lua-augeas
#
################################################################################
LUA_AUGEAS_VERSION = a6eace5116d1a711218a7c9086a4e3c4db88ee57
LUA_AUGEAS_SITE = $(call github,ncopa,lua-augeas,$(LUA_AUGEAS_VERSION))
LUA_AUGEAS_LICENSE = MIT
LUA_AUGEAS_LICENSE_FILES = COPYRIGHT
LUA_AUGEAS_DEPENDENCIES = luainterpreter augeas host-pkgconf
# LDFLAGS=$(LDFLAGS) is present to pass LDFLAGS from environment to the command
# line. With LDFLAGS set in the command line, related ordinary asignment present
# in the makefile are ignored and so lua-augeas makefile cannot not add '-L/lib'
# to this value.
LUA_AUGEAS_CONF_OPTS= \
PKGCONFIG="$(PKG_CONFIG_HOST_BINARY)" \
LDFLAGS="$(LDFLAGS)" \
LUA_VERSION="$(LUAINTERPRETER_ABIVER)" \
INSTALL_CMOD="/usr/lib/lua/$(LUAINTERPRETER_ABIVER)"
define LUA_AUGEAS_BUILD_CMDS
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
$(LUA_AUGEAS_CONF_OPTS) all
endef
define LUA_AUGEAS_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
$(LUA_AUGEAS_CONF_OPTS) DESTDIR="$(TARGET_DIR)" install
endef
$(eval $(generic-package))