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
+17
View File
@@ -0,0 +1,17 @@
config BR2_PACKAGE_LIBQRTR_GLIB
bool "libqrtr-glib"
depends on BR2_USE_WCHAR # glib2
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
depends on BR2_USE_MMU # glib2
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_15 # da7653f0faab
select BR2_PACKAGE_LIBGLIB2
help
Qualcomm IPC Router protocol helper library.
Optional dependency for libqmi >= 1.28.0.
https://www.freedesktop.org/software/libqmi/libqrtr-glib/latest/
comment "libqrtr-glib needs a toolchain w/ wchar, threads, headers >= 4.15"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_15
+3
View File
@@ -0,0 +1,3 @@
# Locally computed
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING.LIB
sha256 30d879b2ade6f8f461def3a677755db5c0238babf688d5c83c03b3e6abe35cee libqrtr-glib-1.0.0.tar.xz
+22
View File
@@ -0,0 +1,22 @@
################################################################################
#
# libqrtr-glib
#
################################################################################
LIBQRTR_GLIB_VERSION = 1.0.0
LIBQRTR_GLIB_SITE = http://www.freedesktop.org/software/libqmi
LIBQRTR_GLIB_SOURCE = libqrtr-glib-$(LIBQRTR_GLIB_VERSION).tar.xz
LIBQRTR_GLIB_LICENSE = LGPL-2.1+
LIBQRTR_GLIB_LICENSE_FILES = COPYING.LIB
LIBQRTR_GLIB_INSTALL_STAGING = YES
LIBQRTR_GLIB_DEPENDENCIES = libglib2
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
LIBQRTR_GLIB_CONF_OPTS += --enable-introspection
LIBQRTR_GLIB_DEPENDENCIES += gobject-introspection
else
LIBQRTR_GLIB_CONF_OPTS += --disable-introspection
endif
$(eval $(autotools-package))