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
+12
View File
@@ -0,0 +1,12 @@
config BR2_PACKAGE_LIBOLM
bool "libolm"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
help
libolm is an implementation of the Double Ratchet
cryptographic ratchet in C++
https://gitlab.matrix.org/matrix-org/olm
comment "libolm needs a toolchain w/ C++, gcc >= 4.8"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
+3
View File
@@ -0,0 +1,3 @@
# locally computed
sha256 9b61bd9182bb0ae0c5a800a8b0496b69600a0a22e3a21fce0aad119d2b1c99ae olm-3.2.6.tar.gz
sha256 0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594 LICENSE
+16
View File
@@ -0,0 +1,16 @@
################################################################################
#
# libolm
#
################################################################################
LIBOLM_VERSION = 3.2.6
LIBOLM_SOURCE = olm-$(LIBOLM_VERSION).tar.gz
LIBOLM_SITE = https://gitlab.matrix.org/matrix-org/olm/-/archive/$(LIBOLM_VERSION)
LIBOLM_LICENSE = Apache-2.0
LIBOLM_LICENSE_FILES = LICENSE
LIBOLM_INSTALL_STAGING = YES
LIBOLM_CONF_OPTS = -DOLM_TESTS=OFF
$(eval $(cmake-package))