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
@@ -0,0 +1,28 @@
From e1f9fc0a11559c1200005c4bfe34cd217ec117b4 Mon Sep 17 00:00:00 2001
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Date: Fri, 25 Oct 2019 19:03:32 +0200
Subject: [PATCH] pciaccess.pc.in: add Libs.Private
Add Libs.Private in pciaccess.pc.in so applications that wants to link
statically with pciaccess will know that they have to link with its
dependencies such as -lz
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[Upstream status:
https://gitlab.freedesktop.org/xorg/lib/libpciaccess/merge_requests/10]
---
pciaccess.pc.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/pciaccess.pc.in b/pciaccess.pc.in
index 706c5f7..c2da3d9 100644
--- a/pciaccess.pc.in
+++ b/pciaccess.pc.in
@@ -8,3 +8,4 @@ Description: Library providing generic access to the PCI bus and devices.
Version: @PACKAGE_VERSION@
Cflags: -I${includedir}
Libs: -L${libdir} -lpciaccess
+Libs.Private: @PCIACCESS_LIBS@
--
2.23.0
+8
View File
@@ -0,0 +1,8 @@
config BR2_PACKAGE_LIBPCIACCESS
bool "libpciaccess"
help
X.Org libpciaccess
Generic PCI access library
https://gitlab.freedesktop.org/xorg/lib/libpciaccess
+7
View File
@@ -0,0 +1,7 @@
# From https://lists.x.org/archives/xorg-announce/2019-July/003014.html
md5 b34e2cbdd6aa8f9cc3fa613fd401a6d6 libpciaccess-0.16.tar.bz2
sha1 ffaa13f2df5f822da1089b55223b217c142ef919 libpciaccess-0.16.tar.bz2
sha256 214c9d0d884fdd7375ec8da8dcb91a8d3169f263294c9a90c575bf1938b9f489 libpciaccess-0.16.tar.bz2
sha512 2f250048a270dfc0823d4bdd613aa272c58a80eaafd922850f56c4b6f7a45a263ed4cf521b52b49f04484ea44ebefb7407d079aa058318a5751ffb181e38fed1 libpciaccess-0.16.tar.bz2
# Hash for license file:
sha256 47012fd746980d1712ac4f3841ab6164bda1d2b84880760e45dbe1e1dc07f608 COPYING
+21
View File
@@ -0,0 +1,21 @@
################################################################################
#
# libpciaccess
#
################################################################################
LIBPCIACCESS_VERSION = 0.16
LIBPCIACCESS_SOURCE = libpciaccess-$(LIBPCIACCESS_VERSION).tar.bz2
LIBPCIACCESS_SITE = http://xorg.freedesktop.org/releases/individual/lib
LIBPCIACCESS_LICENSE = MIT
LIBPCIACCESS_LICENSE_FILES = COPYING
LIBPCIACCESS_INSTALL_STAGING = YES
ifeq ($(BR2_PACKAGE_ZLIB),y)
LIBPCIACCESS_CONF_OPTS += --with-zlib
LIBPCIACCESS_DEPENDENCIES += zlib
else
LIBPCIACCESS_CONF_OPTS += --without-zlib
endif
$(eval $(autotools-package))