initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
--- a/configure.ac 2008-06-23 10:39:28.000000000 -0400
|
||||
+++ b/configure.ac 2008-06-23 10:40:46.000000000 -0400
|
||||
@@ -85,14 +85,20 @@ sdkdir=$(pkg-config --variable=sdkdir xo
|
||||
AC_HEADER_STDC
|
||||
|
||||
if test "$DRI" != no; then
|
||||
- AC_CHECK_FILE([${sdkdir}/dri.h],
|
||||
+ if test "$cross_compiling" = "no" ; then
|
||||
+ AC_CHECK_FILE([${sdkdir}/dri.h],
|
||||
[have_dri_h="yes"], [have_dri_h="no"])
|
||||
- AC_CHECK_FILE([${sdkdir}/sarea.h],
|
||||
+ AC_CHECK_FILE([${sdkdir}/sarea.h],
|
||||
[have_sarea_h="yes"], [have_sarea_h="no"])
|
||||
- AC_CHECK_FILE([${sdkdir}/dristruct.h],
|
||||
+ AC_CHECK_FILE([${sdkdir}/dristruct.h],
|
||||
[have_dristruct_h="yes"], [have_dristruct_h="no"])
|
||||
- AC_CHECK_FILE([${sdkdir}/damage.h],
|
||||
+ AC_CHECK_FILE([${sdkdir}/damage.h],
|
||||
[have_damage_h="yes"], [have_damage_h="no"])
|
||||
+ else
|
||||
+ have_dri_h="yes"
|
||||
+ have_sarea_h="yes"
|
||||
+ have_dristruct_h="yes"
|
||||
+ fi
|
||||
fi
|
||||
|
||||
AC_MSG_CHECKING([whether to include DRI support])
|
||||
@@ -0,0 +1,5 @@
|
||||
config BR2_PACKAGE_XDRIVER_XF86_VIDEO_MACH64
|
||||
bool "xf86-video-mach64"
|
||||
select BR2_PACKAGE_XORGPROTO
|
||||
help
|
||||
mach64 video driver
|
||||
@@ -0,0 +1,7 @@
|
||||
# From https://lists.x.org/archives/xorg-announce/2018-May/002896.html
|
||||
md5 0e12f9a3b5659e1e27e03adc42b04d99 xf86-video-mach64-6.9.6.tar.bz2
|
||||
sha1 1fdf0c3488ab88cb46b563efee166a5d54a01932 xf86-video-mach64-6.9.6.tar.bz2
|
||||
sha256 7a0707c71bb522430f83bb5e9d9ee697e661e35534a3a2d10834f86b327a3c9c xf86-video-mach64-6.9.6.tar.bz2
|
||||
sha512 687f6ac60491b704d5c4788463763d2f4bf725611e10bd2163156963fe0a8fdbffe0a1b7c737eff131f01759e43b5ec3544a7dabe66a67e85b286dcb969da2f1 xf86-video-mach64-6.9.6.tar.bz2
|
||||
# Locally computed
|
||||
sha256 a7d68021893bced0d709338a59a137c74b11e624880e110e4a2f14ccef475120 COPYING
|
||||
@@ -0,0 +1,19 @@
|
||||
################################################################################
|
||||
#
|
||||
# xdriver_xf86-video-mach64
|
||||
#
|
||||
################################################################################
|
||||
|
||||
XDRIVER_XF86_VIDEO_MACH64_VERSION = 6.9.6
|
||||
XDRIVER_XF86_VIDEO_MACH64_SOURCE = xf86-video-mach64-$(XDRIVER_XF86_VIDEO_MACH64_VERSION).tar.bz2
|
||||
XDRIVER_XF86_VIDEO_MACH64_SITE = http://xorg.freedesktop.org/releases/individual/driver
|
||||
XDRIVER_XF86_VIDEO_MACH64_LICENSE = MIT
|
||||
XDRIVER_XF86_VIDEO_MACH64_LICENSE_FILES = COPYING
|
||||
XDRIVER_XF86_VIDEO_MACH64_AUTORECONF = YES
|
||||
XDRIVER_XF86_VIDEO_MACH64_DEPENDENCIES = xserver_xorg-server xorgproto
|
||||
|
||||
ifeq ($(BR2_PACKAGE_MESA3D_DRI_DRIVER),)
|
||||
XDRIVER_XF86_VIDEO_MACH64_CONF_OPTS = --disable-dri
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user