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
+10
View File
@@ -0,0 +1,10 @@
config BR2_PACKAGE_XLIB_LIBX11
bool "libX11"
select BR2_PACKAGE_LIBXCB
select BR2_PACKAGE_XUTIL_UTIL_MACROS
select BR2_PACKAGE_XLIB_XTRANS
select BR2_PACKAGE_XLIB_LIBXAU
select BR2_PACKAGE_XLIB_LIBXDMCP
select BR2_PACKAGE_XORGPROTO
help
X.Org X11 library
@@ -0,0 +1,6 @@
# From https://lists.x.org/archives/xorg-announce/2021-June/003092.html
sha256 1cfa35e37aaabbe4792e9bb690468efefbfbf6b147d9c69d6f90d13c3092ea6c libX11-1.7.2.tar.bz2
sha512 d01e5c1848c76218605e5af2d353de6b301a251555b52a38dbe930e6635d5e8a92d1486eb6d328ad5d42a5939e0d16868ffa19a75e5a7863d1a32e0d0727bdc7 libX11-1.7.2.tar.bz2
# Locally computed
sha256 2daec087a88e7c9b8082557cdeebad5bbb8155a4137472f0b22e269cd99d0c1e COPYING
+42
View File
@@ -0,0 +1,42 @@
################################################################################
#
# xlib_libX11
#
################################################################################
XLIB_LIBX11_VERSION = 1.7.2
XLIB_LIBX11_SOURCE = libX11-$(XLIB_LIBX11_VERSION).tar.bz2
XLIB_LIBX11_SITE = https://xorg.freedesktop.org/archive/individual/lib
XLIB_LIBX11_LICENSE = MIT
XLIB_LIBX11_LICENSE_FILES = COPYING
XLIB_LIBX11_CPE_ID_VENDOR = x.org
XLIB_LIBX11_CPE_ID_PRODUCT = libx11
XLIB_LIBX11_INSTALL_STAGING = YES
XLIB_LIBX11_DEPENDENCIES = \
libxcb \
xutil_util-macros \
xlib_xtrans \
xlib_libXau \
xlib_libXdmcp \
xorgproto \
host-xorgproto
HOST_XLIB_LIBX11_DEPENDENCIES = \
host-libxcb \
host-xutil_util-macros \
host-xlib_xtrans \
host-xlib_libXau \
host-xlib_libXdmcp \
host-xorgproto
XLIB_LIBX11_CONF_OPTS = \
--disable-malloc0returnsnull \
--disable-specs \
--without-perl
HOST_XLIB_LIBX11_CONF_OPTS = \
--disable-specs \
--without-perl
$(eval $(autotools-package))
$(eval $(host-autotools-package))