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
+8
View File
@@ -0,0 +1,8 @@
config BR2_PACKAGE_BITSTREAM
bool "bitstream"
help
biTStream is a set of C headers allowing a simpler access to
binary structures such as specified by MPEG, DVB, IETF,
SMPTE, IEEE, SCTE, etc.
http://www.videolan.org/developers/bitstream.html
+6
View File
@@ -0,0 +1,6 @@
# From https://get.videolan.org/bitstream/1.5/bitstream-1.5.tar.bz2.md5
md5 34630d13332fd1575bcc8531b0a596be bitstream-1.5.tar.bz2
# From https://get.videolan.org/bitstream/1.5/bitstream-1.5.tar.bz2.sha256
sha256 45fc5a5a6e4537a69fa8440821e87b76252135180a3070c631b0b36ce0a3b90a bitstream-1.5.tar.bz2
# Locally computed
sha256 9644a812f9a8377a59acb7092a36ce8882a39743425d9171a8fb84637e2f6e04 COPYING
+21
View File
@@ -0,0 +1,21 @@
################################################################################
#
# bitstream
#
################################################################################
BITSTREAM_VERSION = 1.5
BITSTREAM_SOURCE = bitstream-$(BITSTREAM_VERSION).tar.bz2
BITSTREAM_SITE = https://get.videolan.org/bitstream/$(BITSTREAM_VERSION)
BITSTREAM_LICENSE = MIT
BITSTREAM_LICENSE_FILES = COPYING
# package consists of header files only
BITSTREAM_INSTALL_STAGING = YES
BITSTREAM_INSTALL_TARGET = NO
define BITSTREAM_INSTALL_STAGING_CMDS
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) PREFIX=/usr install
endef
$(eval $(generic-package))