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
+16
View File
@@ -0,0 +1,16 @@
config BR2_PACKAGE_LIBCODEC2
bool "libcodec2"
help
Codec2 is an open source low bit rate speech codec designed
for communications quality speech between 700 and 3200 bit/s.
http://rowetel.com/codec2.html
if BR2_PACKAGE_LIBCODEC2
config BR2_PACKAGE_LIBCODEC2_EXAMPLES
bool "libcodec2_examples"
help
Install Codec2 examples.
endif
+3
View File
@@ -0,0 +1,3 @@
# Locally computed
sha256 19181a446f4df3e6d616b50cabdac4485abb9cd3242cf312a0785f892ed4c76c libcodec2-0.9.2.tar.gz
sha256 9ebb6f82b7380a62ac74c5f0322c88e6744dedf2ebe1f54d6f088282b39844bf COPYING
+19
View File
@@ -0,0 +1,19 @@
################################################################################
#
# libcodec2
#
################################################################################
LIBCODEC2_VERSION = 0.9.2
LIBCODEC2_SITE = $(call github,drowe67,codec2,v$(LIBCODEC2_VERSION))
LIBCODEC2_LICENSE = LGPL-2.1
LIBCODEC2_LICENSE_FILES = COPYING
LIBCODEC2_INSTALL_STAGING = YES
LIBCODEC2_SUPPORTS_IN_SOURCE_BUILD = NO
LIBCODEC2_CONF_OPTS = -DUNITTEST=OFF
ifeq ($(BR2_PACKAGE_LIBCODEC2_EXAMPLES),y)
LIBCODEC2_CONF_OPTS += -DINSTALL_EXAMPLES=ON
endif
$(eval $(cmake-package))