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_MBUFFER
bool "mbuffer"
depends on !BR2_STATIC_LIBS # dlopen()
depends on BR2_TOOLCHAIN_HAS_THREADS
help
mbuffer is a tool for buffering data streams with a large set
of unique features.
http://www.maier-komor.de/mbuffer.html
comment "mbuffer needs a toolchain w/ dynamic library, threads"
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
+8
View File
@@ -0,0 +1,8 @@
# From http://www.maier-komor.de/mbuffer.html
md5 4e4712db5fbd4e71bfbfa2c145c6c646 mbuffer-20210328.tgz
# Locally computed after checking signature upstream
sha256 51b5b8d8488991a55fe1dfce90130f9e47bc1ce286ba03b4f628c04b784fdc5d mbuffer-20210328.tgz
# Hash for license file
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSE
+18
View File
@@ -0,0 +1,18 @@
################################################################################
#
# mbuffer
#
################################################################################
MBUFFER_VERSION = 20210328
MBUFFER_SOURCE = mbuffer-$(MBUFFER_VERSION).tgz
MBUFFER_SITE = http://www.maier-komor.de/software/mbuffer
MBUFFER_LICENSE = GPL-3.0+
MBUFFER_LICENSE_FILES = LICENSE
MBUFFER_CONF_OPTS = --disable-debug
# we don't need tests & co. so we specify a target
# so that the others don't get built, e.g idev.so
MBUFFER_MAKE_OPTS += mbuffer
$(eval $(autotools-package))