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_SNAPPY
bool "snappy"
depends on BR2_INSTALL_LIBSTDCPP
help
Snappy is a compression/decompression library. It does not
aim for maximum compression, or compatibility with any other
compression library; instead, it aims for very high speeds
and reasonable compression.
http://google.github.io/snappy/
comment "snappy needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP
+3
View File
@@ -0,0 +1,3 @@
# Locally calculated
sha256 16b677f07832a612b0836178db7f374e414f94657c138e6993cbfc5dcc58651f snappy-1.1.8.tar.gz
sha256 55172044f7e241207117448a4d9d6ba1d0925c8ad66b5d4c08c70adfa9cc3de6 COPYING
+15
View File
@@ -0,0 +1,15 @@
################################################################################
#
# snappy
#
################################################################################
SNAPPY_VERSION = 1.1.8
SNAPPY_SITE = $(call github,google,snappy,$(SNAPPY_VERSION))
SNAPPY_LICENSE = BSD-3-Clause
SNAPPY_LICENSE_FILES = COPYING
SNAPPY_CPE_ID_VENDOR = google
SNAPPY_INSTALL_STAGING = YES
SNAPPY_CONF_OPTS = -DSNAPPY_BUILD_TESTS=OFF
$(eval $(cmake-package))