--- xserver-xorg-video-amdgpu-18.0.1.orig/.dir-locals.el +++ xserver-xorg-video-amdgpu-18.0.1/.dir-locals.el @@ -0,0 +1,12 @@ +((nil + (indent-tabs-mode . t) + (tab-width . 8) + (c-basic-offset . 8) + (c-file-style . "stroustrup") + (fill-column . 78) + (eval . (progn + (c-set-offset 'innamespace '0) + (c-set-offset 'inline-open '0))) + ) + (makefile-mode (indent-tabs-mode . t)) + ) --- xserver-xorg-video-amdgpu-18.0.1.orig/.editorconfig +++ xserver-xorg-video-amdgpu-18.0.1/.editorconfig @@ -0,0 +1,7 @@ +root=true + +[*] +indent_style=tab +tab_width=8 +indent_size=8 +charset=utf-8 --- xserver-xorg-video-amdgpu-18.0.1.orig/ChangeLog +++ xserver-xorg-video-amdgpu-18.0.1/ChangeLog @@ -1,439 +1,3 @@ -commit 9f37a44473ded8c669897379acbc750362c15ec6 -Author: Michel Dänzer -Date: Thu Mar 15 16:34:19 2018 +0100 - - Bump version for 18.0.1 release - -commit 8af989546907ad9fb491d940e1936d3bfc89276b -Author: Michel Dänzer -Date: Thu Mar 8 18:48:28 2018 +0100 - - Pass extents to amdgpu_scanout_do_update by value - - amdgpu_scanout_extents_intersect could leave the scanout damage region - in an invalid state, triggering debugging checks in pixman: - - *** BUG *** - In pixman_region_append_non_o: The expression r->x1 < r->x2 was false - Set a breakpoint on '_pixman_log_error' to debug - -commit 29649652a08ece7e07741be161b067a4484455ca -Author: Michel Dänzer -Date: Wed Mar 7 17:51:25 2018 +0100 - - Wrap the whole miPointerScreenFuncRec, instead of only Set/MoveCursor - - We were clobbering entries in mi's global miSpritePointerFuncs struct, - which cannot work correctly with multiple primary screens. Instead, - assign a pointer to our own wrapper struct to PointPriv->spriteFuncs. - - Fixes crashes with multiple primary screens. - - Fixes: 69e20839bfeb ("Keep track of how many SW cursors are visible on - each screen") - Reported-by: Mario Kleiner - -commit b4a28bdcfa7089e1cf708490ddf048b7df4c7eed -Author: Michel Dänzer -Date: Tue Mar 6 17:59:26 2018 +0100 - - Only change Set/MoveCursor hooks from what we expect - - Since xf86CursorCloseScreen runs after AMDGPUCloseScreen_KMS, - PointPriv->spriteFuncs doesn't point to the same struct in the latter as - in AMDGPUCursorInit_KMS. So we were restoring info->Set/MoveCursor to - the wrong struct. Then in the next server generation, - info->Set/MoveCursor would end up pointing to - drmmode_sprite_set/move_cursor, resulting in an infinite loop if one of - them was called. - - To avoid this, only change the Set/MoveCursor hooks if their values - match our expectations, otherwise leave them as is. This is kind of a - hack, but the alternative would be invasive and thus risky changes to - the way we're wrapping CloseScreen, and it's not even clear that can - work without changing xserver code. - - Fixes: 69e20839bfeb ("Keep track of how many SW cursors are visible on - each screen") - (Ported from radeon commit 504b8721b17a672caf1ed3eab087027c02458cab) - Acked-by: Alex Deucher - -commit 5cfba7b6221779832be915993765cb128a561087 -Author: Michel Dänzer -Date: Fri Mar 2 18:10:40 2018 +0100 - - Bump version for 18.0.0 release - -commit 374cb8fef4fdbb648af089ee80803ec78321f1b2 -Author: Keith Packard -Date: Thu Dec 21 18:54:34 2017 -0800 - - modesetting: Update property values at detect and uevent time - - We were updating the link-status property when a uevent came in, but - we also want to update the non-desktop property, and potentially - others as well. We also want to check at detect time in case we don't - get a hotplug event. - - This patch updates every property provided by the kernel, sending - changes to DIX so it can track things as well. - - Signed-off-by: Keith Packard - - (Ported from xserver commit a12485ed846b852ca14d17d1e58c8b0f2399e577, - slightly modifying logic to reduce indentation depth) - Reviewed-by: Alex Deucher - -commit 10054b6c3d9a755b30abb43020121b9631fa296d -Author: Daniel Martin -Date: Mon Nov 20 10:47:41 2017 +0100 - - modesetting: Reset output_id if drmModeGetConnector failed - - If drmModeGetConnector() fails in drmmode_output_detect(), we have to - reset the output_id to -1 too. - - Yet another spot leading to a potential NULL dereference when handling - the mode_output member as output_id was != -1. Though, this case should - be very hard to hit. - - Signed-off-by: Daniel Martin - - (Ported from xserver commit 6804875662363764683a86c1614e4cf3cc70a20a) - Reviewed-by: Alex Deucher - -commit fb58e06acd6c6bd59de2dbdadbca27eb1dd0025b -Author: Daniel Martin -Date: Mon Oct 23 10:31:21 2017 +0200 - - modesetting: Use helper to fetch drmModeProperty(Blob)s - - Replace the various loops to lookup drmModeProperty(Blob)s by - introducing helper functions. - - Signed-off-by: Daniel Martin - - (Ported from xserver commit f44935cdb7321af242ce9f242975f096807b97f7) - Reviewed-by: Alex Deucher - -commit 7854ace03f12207600ec8159ef8b2c5a562c4aee -Author: Christoph Haag -Date: Thu Mar 1 15:07:00 2018 +0100 - - fix include order for present.h configure test - - xorg-server.h defines _XSERVER64 which is used in X.h to choose the - correct definition of XID - - this prevents a failure in the present.h configure test that disables - DRI3 on X.Org 1.20 - - Reviewed-and-Tested-by: Michel Dänzer - -commit e3aae7a24296f640c0153d1459f3e0820485468a -Author: Michel Dänzer -Date: Fri Feb 16 17:15:24 2018 +0100 - - Disable all unused CRTCs before setting desired modes - - This might avoid modeset failures in some cases where a CRTC which isn't - used by Xorg was enabled before. - -commit f5ac5f385f41d1547cfd7ccc8bb35a537a8fffeb -Author: Michel Dänzer -Date: Thu Feb 15 18:37:09 2018 +0100 - - Don't bail from drmmode_set_desired_modes immediately - - If we fail to find or set the mode for a CRTC, keep trying for the - remaining CRTCs, and only return FALSE if we failed for all CRTCs that - should be on. - - Reviewed-by: Alex Deucher - Acked-by: Harry Wentland - -commit 37c7260bdef3a53b0f0295a531f33938e9aad8cf -Author: Michel Dänzer -Date: Wed Feb 14 19:06:33 2018 +0100 - - If glamor is too old for depth 30, fall back to ShadowFB - - Instead of not starting up at all. - - Reviewed-by: Alex Deucher - -commit 63b0c73a99fdf0eb7550a88df3a0052ce784e758 -Author: Michel Dänzer -Date: Wed Feb 14 18:50:18 2018 +0100 - - Revert "Guard against pAMDGPUEnt == NULL in AMDGPUFreeRec" - - This reverts commit a23d1ff700d486138c624c2023d8d251c73709af. - - pAMDGPUEnt cannot be NULL anymore here now that we no longer call - AMDGPUFreeRec directly from AMDGPUPreInit_KMS. - - Reviewed-by: Alex Deucher - -commit 103b7285845b786929fb509083c57e074c48f9be -Author: Michel Dänzer -Date: Tue Feb 13 19:11:00 2018 +0100 - - Don't call AMDGPUFreeRec from AMDGPUPreInit_KMS - - If the latter fails, Xorg will call AMDGPUFreeScreen_KMS, which calls - the former. - - Reviewed-by: Alex Deucher - -commit a23d1ff700d486138c624c2023d8d251c73709af -Author: Michel Dänzer -Date: Tue Feb 13 18:57:48 2018 +0100 - - Guard against pAMDGPUEnt == NULL in AMDGPUFreeRec - - This can happen if PreInit fails early. - - Reviewed-by: Alex Deucher - -commit b3095710b7c240ddefce794033a77033806f639d -Author: Michel Dänzer -Date: Tue Feb 13 18:26:06 2018 +0100 - - Always use screen depth/bpp for KMS framebuffers - - DRI clients can use depth 32 pixmaps while the screen is depth 24, in - which case page flipping would fail. - - Reported-by: Mario Kleiner - (Ported from radeon commit 733f606dd6ca8350e6e7f0858bfff5454ddc98ed) - Reviewed-by: Alex Deucher - -commit 6aee5770fb913713bb1b9a1af8f0d0892a66f21a -Author: Hawking Zhang -Date: Sat Jul 16 00:09:21 2016 +0800 - - Add 30bit RGB color format support - - Signed-off-by: Hawking Zhang - - [ Michel Dänzer: - * Require Xorg >= 1.19.99.1 for depth 30, otherwise it can't work with glamor - * Update manpage, per radeon commit - 574bfab4bf1fcd95163a8f33cea2889189429d30 ] - Reviewed-by: Alex Deucher - -commit ec397f7d3bfc89a5d8b8429c96e1b9572f6ee47d -Author: Qiang Yu -Date: Thu Nov 2 14:00:23 2017 +0800 - - Disable gamma set when deep color - - gamma set is disabled in kernel driver when deep color. - Enable it will confuse the user. - - Signed-off-by: Qiang Yu - - [ Michel Dänzer: Align drmmode_pre_init change with radeon commit - 1f1d4b1fa7d4b22dd8553f7e71251bf17ca7a7b1 ] - Reviewed-by: Alex Deucher - -commit c849081e24377a81afc1a05f2a5634b1e60c67db -Author: Mario Kleiner -Date: Mon Feb 12 18:18:46 2018 +0100 - - Define per x-screen individual drmmode_crtc_funcs - - This allows to en-/disable some functions depending on individual screen - settings. - - Prep work for more efficient depth 30 support. - - Suggested-by: Michel Dänzer - Signed-off-by: Mario Kleiner - (Ported from radeon commit 21f6753462464acfd3c452393328c977a375ce26) - Reviewed-by: Alex Deucher - -commit 348023cea43e0474352df0c2aa6345eb0b25c2f7 -Author: Michel Dänzer -Date: Mon Jan 22 18:23:18 2018 +0100 - - Fix linear check in amdgpu_glamor_share_pixmap_backing - - We were incorrectly interpreting the tiling information. - - Reported-by: Marek Olšák - Acked-by: Alex Deucher - Reviewed-by: Marek Olšák - -commit 69e20839bfeb3ee0b0a732d72de0a32d6c5435fc -Author: Michel Dänzer -Date: Fri Dec 22 18:33:58 2017 +0100 - - Keep track of how many SW cursors are visible on each screen - - And use this to determine when we cannot use page flipping for DRI - clients. We previously did this based on whether the HW cursor cannot - be used on at least one CRTC, which had at least two issues: - - * Even while the HW cursor cannot be used, no SW cursor may actually be - visible (e.g. because all cursors are disabled), in which case we can - use page flipping for DRI clients anyway - * Even while the HW cursor can be used, there may be SW cursors visible - from non-core pointer devices, in which case we cannot use page - flipping for DRI clients anyway - - Reviewed-by: Alex Deucher - -commit dfccaa7043ccb157a1f8be7313123792bb7e7001 -Author: Michel Dänzer -Date: Fri Dec 22 17:09:07 2017 +0100 - - Move cursor related ScreenInit calls into AMDGPUCursorInit_KMS - - And bail if xf86_cursors_init fails. - - Reviewed-by: Alex Deucher - -commit 1d65ac395971571094df21ca0408d5972c6b56ec -Author: Michel Dänzer -Date: Wed Nov 15 18:22:27 2017 +0100 - - Add amdgpu_dirty_src_drawable helper - - Allows tidying up amdgpu_dirty_src_equals and redisplay_dirty slightly. - - v2: - * Different approach for amdgpu_dirty_master - - Acked-by: Alex Deucher - -commit 3a4f7422913093ed9e26b73ecd7f9e773478cb1e -Author: Michel Dänzer -Date: Wed Nov 8 18:44:25 2017 +0100 - - Use correct ScrnInfoPtr in redisplay_dirty - - We used the destination pixmap's screen for flushing glamor. But when - we are the master screen, the destination pixmap is from the slave - screen. - - Fixes crash when the slave screen isn't using glamor as well. - - Bugzilla: https://bugs.freedesktop.org/103613 - Fixes: e15b23663cd1 ("Adapt to PixmapDirtyUpdateRec::src being a - DrawablePtr") - Reviewed-by: Alex Deucher - -commit 875339c1064f666a2391b4a5a495eddda9407ab6 -Author: Daniel Martin -Date: Fri Oct 20 10:05:35 2017 +0200 - - modesetting: Check crtc before searching link-status property - - No need to lookup the link-status property if we don't have a crtc. - - Signed-off-by: Daniel Martin - (Ported from xserver commit 8d7f7e24261e68459e6f0a865e243473f65fe7ad) - Reviewed-by: Alex Deucher - -commit 91cd0ceab2cabba75e3552d0fbfcfc55f6d132ee -Author: Keith Packard -Date: Mon Sep 25 16:18:22 2017 -0700 - - modesetting: Skip no-longer-present connectors when resetting BAD links - - Outputs may have NULL mode_output (connector) pointers if the - connector disappears while the server is running. Skip these when - resetting outputs with BAD link status. - - (Ported from xserver commit 37f4e7651a2fd51efa613a08a1e705553be33e76) - Reviewed-by: Alex Deucher - -commit f6b39bcd45cb06976ba8a3600df77fc471c63995 -Author: Michel Dänzer -Date: Thu Oct 19 18:02:05 2017 +0200 - - Always call drmModeFreeProperty after drmModeGetProperty - - We were not doing so in all cases, leaking memory allocated by the - latter. - - Reviewed-by: Alex Deucher - -commit 84aad09f18fed6b52b0c073f0bbd675a6de07807 -Author: Michel Dänzer -Date: Thu Oct 19 17:54:13 2017 +0200 - - Call TimerFree for timer created in LeaveVT - - We were leaking the memory allocated by TimerSet. - - Reviewed-by: Alex Deucher - -commit cfccf4c4e7e5c73fe4040fabeb1b43283cf29b33 -Author: Michel Dänzer -Date: Thu Oct 19 17:41:44 2017 +0200 - - Free memory returned by xf86GetEntityInfo - - We were leaking it. - - Reviewed-by: Alex Deucher - -commit 9d84934309e4ccd9a43c73d958b8ff10ef2fc990 -Author: Michel Dänzer -Date: Thu Oct 19 17:28:53 2017 +0200 - - Free pAMDGPUEnt memory in AMDGPUFreeRec - - We were freeing it earlier but then still trying to access it in - AMDGPUFreeRec. - - Reviewed-by: Alex Deucher - -commit b67a2b62b20c17db7471f5bbea591ab55806cb29 -Author: Michel Dänzer -Date: Thu Oct 19 16:46:35 2017 +0200 - - Bail if there's a problem with ShadowFB - - If we hit a problem while setting up ShadowFB, just carrying on trying - to set up HW acceleration instead is unlikely to work. - - (Ported from radeon commit 7d435354099119234d443b07e2df1c7b9f97cf3c) - Reviewed-by: Alex Deucher - -commit 55396cc45c9aae3b1985ced1044b6b93064667c3 -Author: Michel Dänzer -Date: Thu Oct 19 16:20:03 2017 +0200 - - Fix VT switching with ShadowFB - - We were trying to call acceleration specific functions from LeaveVT. - Instead, memset the scanout buffer to all 0 in LeaveVT and allocate a - new one in EnterVT. - - Bugzilla: https://bugs.freedesktop.org/102948 - Fixes: c16ff42f927d ("Make all active CRTCs scan out an all-black - framebuffer in LeaveVT") - (Ported from radeon commit 34da04daec82077571558ac3fe1ec0c1203a01ad) - Reviewed-by: Alex Deucher - -commit 2f72be038d22c54620e436af30121dd89f79a003 -Author: Darren Salt -Date: Wed Sep 13 03:22:19 2017 +0100 - - Clarify when TearFree is automatically enabled. - - Reviewed-by: Michel Dänzer - -commit 2ce59dfa1c57655137fcc7ccdf15a341e51383ff -Author: Michel Dänzer -Date: Thu Oct 5 11:15:34 2017 +0200 - - Post-release version bump - commit cf1767a9a58a3ec95622a7b8ca661113e2148da9 Author: Michel Dänzer Date: Fri Sep 8 16:19:48 2017 +0900 @@ -4413,7 +3977,7 @@ Must be enabled with - Option "DRI3" + Option "DRI3" in xorg.conf. --- xserver-xorg-video-amdgpu-18.0.1.orig/autogen.sh +++ xserver-xorg-video-amdgpu-18.0.1/autogen.sh @@ -0,0 +1,17 @@ +#! /bin/sh + +srcdir=`dirname "$0"` +test -z "$srcdir" && srcdir=. + +ORIGDIR=`pwd` +cd "$srcdir" + +autoreconf -f -v --install || exit 1 +cd "$ORIGDIR" || exit $? + +git config --local --get format.subjectPrefix >/dev/null 2>&1 || + git config --local format.subjectPrefix "PATCH xf86-video-amdgpu" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir"/configure "$@" +fi --- xserver-xorg-video-amdgpu-18.0.1.orig/debian/README.source +++ xserver-xorg-video-amdgpu-18.0.1/debian/README.source @@ -0,0 +1,49 @@ +------------------------------------------------------ +Quick Guide To Patching This Package For The Impatient +------------------------------------------------------ + +1. Make sure you have quilt installed +2. Unpack the package as usual with "dpkg-source -x" +3. Run the "patch" target in debian/rules +4. Create a new patch with "quilt new" (see quilt(1)) +5. Edit all the files you want to include in the patch with "quilt edit" + (see quilt(1)). +6. Write the patch with "quilt refresh" (see quilt(1)) +7. Run the "clean" target in debian/rules + +Alternatively, instead of using quilt directly, you can drop the patch in to +debian/patches and add the name of the patch to debian/patches/series. + +------------------------------------ +Guide To The X Strike Force Packages +------------------------------------ + +The X Strike Force team maintains X packages in git repositories on +git.debian.org in the pkg-xorg subdirectory. Most upstream packages +are actually maintained in git repositories as well, so they often +just need to be pulled into git.debian.org in a "upstream-*" branch. +Otherwise, the upstream sources are manually installed in the Debian +git repository. + +The .orig.tar.gz upstream source file could be generated using this +"upstream-*" branch in the Debian git repository but it is actually +copied from upstream tarballs directly. + +Due to X.org being highly modular, packaging all X.org applications +as their own independent packages would have created too many Debian +packages. For this reason, some X.org applications have been grouped +into larger packages: xutils, xutils-dev, x11-apps, x11-session-utils, +x11-utils, x11-xfs-utils, x11-xkb-utils, x11-xserver-utils. +Most packages, including the X.org server itself and all libraries +and drivers are, however maintained independently. + +The Debian packaging is added by creating the "debian-*" git branch +which contains the aforementioned "upstream-*" branch plus the debian/ +repository files. +When a patch has to be applied to the Debian package, two solutions +are involved: +* If the patch is available in one of the upstream branches, it + may be git'cherry-picked into the Debian repository. In this + case, it appears directly in the .diff.gz. +* Otherwise, the patch is added to debian/patches/ which is managed + with quilt as documented in /usr/share/doc/quilt/README.source. --- xserver-xorg-video-amdgpu-18.0.1.orig/debian/changelog +++ xserver-xorg-video-amdgpu-18.0.1/debian/changelog @@ -0,0 +1,83 @@ +xserver-xorg-video-amdgpu (18.0.1-1) unstable; urgency=medium + + * New upstream release. + + -- Timo Aaltonen Tue, 20 Mar 2018 14:02:29 +0200 + +xserver-xorg-video-amdgpu (18.0.0-1) unstable; urgency=medium + + * New upstream release. + * control: Update VCS urls. + * control: Bump policy to 4.1.3, no changes. + + -- Timo Aaltonen Wed, 07 Mar 2018 04:44:35 +0200 + +xserver-xorg-video-amdgpu (1.4.0-1) unstable; urgency=medium + + * New upstream release. + * control: Bump libdrm-dev build-dep to 2.4.78 to match configure.ac. + + -- Timo Aaltonen Fri, 29 Sep 2017 00:17:42 +0300 + +xserver-xorg-video-amdgpu (1.3.0-1) unstable; urgency=medium + + * New upstream release. + * control: Bump libdrm-dev build-dep. + + -- Timo Aaltonen Tue, 27 Jun 2017 11:44:43 +0300 + +xserver-xorg-video-amdgpu (1.2.0-1) unstable; urgency=medium + + * New upstream release. + * control: Bump policy to 3.9.8, no changes. + + -- Timo Aaltonen Thu, 17 Nov 2016 11:21:36 +0200 + +xserver-xorg-video-amdgpu (1.1.2-1) unstable; urgency=medium + + * New upstream release. + - fix-configdir.diff: Dropped, fixed upstream + + [ Julien Cristau ] + * Use https URL in debian/watch. + + -- Timo Aaltonen Fri, 16 Sep 2016 13:18:07 +0300 + +xserver-xorg-video-amdgpu (1.1.1-1) unstable; urgency=medium + + * New upstream release. + * fix-configdir.diff: Fix installing the config snippet. + + -- Timo Aaltonen Thu, 15 Sep 2016 23:55:07 +0300 + +xserver-xorg-video-amdgpu (1.1.0-1) unstable; urgency=medium + + * New upstream release. + * control: Bump policy to 3.9.7, no changes. + + -- Timo Aaltonen Thu, 07 Apr 2016 13:32:21 +0300 + +xserver-xorg-video-amdgpu (1.0.1-1) unstable; urgency=medium + + * New upstream release. + + -- Timo Aaltonen Mon, 22 Feb 2016 06:36:08 +0200 + +xserver-xorg-video-amdgpu (1.0.0-1) unstable; urgency=medium + + [ Andreas Boll ] + * First upstream release. + * Let uscan verify tarball signatures. + * Replace non-existing Suggests: linux-firmware with new firmware-amd- + graphics. + * Remove unused libpciaccess-dev build-dep. + * Update list of supported chips. + * Use https for Vcs-* fields. + + -- Timo Aaltonen Tue, 24 Nov 2015 15:46:07 +0200 + +xserver-xorg-video-amdgpu (0.0.01~git20150807-1) unstable; urgency=low + + * Initial release (Closes: #795686) + + -- Timo Aaltonen Sun, 16 Aug 2015 11:26:30 +0300 --- xserver-xorg-video-amdgpu-18.0.1.orig/debian/compat +++ xserver-xorg-video-amdgpu-18.0.1/debian/compat @@ -0,0 +1 @@ +9 --- xserver-xorg-video-amdgpu-18.0.1.orig/debian/control +++ xserver-xorg-video-amdgpu-18.0.1/debian/control @@ -0,0 +1,60 @@ +Source: xserver-xorg-video-amdgpu +Section: x11 +Priority: optional +Maintainer: Debian X Strike Force +Uploaders: Timo Aaltonen +Build-Depends: + debhelper (>= 9), + dh-autoreconf, + quilt, + libdrm-dev (>= 2.4.78) [!hurd-i386], + libgl1-mesa-dev | libgl-dev, + libgbm-dev, + libudev-dev [linux-any], + pkg-config, + x11proto-core-dev, + x11proto-dri2-dev, + x11proto-fonts-dev, + x11proto-randr-dev (>= 1.2), + x11proto-render-dev, + x11proto-video-dev, + x11proto-xext-dev, + x11proto-xf86dri-dev, + xserver-xorg-dev (>= 2:1.16), + xutils-dev (>= 1:7.5+4) +Standards-Version: 4.1.3 +Vcs-Git: https://salsa.debian.org/xorg-team/driver/xserver-xorg-video-amdgpu.git +Vcs-Browser: https://salsa.debian.org/xorg-team/driver/xserver-xorg-video-amdgpu.git + +Package: xserver-xorg-video-amdgpu +Architecture: linux-any +Depends: + ${shlibs:Depends}, + ${misc:Depends}, + ${xviddriver:Depends}, +Provides: ${xviddriver:Provides} +Suggests: firmware-amd-graphics +Description: X.Org X server -- AMDGPU display driver + This package provides the 'amdgpu' driver for the AMD Radeon cards. The + following chip families should be supported: Bonaire, Hawaii, Kaveri, Kabini + Mullins, Iceland, Tonga, Carrizo, Fiji, Stoney. + . + More information about X.Org can be found at: + + . + This package is built from the X.org xf86-video-amdgpu driver module. + +Package: xserver-xorg-video-amdgpu-dbg +Architecture: linux-any +Depends: + ${misc:Depends}, + xserver-xorg-video-amdgpu (= ${binary:Version}) +Section: debug +Priority: extra +Description: X.Org X server -- AMDGPU display driver (debugging symbols) + This package provides the 'amdgpu' driver for the AMD Radeon cards. The + following chip families should be supported: Bonaire, Hawaii, Kaveri, Kabini + Mullins, Iceland, Tonga, Carrizo, Fiji, Stoney. + . + This package provides debugging symbols for this X.org X driver. + --- xserver-xorg-video-amdgpu-18.0.1.orig/debian/copyright +++ xserver-xorg-video-amdgpu-18.0.1/debian/copyright @@ -0,0 +1,90 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: xserver-xorg-video-amdgpu +Source: http://xorg.freedesktop.org/releases/individual/driver/ + +Files: * +Copyright: 2012-2014 Advanced Micro Devices, Inc +License: MIT + +Files: src/amdgpu_dri2.c +Copyright: 2008 Jerome Glisse + 2008 Kristian Høgsberg +License: MIT + +Files: src/amdgpu_dri2.h +Copyright: 2008 Jerome Glisse +License: MIT + +Files: src/amdgpu_dri3.c +Copyright: 2013-2014 Intel Corporation + 2015 Advanced Micro Devices, Inc +License: MIT + +Files: src/amdgpu_drm_queue.c src/amdgpu_drm_queue.h +Copyright: 2007 Red Hat, Inc + 2015 Advanced Micro Devices, Inc +License: MIT + +Files: src/amdgpu_drv.h src/amdgpu_probe.c src/amdgpu_probe.h +Copyright: 2000 ATI Technologies Inc. + 2000 VA Linux Systems Inc. +License: MIT + +Files: src/amdgpu_glamor.c src/amdgpu_glamor.h +Copyright: 2011 Intel Corporation +License: MIT + +Files: src/amdgpu_glamor_wrappers.c +Copyright: 2001 Keith Packard + The XFree86 Project Inc + 2008 Red Hat, Inc + 2000 SuSE, Inc + 2010 Intel Corporation + 2012,2015 Advanced Micro Devices, Inc. +License: MIT + +Files: src/amdgpu_kms.c +Copyright: 2009 Red Hat, Inc +License: MIT + +Files: src/amdgpu_present.c src/amdgpu_sync.c +Copyright: 2013-2014 Intel Corporation + 2015 Advanced Micro Devices, Inc +License: MIT + +Files: src/amdgpu_misc.c src/amdgpu_version.h +Copyright: 2000-2004 Marc Aurele La France +License: MIT + +Files: src/compat-api.h src/drmmode_display.h src/pcidb/parse_pci_ids.pl +Copyright: 2007-2012 Red Hat, Inc +License: MIT + +Files: src/simple_list.h +Copyright: 1999-2001 Brian Paul + 1997 Keith Whitwell +License: MIT + +Files: debian/* +Copyright: 2015 Timo Aaltonen +License: MIT + +License: MIT + Permission to use, copy, modify, distribute, and sell this software + and its documentation for any purpose is hereby granted without + fee, provided that the above copyright notice appear in all copies + and that both that copyright notice and this permission notice + appear in supporting documentation, and that the name of the authors + not be used in advertising or publicity pertaining to distribution of the + software without specific, written prior permission. The authors make no + representations about the suitability of this software for any + purpose. It is provided "as is" without express or implied + warranty. + . + THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN + NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR + CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS + OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --- xserver-xorg-video-amdgpu-18.0.1.orig/debian/patches/series +++ xserver-xorg-video-amdgpu-18.0.1/debian/patches/series @@ -0,0 +1 @@ +#placeholder --- xserver-xorg-video-amdgpu-18.0.1.orig/debian/rules +++ xserver-xorg-video-amdgpu-18.0.1/debian/rules @@ -0,0 +1,32 @@ +#!/usr/bin/make -f +#DH_VERBOSE = 1 + +DPKG_EXPORT_BUILDFLAGS = 1 +include /usr/share/dpkg/default.mk + +XXV=xserver-xorg-video + +override_dh_auto_configure: + dh_auto_configure --builddirectory=build/ -- \ + --libdir=/usr/lib \ + --disable-silent-rules + +# Kill *.la files, and forget no-one: +override_dh_install: + find debian/tmp -name '*.la' -delete + dh_install --fail-missing + +# Debug packages: +override_dh_strip: + dh_strip -p$(XXV)-amdgpu --dbg-package=$(XXV)-amdgpu-dbg + +# That's a plugin, use appropriate warning level: +override_dh_shlibdeps: + dh_shlibdeps -- --warnings=6 + +%: + dh $@ --with quilt,autoreconf,xsf --builddirectory=build/ --parallel + + + + --- xserver-xorg-video-amdgpu-18.0.1.orig/debian/source/format +++ xserver-xorg-video-amdgpu-18.0.1/debian/source/format @@ -0,0 +1 @@ +1.0 --- xserver-xorg-video-amdgpu-18.0.1.orig/debian/upstream/signing-key.asc +++ xserver-xorg-video-amdgpu-18.0.1/debian/upstream/signing-key.asc @@ -0,0 +1,26 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- + +mQGiBDsehS8RBACbsIQEX31aYSIuEKxEnEX82ezMR8z3LG8ktv1KjyNErUX9Pt7A +UC7W3W0bLUhu8Le8S2va6hi7GfSAifl0ih3k6Bv1Itzgnd+7ZmSrvCN8yGJaHNQf +AevAuEboIb+MaVHo9EMJj4ikOcRZCmQWw7evu/D9uQdtkCnRY9iJiAGxbwCguBHt +poGMxDOINCr5UU6qt+m4O+UD/355ohBBzzyh49lTj0kTFKr0Ozd20G2FbcqHgfFL +1dc1MPyigej2gLga2osu2QY0ObvAGkOuWBi3LTY8Zs8uqFGDC4ZAwMPoFy3yzu3n +e6T7d/68rJil0QcdQjzzHi6ekqHuhst4a+/+D23hZa8MJBEcdOhRhsaDVGAJSFEQ +B1qLBACOs0xN+XblejO35gsDSVVk8s+FUUw3TSWJBfZa3ImpV2U2tBO4qck+wqbH +NfdnU/crrsHahjzBjvk8Up7VoY8oT+z03sal2vXEonS279xN2B92TttrAgwosujg +uFO/7tvzymWC76rDEwue8TsADE11ErjwaBTs8ZXfnN/uAANgPLQjTWljaGVsIERh +ZW56ZXIgPGRhZW56ZXJAZGViaWFuLm9yZz6IXwQTEQIAFwUCOx6FMAULBwoDBAMV +AwIDFgIBAheAABIJEFqBr45q27IAB2VHUEcAAQFmmQCfSxXBxMctJqTLwn2Ijv5V +JYbUWK8AmQGwoAUEMLmo8Ceu/NJDgkkS92xttCNNaWNoZWwgRGFlbnplciA8bWlj +aGVsQGRhZW56ZXIubmV0PohmBBMRAgAeBQJAVfEmAhsDBgsJCAcDAgMVAgMDFgIB +Ah4BAheAABIJEFqBr45q27IAB2VHUEcAAQGKzwCfcpKJ1yN6EHF/NzdqswhErSzV +uO4Ani1pv0Ij2I6rRlJ50m8rk0HyMkpCuQENBDsehUUQBACWZHL5JT8CQoDYsN+6 +dBkoSphRhqn/2t8WWRKYyKjcc7IRURZ3mc3uH+S4c219f7yJufmV7BFspqSX2c8g +pmD8POkHBccmX5ZAMR8fS3g/vPRJcW8OsE9AnC70r/ETn1NZvGIRm1eoNs1siw9P +52kBlW/HuBYVShjWNhBGx4BQawADBgP9FZLRTgsRQXcy0Ne0Qk8Aid8acj+KrCyR +9MgqANuqx9sxNkcwcoa0xU2Gc2xRInd3XRohzgRC/mzvthjbX4mCpm05I9bTGSfC ++obijjWlawEhcy72WtnZXNs42vWUpLCpoHuQTkyloG8nqRHOasUo7mLGK1+cXy4E +2QuWm4Yc7aWITgQYEQIABgUCOx6FRQASCRBaga+OatuyAAdlR1BHAAEBlscAn2Uf +k2d6/3p4Cuyz/NX7KpL2dQ8WAJ9UD5JEakhfofed8PSqOM7jOO3LCA== +=P0UI +-----END PGP PUBLIC KEY BLOCK----- --- xserver-xorg-video-amdgpu-18.0.1.orig/debian/watch +++ xserver-xorg-video-amdgpu-18.0.1/debian/watch @@ -0,0 +1,4 @@ +#git=git://anongit.freedesktop.org/xorg/driver/xf86-video-amdgpu +version=3 +opts=pgpsigurlmangle=s/$/.sig/ \ +https://xorg.freedesktop.org/releases/individual/driver/ xf86-video-amdgpu-(.*)\.tar\.gz --- xserver-xorg-video-amdgpu-18.0.1.orig/debian/xserver-xorg-video-amdgpu.install +++ xserver-xorg-video-amdgpu-18.0.1/debian/xserver-xorg-video-amdgpu.install @@ -0,0 +1,3 @@ +usr/lib/xorg/modules/drivers/amdgpu_drv.so +usr/share/man/man4/amdgpu.4 +usr/share/X11/xorg.conf.d/10-amdgpu.conf --- xserver-xorg-video-amdgpu-18.0.1.orig/debian/xserver-xorg-video-amdgpu.links +++ xserver-xorg-video-amdgpu-18.0.1/debian/xserver-xorg-video-amdgpu.links @@ -0,0 +1,2 @@ +usr/share/bug/xserver-xorg-core/script usr/share/bug/xserver-xorg-video-amdgpu/script +