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
+10
View File
@@ -0,0 +1,10 @@
config BR2_PACKAGE_JANET
bool "janet"
help
Janet is a functional and imperative programming language.
The entire language (core library, interpreter, compiler,
assembler, PEG) is less than 1MB. You can also add Janet
scripting to an application by embedding a single C file
and two headers.
https://janet-lang.org/
+5
View File
@@ -0,0 +1,5 @@
# Locally calculated
sha256 bfc29c11a070cc175666f74eb99ea992276d6e269701ba9558a72cef05ac80b4 janet-1.18.1.tar.gz
# Locally calculated
sha256 e2d2ae8360d95386af751ac7d1a3da36ea8ceb230e5f0eba7eb762547b1c58c9 LICENSE
+27
View File
@@ -0,0 +1,27 @@
################################################################################
#
# janet
#
################################################################################
JANET_VERSION = 1.18.1
JANET_SITE = $(call github,janet-lang,janet,v$(JANET_VERSION))
JANET_LICENSE = MIT
JANET_LICENSE_FILES = LICENSE
JANET_INSTALL_STAGING = YES
ifeq ($(BR2_STATIC_LIBS),y)
JANET_CONF_OPTS += -Ddynamic_modules=false
endif
# Uses __atomic_fetch_add_4
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
JANET_LDFLAGS += $(TARGET_LDFLAGS) -latomic
endif
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),)
JANET_CONF_OPTS += -Dsingle_threaded=true
endif
$(eval $(meson-package))