1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

xf86-video-ati: Update to 7.5.0

This update brings several bug fixes. Furthermore, it improves Glamor
support, though this feature isn't supported by FreeBSD yet.

Differential Revision:	https://reviews.freebsd.org/D1106
Tested by:	Many on freebsd-x11@
Reviewed by:	bapt@, kwm@
Approved by:	bapt@
This commit is contained in:
Jean-Sébastien Pédron 2014-11-04 20:32:43 +00:00
parent 4d307e20a7
commit d0a8ed3d74
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=372171
3 changed files with 25 additions and 16 deletions

View File

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= xf86-video-ati
PORTVERSION= 7.2.0
PORTREVISION= 4
PORTVERSION= 7.5.0
CATEGORIES= x11-drivers
MAINTAINER= x11@FreeBSD.org
@ -10,7 +9,11 @@ COMMENT= X.Org ati display driver
USE_GL= gl
XORG_CAT= driver
USE_XORG= xf86driproto xineramaproto xf86miscproto glproto
USE_XORG= xf86driproto \
xineramaproto \
xf86miscproto \
glproto \
presentproto
INSTALL_TARGET= install-strip
# No Radeon kernel driver on non-x86 and PC98.
ONLY_FOR_ARCHS= i386 amd64

View File

@ -1,4 +1,2 @@
SHA256 (xorg/driver/xf86-video-ati-6.14.6.tar.bz2) = aa5286b3e4f0187d7df14785c06dd800255d9405205dbf061da5d77df86bec36
SIZE (xorg/driver/xf86-video-ati-6.14.6.tar.bz2) = 1139495
SHA256 (xorg/driver/xf86-video-ati-7.2.0.tar.bz2) = f30f5efdc8d7d18d06eda7ef2f91a8b7290f1cfbf6ff26362cd47ab8969daec4
SIZE (xorg/driver/xf86-video-ati-7.2.0.tar.bz2) = 824613
SHA256 (xorg/driver/xf86-video-ati-7.5.0.tar.bz2) = ec3e6f06b6cf9a40c72aafa3448aae8b034c80b37410ca9442d5cf6806e07936
SIZE (xorg/driver/xf86-video-ati-7.5.0.tar.bz2) = 809756

View File

@ -1,5 +1,5 @@
--- src/radeon_kms.c.orig 2013-08-07 10:44:09.000000000 +0200
+++ src/radeon_kms.c 2013-08-31 19:29:11.369001510 +0200
--- src/radeon_kms.c.orig 2014-10-02 05:31:27.000000000 +0200
+++ src/radeon_kms.c 2014-10-23 18:56:18.359108170 +0200
@@ -30,6 +30,8 @@
#include <errno.h>
@ -9,7 +9,7 @@
/* Driver data structures */
#include "radeon.h"
#include "radeon_reg.h"
@@ -270,7 +272,7 @@
@@ -280,7 +282,7 @@
radeon_dirty_update(ScreenPtr screen)
{
RegionPtr region;
@ -18,20 +18,28 @@
if (xorg_list_is_empty(&screen->pixmap_dirty_list))
return;
@@ -606,6 +608,16 @@
@@ -589,7 +591,7 @@
#endif
struct pci_device *dev = info->PciInfo;
char *busid;
- int fd;
+ int fd, err;
#ifdef XF86_PDEV_SERVER_FD
if (pRADEONEnt->platform_dev) {
@@ -608,6 +610,15 @@
dev->domain, dev->bus, dev->dev, dev->func);
#endif
+ err = kldload("radeonkms");
+ if (err == -1 && errno != EEXIST) {
+
+ xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
+ "[drm] Failed to load kernel module for %s: %s\n",
+ busid, strerror(errno));
+ free(busid);
+ return FALSE;
+ return -1;
+ }
+
info->dri2.drm_fd = drmOpen("radeon", busid);
if (info->dri2.drm_fd == -1) {
fd = drmOpen(NULL, busid);
if (fd == -1)
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,