--- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/.dir-locals.el +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/.dir-locals.el @@ -0,0 +1,12 @@ +((nil + (indent-tabs-mode . t) + (tab-width . 8) + (c-basic-offset . 4) + (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-ati-hwe-18.04-19.0.1.orig/.editorconfig +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/.editorconfig @@ -0,0 +1,13 @@ +root=true + +[*] +indent_style=tab +tab_width=8 +indent_size=4 +charset=utf-8 + +[src/{drmmode_display.c,radeon_dri3.c,radeon_glamor.c,radeon_glamor.h,radeon_glamor_wrappers.c}] +indent_size=8 + +[src/ati.c] +indent_style=space --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/ChangeLog +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/ChangeLog @@ -1,217 +1,3 @@ -commit 36703f66c3b06875651606a6280d5dc9d9dad51e -Author: Michel Dänzer -Date: Tue Mar 19 18:01:02 2019 +0100 - - Bump version for 19.0.1 release - -commit 4407c78bd86da4460ee07a15a365e07d99e0dd27 -Author: Dave Airlie -Date: Thu Mar 14 11:17:32 2019 +0100 - - modesetting: add tile property support - - This adds tiling support to the driver, it retrieves the tile info from - the kernel and translates it into the server format and exposes the - property. - - (Ported from xserver commits 8fb8bbb3062f1a06621ab7030a9e89d5e8367b35 - and 6abdb54a11dac4e8854ff94ecdcb90a14321ab31) - (Ported from amdgpu commit 6ee857726166f495abcd68e4ff60e3a09593d079) - Reviewed-by: Alex Deucher - -commit 79bc0e054f37026377d54cac6cd8127d4aa9baca -Author: Michel Dänzer -Date: Thu Mar 14 11:10:51 2019 +0100 - - Use radeon_finish in drmmode_crtc_scanout_update - - radeon_glamor_finish only works if we're using glamor, otherwise it'll - crash. - - Fixes: ce7db51020d3 "Cancel pending scanout update in drmmode_crtc_scanout_update" - Bug: https://bugs.debian.org/924540 - Reviewed-by: Alex Deucher - -commit f6cd4a67d7de5d3ff1a6e58a8c83749fc8ffc310 -Author: Michel Dänzer -Date: Fri Mar 8 11:48:10 2019 +0100 - - Revert "glamor: Avoid glamor_create_pixmap for pixmaps backing windows" - - This reverts commit 274703087f80342f51fa69c935bb9a1cb0c4ae47. - - Reports of visual corruption were bisected to this, e.g. - https://bugs.archlinux.org/task/61941 . I can reproduce this with Turks, - but not with Bonaire. I assume it's a Mesa/glamor bug, but let's revert - for now. - - Acked-by: Alex Deucher - -commit 0d132d99e0b750896a78f47d73a8639680495d8c -Author: Michel Dänzer -Date: Wed Mar 6 17:48:03 2019 +0100 - - Bump version for 19.0.0 release - -commit c301b8af25d2c2cd49035a4395ebe6c3612df366 -Author: Michel Dänzer -Date: Fri Mar 1 18:28:11 2019 +0100 - - dri2: Call drm_queue_handle_deferred in dri2_deferred_event - - drm_queue_handler just puts the event on the signalled list; without - calling drm_queue_handle_deferred, actual processing of the event may be - delayed indefinitely, e.g. until another event arrives from the kernel. - - This could result in DRI2 clients hanging during DPMS off. - - Fixes: ba83a866af5a "Add radeon_drm_handle_event wrapper for - drmHandleEvent" - (Ported from amdgpu commit 09be74a3d1dd9604336d9a27f98d132b262dcbaf) - Reviewed-by: Alex Deucher - -commit 705020b6247eaa062edc9c88e6ad52f8c5468051 -Author: Michel Dänzer -Date: Fri Mar 1 18:23:30 2019 +0100 - - present: Check that flip and screen pixmap pitches match - - If they don't, flipping will result in corrupted display. - - Test case: - - * Run Xorg at 1920x1080 with no window manager - * glxgears -geometry 2048x1080 - - The Present extension code in xserver 1.21 will check for this. - - (Ported from amdgpu commit a636f42b496b0604ca00a144690ece61d1a88a27) - Reviewed-by: Alex Deucher - -commit 15697ee242c30b9ea6775624e8282e0171a113a7 -Author: Michel Dänzer -Date: Mon Jan 28 18:27:10 2019 +0100 - - Keep waiting for a pending flip if drm_handle_event returns 0 - - drm_wait_pending_flip stopped waiting if drm_handle_event returned 0, - but that might have processed only some unrelated DRM events. As long as - the flip is pending, we have to keep waiting for its completion event. - - Noticed while working on the previous fix. - - (Ported from amdgpu commit 9045fb310f88780e250e60b80431ca153330e61b) - -commit 227123de3d862e691131708b7f55260bee17f2b7 -Author: Michel Dänzer -Date: Mon Jan 28 18:24:41 2019 +0100 - - Call drmHandleEvent again if it was interrupted by a signal - - drmHandleEvent can be interrupted by a signal in read(), in which case - it doesn't process any events but returns -1, which - drm_handle_event propagated to its callers. This could cause the - following failure cascade: - - 1. drm_wait_pending_flip stopped waiting for a pending flip. - 2. Its caller cleared drmmode_crtc->flip_pending before the flip - completed. - 3. Another flip was attempted but got an unexpected EBUSY error because - the previous flip was still pending. - 4. TearFree was disabled due to the error. - - The solution is to call drmHandleEvent if it was interrupted by a - signal. We can do that in drm_handle_event, because when that is called, - either it is known that there are events ready to be processed, or the - caller has to wait for events to arrive anyway. - - Bugzilla: https://bugs.freedesktop.org/109364 - (Ported from amdgpu commit 3ff2cc225f6bc08364ee007fa54e9d0150adaf11) - -commit 1bfdccf7639ee2f655dc659cafa63830ba28be85 -Author: Michel Dänzer -Date: Mon Jan 28 18:11:10 2019 +0100 - - Only update drmmode_crtc->flip_pending after actually submitting a flip - - And only clear it if it matches the framebuffer of the completed flip - being processed. - - Fixes - - (WW) RADEON(0): flip queue failed: Device or resource busy - (WW) RADEON(0): Page flip failed: Device or resource busy - (EE) RADEON(0): present flip failed - - due to clobbering drmmode_crtc->flip_pending. - - Reproducer: Enable TearFree, run warzone2100 fullscreen, toggle - Vertical sync on/off under Video Options. Discovered while investigating - https://bugs.freedesktop.org/109364 . - - (Ported from amdgpu commit e72a02ba1d35743fefd939458b9d8cddce86e7f5) - -commit dcd3527299c1f6d6faa401c565fa884f4d8f3287 -Author: Michel Dänzer -Date: Mon Jan 28 18:08:35 2019 +0100 - - Don't allow TearFree scanout flips to complete in the same vblank period - - We were using a relative target of 0, meaning "complete the flip ASAP". - This could result in the flip sometimes, but not always completing in - the same vertical blank period where the corresponding drawing occurred, - potentially causing judder artifacts with applications updating their - window contents synchronized to the display refresh. A good way to test - this is the vsynctester.com site in a windowed browser, where the judder - results in the large "VSYNC" text intermittently appearing red or cyan - instead of the expected gray. - - To avoid this, use a relative target MSC of 1, meaning that if a - vertical blank period is in progress, the flip will only complete in the - next one. - - Reported by Julian Tempel and Brandon Wright in - https://bugs.freedesktop.org/106175 . - - (Ported from amdgpu commit a1b479c7d0066c481af920f297d6af9009dda11e) - -commit 274703087f80342f51fa69c935bb9a1cb0c4ae47 -Author: Michel Dänzer -Date: Mon Jan 28 18:06:50 2019 +0100 - - glamor: Avoid glamor_create_pixmap for pixmaps backing windows - - If the compositing manager uses direct rendering (as is usually the case - these days), the storage of a pixmap allocated by glamor_create_pixmap - needs to be reallocated for sharing it with the compositing manager. - Instead, allocate pixmap storage which can be shared directly. - - (Ported from amdgpu commit bf326f2ea19daa6c8da23d6788ff301ae70b8e69) - -commit 6d1dfe2523e900517bd1e8743c87d6990a82c800 -Author: Michel Dänzer -Date: Mon Jan 28 18:04:41 2019 +0100 - - dri2: Flush in dri2_create_buffer2 after calling glamor_set_pixmap_bo - - To make sure the client can't use the shared pixmap storage for direct - rendering first, which could produce garbage. - - Bugzilla: https://bugs.freedesktop.org/109235 - (Ported from amdgpu commit ebd32b1c07208f8dbe853e089f5e4b7c6a7a658a) - -commit 77d7abf46446522e686c6b6f1e4857458589ef37 -Author: Michel Dänzer -Date: Mon Jan 28 18:00:20 2019 +0100 - - dri3: Flush if necessary in dri3_fd_from_pixmap - - To make sure the client can't use the shared pixmap storage for direct - rendering first, which could produce garbage. - - Bugzilla: https://bugs.freedesktop.org/109235 - (Ported from amdgpu commit d168532ee739f7e33a2798051e64ba445dd3859f) - commit b1c01698f577577e4a88bad0ae08fb5d998e7ebb Author: Michel Dänzer Date: Wed Jan 9 11:26:14 2019 +0100 @@ -5440,7 +5226,7 @@ Must be enabled with - Option "DRI3" + Option "DRI3" in xorg.conf. @@ -7874,7 +7660,7 @@ Enable at build time with --enable-glamor and runtime with - Option "AccelMethod" "glamor" + Option "AccelMethod" "glamor" The most notable lack of functionality is XVideo. Use something like VDPAU for now. @@ -7927,7 +7713,7 @@ Signed-off-by: Dave Airlie commit 50689ec8dbd4a68527b2ac16cecac298b8d441d0 -Merge: 6a60fcdf0 ae682a6a1 +Merge: 6a60fcd ae682a6 Author: Dave Airlie Date: Fri Jun 29 14:59:47 2012 +0100 @@ -7961,7 +7747,7 @@ ... Conflicts: - configure.ac + configure.ac commit 6a60fcdf060a0f553d8d4f7939c2a05aa04bedfa Author: Dave Airlie @@ -10516,7 +10302,7 @@ radeon: fix pitch align in pageflip code commit e5d0a400d08da2358fac9c2ad12042f125525736 -Merge: 0e432dff9 e27e9b4e5 +Merge: 0e432df e27e9b4 Author: Alex Deucher Date: Mon Jan 10 18:16:49 2011 -0500 @@ -11150,7 +10936,7 @@ evergreen: port Karl's UTS/DFS changes to evergreen commit be8f45cbd313b68ad663f303c64edb4525b8f981 -Merge: e843faf35 ff5f466e6 +Merge: e843faf ff5f466 Author: Alex Deucher Date: Mon Oct 4 12:36:56 2010 -0400 @@ -13377,7 +13163,7 @@ The cause is that 2048 is hardcoded in RADEONQueryImageAttributes. commit efbc2c80ab02879edf3b7b3d65b16c45ddce5017 -Merge: 88a50a30d a612813c5 +Merge: 88a50a3 a612813 Author: Dave Airlie Date: Wed Dec 2 14:30:36 2009 +1000 @@ -14135,7 +13921,7 @@ Conflicts: - src/drmmode_display.c + src/drmmode_display.c commit a493feb94c0d84aaf5bfd84c6940d7f03974dd86 Author: Dave Airlie @@ -14563,7 +14349,7 @@ radeon: fix dri2 struct zeroing commit 6990f2ac6478bf92929a4400ef84fb2142699204 -Merge: 917f2d7cd 853f4c3d1 +Merge: 917f2d7 853f4c3 Author: Dave Airlie Date: Tue Sep 8 11:26:32 2009 +1000 @@ -17314,7 +17100,7 @@ R6xx/R7xx: use shadowfb if DRI is disabled commit 000756e052a291230e5c95e48b69a5aa9c4fab0e -Merge: 22d7746bf 8373f4399 +Merge: 22d7746 8373f43 Author: Alex Deucher Date: Thu Feb 26 11:44:13 2009 -0500 @@ -18023,7 +17809,7 @@ fixes it. commit bd8021d46e9066e4cd116c03a7b7adcfe2557aff -Merge: 4f88dd83f 20d5dd387 +Merge: 4f88dd8 20d5dd3 Author: Alex Deucher Date: Wed Jan 28 14:33:14 2009 -0500 @@ -18036,7 +17822,7 @@ Move encoder specific data to encoder dev_priv commit 4f88dd83f290fb38e41256a7f1804008c0f28139 -Merge: 1c5678fc4 2ca970c7a +Merge: 1c5678f 2ca970c Author: Alex Deucher Date: Wed Jan 28 13:13:13 2009 -0500 @@ -18044,7 +17830,7 @@ Conflicts: - src/radeon_atombios.c + src/radeon_atombios.c commit 1a62360e8260eaf5f98fa6be3f89f64c8cae7d32 Author: Alex Deucher @@ -18491,10 +18277,10 @@ R5xx: always use single clipped triangle R3xx/R4xx: use single clipped triangle up to guardband limit, - then use quad. + then use quad. commit 4d009d14c9c72f6e1bc8100ec8d9b8037ee4e514 -Merge: d52882d81 4e96278b5 +Merge: d52882d 4e96278 Author: Dave Airlie Date: Mon Dec 22 16:00:01 2008 +1000 @@ -18893,7 +18679,7 @@ Fix up US setup after r3xx bicubic merge commit e13fba853ba19e6b0f081b9b3d9fa76c38a0f82b -Merge: d29633708 79bbdd984 +Merge: d296337 79bbdd9 Author: Alex Deucher Date: Thu Dec 4 12:25:29 2008 -0500 @@ -20154,7 +19940,7 @@ - Make sure 3D is idle too (after composite or textured video) commit 07be302f6dba61dd15918963fae66502230c74b7 -Merge: 8c9b8de03 52459745e +Merge: 8c9b8de 5245974 Author: Jerome Glisse Date: Wed Jun 25 10:30:45 2008 +0200 @@ -20247,7 +20033,7 @@ See bug 14289 - com_bios_scratch.diff + com_bios_scratch.diff commit 38ce8a984f96056b7345bcc06505ba27e0e6d5b4 Author: Dave Airlie @@ -20276,7 +20062,7 @@ discovered on irc with wpwrak. commit 5b323a2cbbc412b6dd4e782438b64ee996558d05 -Merge: dd18caa4b eed241553 +Merge: dd18caa eed2415 Author: Dave Airlie Date: Fri Jun 20 07:49:16 2008 +1000 @@ -20910,9 +20696,9 @@ Conflicts: - src/radeon_commonfuncs.c - src/radeon_exa_render.c - src/radeon_textured_videofuncs.c + src/radeon_commonfuncs.c + src/radeon_exa_render.c + src/radeon_textured_videofuncs.c commit 0032c80bf30bab189204e3e6929e18a19d753138 Author: Alex Deucher @@ -21008,8 +20794,8 @@ Conflicts: - src/radeon.h - src/radeon_driver.c + src/radeon.h + src/radeon_driver.c This rework seems to have caused more trouble than it was worth. @@ -21023,7 +20809,7 @@ Conflicts: - src/radeon_driver.c + src/radeon_driver.c commit c40a7aa3989576a8144213e2f31b892d21df8686 Author: Owen W. Taylor @@ -21270,7 +21056,7 @@ defines it. commit bed9754ad21d6c0a7f61067b04ba31c430a7cecb -Merge: 55e446b5b f71ac0e40 +Merge: 55e446b f71ac0e Author: Alex Deucher Date: Wed Mar 19 16:06:41 2008 -0400 @@ -21653,7 +21439,7 @@ AVIVO: don't add outputs for invalid connectors commit 600dbe080997a01ceaf6be86723189d518bc1281 -Merge: 594743a99 5b7875d0c +Merge: 594743a 5b7875d Author: Alex Deucher Date: Thu Mar 6 17:31:37 2008 -0500 @@ -21672,7 +21458,7 @@ Bug #14826: Fix a bogus check around xf86SetOperatingState. commit 651fe23f4c650ed91843dec48db24e18e8b91219 -Merge: 3de2dc88c 766f464df +Merge: 3de2dc8 766f464 Author: Adam Jackson Date: Thu Mar 6 14:28:27 2008 -0500 @@ -22039,7 +21825,7 @@ fixup check for EXA composite pointed out by Alan Swanson commit 85e470e64f629de72e361c77770e2e29998d1bf4 -Merge: 27ddb39b1 1b84c76f2 +Merge: 27ddb39 1b84c76 Author: Alex Deucher Date: Sun Feb 24 05:37:22 2008 -0500 @@ -22049,7 +21835,7 @@ Conflicts: - src/radeon_commonfuncs.c + src/radeon_commonfuncs.c commit 27ddb39b12a0b54e099fd5274c4c91f08e2d2822 Author: Alex Deucher @@ -22737,7 +22523,7 @@ Fixes bug 14001 commit 729da30c80d6545b75c8faea44754634f477cc09 -Merge: 000741e25 625a885a9 +Merge: 000741e 625a885 Author: Alex Deucher Date: Mon Jan 14 10:05:01 2008 -0500 @@ -22930,7 +22716,7 @@ RADEON: various avivo tv-out related clean-ups commit ce34090c758ac91171cb6adb9b8a36e4adbf99cf -Merge: 2180f04b6 30cab1dbe +Merge: 2180f04 30cab1d Author: Alex Deucher Date: Wed Jan 2 16:41:36 2008 -0500 @@ -23137,7 +22923,7 @@ set ddc line correctly post-merge commit 3c31b96afa20913ad947e68fe0c3a662e5eafbdd -Merge: eb99c3c5c f5e8c1850 +Merge: eb99c3c f5e8c18 Author: Dave Airlie Date: Fri Dec 21 09:36:22 2007 +1000 @@ -23145,8 +22931,8 @@ Conflicts: - src/radeon_display.c - src/radeon_driver.c + src/radeon_display.c + src/radeon_driver.c commit eb99c3c5c9a2249cb84920f0f225e525fc3a4144 Author: Alex Deucher @@ -23178,7 +22964,7 @@ The correct thing to do is filter by the mode's effective memory bandwidth. commit c1b0b69cc50516c3b7e881b0eb46cb3cd2e9dce6 -Merge: 0e6634870 ce4fa1ced +Merge: 0e66348 ce4fa1c Author: Alex Deucher Date: Wed Dec 19 11:54:50 2007 -0500 @@ -23253,14 +23039,14 @@ RADEON: fix typo from merge commit 19b9d3708852b7efe2b05249c8359dadb924dd94 -Merge: cf685f37e 29706ca58 +Merge: cf685f3 29706ca Author: Alex Deucher Date: Mon Dec 17 20:07:32 2007 -0500 Merge branch 'atombios-support' of git+ssh://agd5f@git.freedesktop.org/git/xorg/driver/xf86-video-ati into atombios-support commit cf685f37ec874f0aacd09e7c4eb0402c6daec1b0 -Merge: 2a134af01 44d07c4cc +Merge: 2a134af 44d07c4 Author: Alex Deucher Date: Mon Dec 17 20:07:07 2007 -0500 @@ -23409,7 +23195,7 @@ - Unify the PLL calculation between legacy and avivo chips commit f5ac34983411e4c4f41ab1817dce582830f398fd -Merge: f2b2e0804 6ccf5b33d +Merge: f2b2e08 6ccf5b3 Author: Alex Deucher Date: Wed Dec 12 22:37:44 2007 -0500 @@ -23462,7 +23248,7 @@ RADEON: handle HMDI properly (untested) and fix some merge leftovers commit 3c22ad977c25d5ca2811821fcac6bb8ecd79994a -Merge: c9a0cee97 f3d2ec3a5 +Merge: c9a0cee f3d2ec3 Author: Alex Deucher Date: Tue Dec 11 13:11:15 2007 -0500 @@ -23518,7 +23304,7 @@ add support for building against legacy servers similiar to Intel codepaths commit 9c278cb7fa7f18d13bde053fd75221cfba9da377 -Merge: 6451ea2dc cc167b9bb +Merge: 6451ea2 cc167b9 Author: Dave Airlie Date: Mon Dec 10 15:18:03 2007 +1000 @@ -23526,13 +23312,13 @@ Conflicts: - src/radeon.h - src/radeon_crtc.c - src/radeon_driver.c - src/radeon_output.c + src/radeon.h + src/radeon_crtc.c + src/radeon_driver.c + src/radeon_output.c commit 6451ea2dcc4fac762442f699935864f4a8d445f7 -Merge: 0d89556bf 5896ca409 +Merge: 0d89556 5896ca4 Author: Dave Airlie Date: Mon Dec 10 15:08:42 2007 +1000 @@ -23592,7 +23378,7 @@ powerpc: build fixes from last merge commit dbe3d2608ecc9896db9c23b3a347b50748c51e13 -Merge: 48e31cdaa 21ed43539 +Merge: 48e31cd 21ed435 Author: Dave Airlie Date: Thu Dec 6 14:22:03 2007 +1000 @@ -23600,7 +23386,7 @@ Conflicts: - src/radeon_output.c + src/radeon_output.c commit 21ed435398e4a398dd8a0a5d7c1d4cc45e916332 Author: Alex Deucher @@ -23693,7 +23479,7 @@ mode or vesafb etc. after running the driver. commit af0196f7bf0d1d5d211391149c18935d64ed2b06 -Merge: d9858a2b3 0175b7998 +Merge: d9858a2 0175b79 Author: Alex Deucher Date: Fri Nov 30 16:40:28 2007 -0500 @@ -23725,7 +23511,7 @@ for now. commit e1945f1f25a34310bd58ce128c8ff27ecc985618 -Merge: b368b0f22 df7777bff +Merge: b368b0f df7777b Author: Alex Deucher Date: Fri Nov 30 14:30:55 2007 -0500 @@ -23946,7 +23732,7 @@ Thanks to AMD for the information commit a12390c832abe423def60e39cd5a9118e5910339 -Merge: d5317922f e74dca194 +Merge: d531792 e74dca1 Author: Alex Deucher Date: Wed Nov 21 02:24:48 2007 -0500 @@ -23999,7 +23785,7 @@ RADEON: store devices ids from bios for each driver output commit 3975da2ea8cb628f7f66c3f26c5dfa181cd1c532 -Merge: e283aa332 295ce277b +Merge: e283aa3 295ce27 Author: Alex Deucher Date: Tue Nov 20 23:52:29 2007 -0500 @@ -24099,7 +23885,7 @@ atombios: add all r5xx and r6xx pci ids commit 5d023e2c3c2ab44ea57ffadc9607025d602c376c -Merge: 0d1e0c780 c88726034 +Merge: 0d1e0c7 c887260 Author: Dave Airlie Date: Tue Nov 20 13:02:43 2007 +1000 @@ -24107,9 +23893,9 @@ Conflicts: - src/radeon_chipset.h - src/radeon_driver.c - src/radeon_probe.c + src/radeon_chipset.h + src/radeon_driver.c + src/radeon_probe.c commit 0d1e0c7805b3d8e56ccb49465e6b144afb7bdc51 Author: Dave Airlie @@ -24124,7 +23910,7 @@ r5xx: cleanups after last merge commit fe2f7a09050fb7a345a1f52239f8f3c4f1053891 -Merge: 744c8cb6c 49055d8af +Merge: 744c8cb 49055d8 Author: Dave Airlie Date: Tue Nov 20 08:04:32 2007 +1000 @@ -24132,11 +23918,11 @@ Conflicts: - src/radeon_cursor.c - src/radeon_output.c + src/radeon_cursor.c + src/radeon_output.c commit 744c8cb6c293fcaa687566f52901644e699baace -Merge: e258fbe41 e530af79a +Merge: e258fbe e530af7 Author: Dave Airlie Date: Tue Nov 20 07:56:33 2007 +1000 @@ -24149,14 +23935,14 @@ makes 2-headed cursor work commit e530af79adf51b3e95a0eca676c915a34dcbf4a7 -Merge: 69e197f2c 52aba8d73 +Merge: 69e197f 52aba8d Author: Alex Deucher Date: Mon Nov 19 00:59:30 2007 -0500 Merge branch 'agd-atom' of /home/alex/git/airlied/xf86-video-ati2 into agd-atom commit 69e197f2c8002aacf2587754c8d3bd63c88f85b1 -Merge: 5e8940fa6 862dcabfe +Merge: 5e8940f 862dcab Author: Alex Deucher Date: Mon Nov 19 00:57:34 2007 -0500 @@ -24187,7 +23973,7 @@ Don't assign a gpio for TV commit 52aba8d73189ba959f19c0437499d5e7a8829827 -Merge: 862dcabfe 5e8940fa6 +Merge: 862dcab 5e8940f Author: Dave Airlie Date: Mon Nov 19 15:30:46 2007 +1000 @@ -24224,7 +24010,7 @@ fix typo in loop commit 384cd8f52c89d089c6559e2eedbae45641fcd14e -Merge: f3f0e4ec9 234b60730 +Merge: f3f0e4e 234b607 Author: Dave Airlie Date: Mon Nov 19 14:02:55 2007 +1000 @@ -24293,7 +24079,7 @@ WIP: more new ATOM integration work commit 67db114d97abed7a607467e5d67c7b4ffa2c347e -Merge: 7d06a8791 ea1534659 +Merge: 7d06a87 ea15346 Author: Alex Deucher Date: Fri Nov 16 14:29:53 2007 -0500 @@ -24356,7 +24142,7 @@ Add copyright headers commit 3cfcd2164b400bd0d1cb4ede8eeb01abba9d75c8 -Merge: efac14e66 718bfd3b6 +Merge: efac14e 718bfd3 Author: Alex Deucher Date: Thu Nov 15 23:25:39 2007 -0500 @@ -24877,7 +24663,7 @@ Surprisingly easy, thanks to George's pci-rework changes. commit 7addf41885ec5658f531624a9c24ea5bd7d22d19 -Merge: 3a958ba13 78c6bd305 +Merge: 3a958ba 78c6bd3 Author: Michel Dänzer Date: Thu Oct 4 11:06:08 2007 +0200 @@ -25336,7 +25122,7 @@ It still uses the old probe method though, this is due to the ati wrapper. commit 7b38d9a1209f87255e5bb0aefe46a363ce4fb6ef -Merge: 2e3d43af1 673f79972 +Merge: 2e3d43a 673f799 Author: George Sapountzis Date: Tue Aug 28 16:01:12 2007 +0300 @@ -25344,7 +25130,7 @@ Conflicts: - src/ati.c + src/ati.c commit 673f799729824f4439dd5f681f75dd5aab50947f Author: Alex Deucher @@ -25600,14 +25386,14 @@ updated release numbering for randr 1.2 commit 81a8093f2ffdce59d4e8a44f65f3d5c771fd6425 -Merge: c08e6ec9e 53a67e319 +Merge: c08e6ec 53a67e3 Author: Dave Airlie Date: Thu Aug 23 19:51:47 2007 +1000 Merge remote branch 'origin/randr-1.2' commit c08e6ec9e7ac06caee53689b0ec50ef6a7a0ba37 -Merge: 5793e8753 a0d0fcd3b +Merge: 5793e87 a0d0fcd Author: Dave Airlie Date: Thu Aug 23 19:42:19 2007 +1000 @@ -25615,14 +25401,14 @@ Conflicts: - src/radeon.h - src/radeon_bios.c - src/radeon_display.c - src/radeon_dri.c - src/radeon_driver.c - src/radeon_modes.c - src/radeon_probe.h - src/radeon_video.c + src/radeon.h + src/radeon_bios.c + src/radeon_display.c + src/radeon_dri.c + src/radeon_driver.c + src/radeon_modes.c + src/radeon_probe.h + src/radeon_video.c commit 53a67e31904bec9a3aa1bd24de8034dcafea1d2a Author: Alex Deucher @@ -26480,7 +26266,7 @@ we hang when moving the cursor into the second CRTC. commit 7fc02657c4d740941fbda5a8823cf45de3eca3f8 -Merge: 800bf5327 4c61c0ee9 +Merge: 800bf53 4c61c0e Author: Dave Airlie Date: Wed May 30 17:27:22 2007 +1000 @@ -26488,9 +26274,9 @@ Conflicts: - src/radeon_cursor.c - src/radeon_display.c - src/radeon_driver.c + src/radeon_cursor.c + src/radeon_display.c + src/radeon_driver.c commit 800bf53279e2c2bf854682bbfd6fa16d03afed00 Author: Matthieu Herrb @@ -26535,7 +26321,7 @@ rs480: only has single dac commit c52322354fe64725733842b3356798c50e7735d5 -Merge: dd6a966e8 975da595f +Merge: dd6a966 975da59 Author: Dave Airlie Date: Tue May 29 07:21:48 2007 +1000 @@ -27017,7 +26803,7 @@ remove some old mergedfb cruft commit 76670f665ebec7cdf40a04bf9379cb3ad4417507 -Merge: 83f81ed5e a3ee42207 +Merge: 83f81ed a3ee422 Author: Alex Deucher Date: Tue May 8 18:41:25 2007 +0200 @@ -27468,7 +27254,7 @@ fix typo commit 3cfe94d5438961b869766dacbcd13fde8b770ca2 -Merge: 31c018ca4 3b43788c4 +Merge: 31c018c 3b43788 Author: Dave Airlie Date: Sun Feb 25 23:27:19 2007 +1100 @@ -27476,8 +27262,8 @@ Conflicts: - src/radeon_display.c - src/radeon_driver.c + src/radeon_display.c + src/radeon_driver.c commit 3b43788c45f51ad2d3e8e64383c412f4ddd97207 Author: Dave Airlie @@ -27661,7 +27447,7 @@ case because pATI->PCIInfo is now set after ATIProcessOptions() is called. commit 9d77aabdff919360f0c9333105436c31f1f5749a -Merge: ff8ea19fc 57822be75 +Merge: ff8ea19 57822be Author: George Sapountzis Date: Mon Feb 5 19:16:51 2007 +0200 @@ -28834,7 +28620,7 @@ radeon: cleanup some bits from superpatch commit 9827afaa40720a58e2fc029c0bf92ad2fe223d11 -Merge: 10b4b46c1 ad8259c81 +Merge: 10b4b46 ad8259c Author: Dave Airlie Date: Mon Sep 25 11:25:17 2006 +1000 @@ -28979,7 +28765,7 @@ radeon: add enable display function commit 4a54886d510f26b29d27e5c9a73647554291b1a6 -Merge: 70264d645 9fa176c79 +Merge: 70264d6 9fa176c Author: Dave Airlie Date: Fri Sep 22 06:00:04 2006 +1000 @@ -28987,7 +28773,7 @@ Conflicts: - src/radeon_driver.c + src/radeon_driver.c commit 9fa176c7989030e7340cc9b85d0b6a7b34303091 Author: Alex Deucher @@ -29595,7 +29381,7 @@ Fix some more cosmetic warnings. commit ec93e08b24f7c0e583970d08bfe18ad142e6b047 -Merge: 051c49d0f 6ca986242 +Merge: 051c49d 6ca9862 Author: Michel Dänzer Date: Thu Jun 15 15:03:27 2006 +0200 @@ -29614,7 +29400,7 @@ remove all printf specifier warnings on Linux commit 051c49d0f002c72d1d8f15f6df264d8b093d4e95 -Merge: a840afc75 dfac8191d +Merge: a840afc dfac819 Author: Michel Dänzer Date: Thu Jun 15 13:10:44 2006 +0200 @@ -29639,7 +29425,7 @@ some more unused variable cleanups commit a840afc75a0453b4694e3f987ebdbddc6844a169 -Merge: c90c49da3 d511ef486 +Merge: c90c49d d511ef4 Author: Michel Dänzer Date: Thu Jun 15 12:46:58 2006 +0200 --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/autogen.sh +++ xserver-xorg-video-ati-hwe-18.04-19.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-ati" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir"/configure "$@" +fi --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/debian/README.source +++ xserver-xorg-video-ati-hwe-18.04-19.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-ati-hwe-18.04-19.0.1.orig/debian/changelog +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/debian/changelog @@ -0,0 +1,1131 @@ +xserver-xorg-video-ati-hwe-18.04 (1:19.0.1-0ubuntu1~18.04.1) bionic; urgency=medium + + * Backport for 18.04.3 HWE stack update. (LP: #1824111) + + -- Timo Aaltonen Wed, 29 May 2019 13:19:14 +0300 + +xserver-xorg-video-ati (1:19.0.1-0ubuntu1) disco; urgency=medium + + * Sync with debian git. + + -- Timo Aaltonen Thu, 28 Mar 2019 13:15:14 +0200 + +xserver-xorg-video-ati (1:19.0.1-1) UNRELEASED; urgency=medium + + * New bugfix release. (Closes: #924540) (LP: #1822075) + + -- Timo Aaltonen Thu, 28 Mar 2019 13:14:06 +0200 + +xserver-xorg-video-ati (1:19.0.0-1) unstable; urgency=medium + + * New upstream release. + + -- Timo Aaltonen Tue, 12 Mar 2019 18:40:57 +0200 + +xserver-xorg-video-ati (1:18.1.99+git20190207-1) unstable; urgency=medium + + * New upstream snapshot. + * Stop passing --disable-silent-rules to configure. + + -- Andreas Boll Thu, 07 Feb 2019 22:17:59 +0100 + +xserver-xorg-video-ati (1:18.1.0-1) unstable; urgency=medium + + * New upstream release. + * Bump debhelper to 11. + * control: Build-depend on x11proto-dev. + * control: Bump libdrm-dev build-dep to 2.4.89. + + -- Timo Aaltonen Tue, 18 Sep 2018 11:54:58 +0300 + +xserver-xorg-video-ati (1:18.0.1-2) unstable; urgency=medium + + [ Timo Aaltonen ] + * Switch to dbgsym packages. + + [ Andreas Boll ] + * Merge upstream patches to fix a blank / corrupted screen with glamor + acceleration (Closes: #902965, #904995, #905395, #905960). + - 3dcfce8d Bail from dri2_create_buffer2 if we can't get a pixmap + - 65c9dfea glamor: Bail CreatePixmap on unsupported pixmap depth + - 25836375 Drop unused drmmode_create_bo_pixmap surface parameter + - ac18a993 EXA: Remove old RADEONEXACreatePixmap hook + - eec4a419 Only initialize libdrm_radeon surface manager for >= R600 + - ba5d5402 glamor: Don't store radeon_surfaces in pixmaps + - 5da2bf43 Factor out radeon_surface_initialize helper + - 90b94d40 Move flush from radeon_scanout_do_update to its callers + - 6c986e99 Remove throttling from radeon_dri2_copy_region2 + - 37ba075b Refactor radeon_finish helper + - b85b7b11 Add struct radeon_buffer + - 3c4c0213 glamor: Use GBM for BO allocation when possible + - 499d2f9d glamor: Invalidate cached GEM handle in radeon_set_pixmap_bo + - Build-depend on libgbm-dev + * Set source format to 1.0. + * Update a bunch of URLs in packaging to https. + * Bump standards version to 4.2.0. + + -- Andreas Boll Mon, 20 Aug 2018 09:19:30 +0200 + +xserver-xorg-video-ati (1:18.0.1-1) unstable; urgency=medium + + * New upstream release. + + -- Timo Aaltonen Tue, 20 Mar 2018 14:17:16 +0200 + +xserver-xorg-video-ati (1: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 10:51:20 +0200 + +xserver-xorg-video-ati (1:7.10.0-1) unstable; urgency=medium + + * New upstream release. + + -- Timo Aaltonen Thu, 21 Sep 2017 15:48:45 +0300 + +xserver-xorg-video-ati (1:7.9.0-1) unstable; urgency=medium + + * New upstream release. + * radeon.install: Install config snippet, which loads the radeon + driver even if -ati wrapper driver is not installed. + + -- Timo Aaltonen Tue, 27 Jun 2017 11:04:20 +0300 + +xserver-xorg-video-ati (1:7.8.0-1) unstable; urgency=medium + + * New upstream release. + * control: Bump policy to 3.9.8, no changes. + + -- Timo Aaltonen Thu, 17 Nov 2016 11:25:21 +0200 + +xserver-xorg-video-ati (1:7.7.1-1) unstable; urgency=medium + + * New upstream release. (Closes: #827984) + + -- Timo Aaltonen Fri, 16 Sep 2016 00:44:43 +0300 + +xserver-xorg-video-ati (1:7.7.0-1) unstable; urgency=medium + + * New upstream release. + * control: Bump Standards-Version to 3.9.7 (no changes). + + -- Timo Aaltonen Thu, 07 Apr 2016 08:26:30 +0300 + +xserver-xorg-video-ati (1:7.6.1-1) unstable; urgency=medium + + [ Andreas Boll ] + * New upstream release. + * Update debian/upstream/signing-key.asc. + * Fix Vcs-* fields. + * Move xxv-mach64 and xxv-r128 from depends to suggests. + * Add upstream url. + * Replace Suggests: firmware-linux with new firmware-amd-graphics. + * Update list of supported chips. + * Bump standards version to 3.9.6. + + [ Julien Cristau ] + * Remove Drew from Uploaders. + * Delete debian/radeon-kms.conf, unused since 1:7.2.0-1. + + -- Julien Cristau Sat, 14 Nov 2015 10:33:25 +0100 + +xserver-xorg-video-ati (1:7.5.0-1) unstable; urgency=medium + + [ Andreas Boll ] + * New upstream release. + * Bump libdrm-dev build-dep to 2.4.58. + + [ Julien Cristau ] + * Let uscan verify tarball signatures. + * Disable silent build rules. + + -- Julien Cristau Sun, 05 Oct 2014 18:53:26 +0200 + +xserver-xorg-video-ati (1:7.4.0-2) unstable; urgency=medium + + * Upload to unstable. + + -- Julien Cristau Tue, 08 Jul 2014 21:06:48 +0200 + +xserver-xorg-video-ati (1:7.4.0-1+exp1) experimental; urgency=low + + * Rebuild against xorg 1.16 rc. + + -- Maarten Lankhorst Wed, 25 Jun 2014 16:43:52 +0200 + +xserver-xorg-video-ati (1:7.4.0-1) unstable; urgency=low + + * New upstream release. + * Bump libdrm-dev requirement to 2.4.54. + + -- Maarten Lankhorst Wed, 25 Jun 2014 16:35:44 +0200 + +xserver-xorg-video-ati (1:7.3.0-2) experimental; urgency=medium + + * New upstream snapshot. + * Build against xserver 1.16 rc, enable glamor acceleration. + * Remove Cyril from Uploaders. + * Bump libdrm build-dep to 2.4.54 per configure.ac. + + -- Julien Cristau Mon, 16 Jun 2014 19:27:22 +0200 + +xserver-xorg-video-ati (1:7.3.0-1) unstable; urgency=low + + * New upstream release. + * Explicitly disable glamor for now to prevent a FTBFS. + + -- Maarten Lankhorst Tue, 28 Jan 2014 11:56:30 +0100 + +xserver-xorg-video-ati (1:7.2.0-1) unstable; urgency=low + + [ Maarten Lankhorst ] + * New upstream release: + - KMS-only release, only works with linux-any (or recent kbsd) now. + * Require libdrm 2.4.46 + + [ Julien Cristau ] + * Get rid of modprobe config file, rely on the kernel's default config to + enable kms. + * Bump debhelper compat level to 9 to enable dpkg-buildflags. + * Remove useless override_dh_auto_install rule. + + -- Julien Cristau Thu, 15 Aug 2013 18:26:42 +0200 + +xserver-xorg-video-ati (1:6.14.4-8) unstable; urgency=medium + + * UMS: Swap bytes when uploading to pixmap for solid picture on big endian + host (closes: #702480). Thanks, Michel Dänzer! + + -- Julien Cristau Sat, 09 Mar 2013 12:06:14 +0100 + +xserver-xorg-video-ati (1:6.14.4-7) unstable; urgency=medium + + * mach64 and r128 are back on ia64, so re-add dependencies on them + (closes: #700446). + + -- Julien Cristau Sat, 23 Feb 2013 13:57:52 +0100 + +xserver-xorg-video-ati (1:6.14.4-6) unstable; urgency=low + + * Update to 6.14.6, minus the Xserver 1.13 compat patches: + - r6xx-r9xx: force 1D tiling for buffer with height < 64 + - Make radeon_setup_kernel_mem failures more graceful and verbose + - RADEONCopySwap: Fix RADEON_HOST_DATA_SWAP_16BIT case + - radeon: add MacModel entry for SAM440ep embedded board + - Fail more gracefully when drm surface manager can't be initialized + - radeon: avoid rounding errors in texture coords for textured xv on EG+ + - radeon: use GB_GR and BG_RG formats for packed yuv video for r600+ + - radeon: fix smooth startup with tiling enabled + - radeon: improve smooth startup fallbacks + - radeon: add new PCI ids + - Don't wait on a CRTC which has been disabled via DPMS + - Don't page-flip or wait on a CRTC while we're VT-switched away + - configure: bump libdrm_radeon requirement + - UMS: Fix CRTC DPMS state check + - Fix up displayWidth vs. virtualX confusion in radeon_setup_kernel_mem() + - radeon: require libdrm 2.4.36 for KMS support + + -- Julien Cristau Sat, 12 Jan 2013 16:30:01 +0100 + +xserver-xorg-video-ati (1:6.14.4-5) unstable; urgency=low + + * Update radeon's long description to list the chips mentioned in the + radeon manpage. Also drop fglrx from there (Closes: #677412). + + -- Cyril Brulebois Wed, 13 Jun 2012 22:58:36 +0200 + +xserver-xorg-video-ati (1:6.14.4-4) unstable; urgency=low + + * Cherry-pick from upstream to fix regression on UMS (Closes: #670570): + - EXA: Attempt to fix solid picture acceleration with UMS. + - EXA/UMS: Synchronize to the GPU before writing solid colour to scratch pixmap. + - UMS/EXA: Add reminder for potential solid picture performance issue. + + -- Cyril Brulebois Sat, 19 May 2012 21:00:45 +0000 + +xserver-xorg-video-ati (1:6.14.4-3) unstable; urgency=low + + * Fix uninstallability issues on ia64 by dropping mach64 and r128 from + dependencies on this architecture, since those were removed (the ia64 + domain I/O support code is gone in xserver 1.12). + + -- Cyril Brulebois Fri, 18 May 2012 11:39:03 +0200 + +xserver-xorg-video-ati (1:6.14.4-2) unstable; urgency=medium + + * Cherry-picks from upstream git: + - r6xx-r9xx: force 1D tiling for buffer with height < 64 + - Make radeon_setup_kernel_mem failures more graceful and verbose + - RADEONCopySwap: Fix RADEON_HOST_DATA_SWAP_16BIT case + - EXA: Support acceleration of solid pictures on R3xx-R7xx + - EXA: Support acceleration of solid pictures on Evergreen/NI + - EXA: Support acceleration of solid pictures on R1xx + - EXA: Support acceleration of solid pictures on R2xx + * The solid picture acceleration should fix the rendering mess people have + been seeing with cairo 1.12, and thus closes: #666982. + + -- Julien Cristau Mon, 16 Apr 2012 20:03:31 +0200 + +xserver-xorg-video-ati (1:6.14.4-1) unstable; urgency=low + + * New upstream release: + - Add support for Trinity APUs. + - 2D tiling support on R6xx+ asics. + - KMS tiling support for r1xx-r2xx. + - Lots of bug fixes. + * Bump libdrm-dev build-dep. + + -- Cyril Brulebois Mon, 02 Apr 2012 20:21:35 +0000 + +xserver-xorg-video-ati (1:6.14.3-2+exp1) experimental; urgency=low + + * Build against Xserver 1.12 RC1. + + -- Cyril Brulebois Sat, 31 Dec 2011 20:05:12 +0100 + +xserver-xorg-video-ati (1:6.14.3-2) unstable; urgency=low + + * Fix xinerama by cherry-picking: + - 82069bae6f: “fixup xinerama since 9151f3b1c2” (Closes: #649495). + + -- Cyril Brulebois Sun, 11 Dec 2011 12:14:23 +0100 + +xserver-xorg-video-ati (1:6.14.3-1) unstable; urgency=low + + * New upstream release. Some highlights follow: + - Add support for llano APUs. + - “video: Don't round up bottom/right edge for clipping source + width/height” (Closes: #637258). + - “Bail if we're trying to start up in UMS mode on KMS.” According to + a comment in the code, this can happen if the radeon kernel module + wasn't loaded before X starts. + - “EXA >= R6xx / KMS: Avoid running out of CS space at inconvenient + times” (Closes: #645007). + + -- Cyril Brulebois Thu, 03 Nov 2011 00:36:47 +0100 + +xserver-xorg-video-ati (1:6.14.2-2) unstable; urgency=low + + * Enable parallel building. + * Build against xserver 1.11. + + -- Cyril Brulebois Sun, 28 Aug 2011 13:26:23 +0200 + +xserver-xorg-video-ati (1:6.14.2-1) unstable; urgency=low + + * New upstream release. + * Mention the need for an explicit configuration if r128, mach64, or + radeon is to be used without the ati package installed, since it's a + meta package, but also a wrapper (Closes: #626500). Thanks, Jonathan + Nieder! + + -- Cyril Brulebois Thu, 26 May 2011 11:52:58 +0200 + +xserver-xorg-video-ati (1:6.14.1-1) unstable; urgency=low + + * New upstream release. + + -- Cyril Brulebois Sun, 10 Apr 2011 23:25:09 +0200 + +xserver-xorg-video-ati (1:6.14.0-1) unstable; urgency=low + + * New upstream release: + - Many bug fixes. + - Improved Evergreen support. + - Added Ontario support. + + -- Cyril Brulebois Thu, 17 Feb 2011 14:50:50 +0100 + +xserver-xorg-video-ati (1:6.13.2-2) unstable; urgency=low + + * Stop building with -fvisibility=hidden. That was introduced to avoid + symbol name clashes with radeonhd, which is gone now. + * Switch to dh: + - Use debhelper 8. + - Use dh-autoreconf. + - Bump xserver-xorg-dev build-dep for dh_xsf_substvars and xsf + debhelper sequence. + - Ship manpages through .install, remove .manpages accordingly. + * Get rid of maintainer scripts, since they were only used to handle + switching between versions with or without KMS. Packages in squeeze + have KMS, so stop worrying about that. + * Remove xsfbs accordingly. + * Add quilt build-dep for future use. + * Update Uploaders list. Thanks, David & Brice! + * Remove long obsolete Replaces. + + -- Cyril Brulebois Sat, 05 Feb 2011 14:42:29 +0100 + +xserver-xorg-video-ati (1:6.13.2-1) experimental; urgency=low + + [ Robert Hooker ] + * New upstream version. + * Bump xutils-dev requirement for new util-macros. + + -- Cyril Brulebois Sat, 06 Nov 2010 23:57:11 +0100 + +xserver-xorg-video-ati (1:6.13.1-3) experimental; urgency=low + + * Build against Xserver 1.9.1 rc1. + + -- Cyril Brulebois Sun, 17 Oct 2010 03:08:54 +0200 + +xserver-xorg-video-ati (1:6.13.1-2+squeeze1) unstable; urgency=low + + * Cherry-pick upstream commit 91f707d3 to fix pixel column ordering with + Xv on big endian systems (without KMS, without DRI). Thanks to Ulrich + Eckhardt for the report (Closes: #587999). + * Apply patch by Julien Cristau: Only enable KMS on x86. At least on + powerpc, KMS in squeeze means no suspend/resume, and no backlight + control, so delay this to wheezy. + + -- Cyril Brulebois Sun, 07 Nov 2010 11:22:20 +0100 + +xserver-xorg-video-ati (1:6.13.1-2) unstable; urgency=low + + * Make libudev-dev build dependencies linux-any. + * Pull upstream commit 06691376 to fix build without KMS. + + -- Brice Goglin Thu, 15 Jul 2010 07:07:07 +0200 + +xserver-xorg-video-ati (1:6.13.1-1) unstable; urgency=low + + * New upstream release. + + Add libudev-dev to build dependencies. + * Bump Standards-Version to 3.9.0, no changes needed. + + -- Brice Goglin Wed, 07 Jul 2010 20:43:53 +0200 + +xserver-xorg-video-ati (1:6.13.0-2) unstable; urgency=medium + + * Update xsfbs, use ${xviddriver:Depends} substvar. + + -- Julien Cristau Fri, 14 May 2010 12:03:33 +0200 + +xserver-xorg-video-ati (1:6.13.0-1) unstable; urgency=low + + [ Brice Goglin ] + * Specify in the NEWS file that KMS may break radeonhd or vesa. + + [ Cyril Brulebois ] + * New upstream release. + * Add myself to Uploaders. + + -- Cyril Brulebois Mon, 05 Apr 2010 19:36:21 +0200 + +xserver-xorg-video-ati (1:6.12.192-2) unstable; urgency=low + + * Enable kernel mode setting by default on Linux. + * Bump Standards-Version to 3.8.4, no changes needed. + * Pull from upstream master up to commit 5c256808. + * Stop installing the NEWS file in all binary packages, only + keep the relevant entries in -radeon and -ati NEWS files. + + -- Brice Goglin Mon, 22 Mar 2010 11:12:35 +0100 + +xserver-xorg-video-ati (1:6.12.192-1) experimental; urgency=low + + * New upstream release candidate. + * Update package descriptions. + * Drop x11proto-xinerama-dev from Build-Depends, it is not used anymore. + + -- Brice Goglin Mon, 15 Mar 2010 19:06:31 +0100 + +xserver-xorg-video-ati (1:6.12.191-1) experimental; urgency=low + + * New upstream release candidate. + + -- Brice Goglin Wed, 03 Mar 2010 17:37:19 +0100 + +xserver-xorg-video-ati (1:6.12.99+git20100201.a887818f-1) experimental; urgency=low + + * New upstream release snapshot. + + EXA now enabled by default, closes: #502970. + + Fix display watermark, closes: #540954. + + Add KMS support, closes: #561526, #567999. + * Bump libdrm-dev dependency to 2.4.17 to get libdrm-radeon. + * Build-depend on x11proto-dri2-dev for DRI2 support. + + -- Brice Goglin Mon, 01 Feb 2010 23:54:34 +0100 + +xserver-xorg-video-ati (1:6.12.6-1) unstable; urgency=low + + * New upstream release. + + Fix some word accesses in AtomBios to work on all architectures, + closes: #572311. + + -- Brice Goglin Mon, 15 Mar 2010 18:53:23 +0100 + +xserver-xorg-video-ati (1:6.12.5-1) unstable; urgency=low + + * New upstream release, closes: #572306. + + -- Brice Goglin Wed, 03 Mar 2010 07:29:24 +0100 + +xserver-xorg-video-ati (1:6.12.4-3) unstable; urgency=low + + [ Julien Cristau ] + * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no + good reason. Thanks, Colin Watson! + + [ Brice Goglin ] + * Pull upstream 6.12-branch up to commit 712ac98a. + + Some EXA fixes, closes: #565506. + + -- Brice Goglin Wed, 27 Jan 2010 16:44:30 +0100 + +xserver-xorg-video-ati (1:6.12.4-2) unstable; urgency=low + + [ Julien Cristau ] + * Drop obsolete build-dep on xf86miscproto. + + [ Cyril Brulebois ] + * Add ${misc:Depends} to xserver-xorg-video-*-dbg's Depends. + * Wrap all Depends while I'm at it. + * Upload to unstable. + + -- Cyril Brulebois Fri, 08 Jan 2010 01:16:00 +0100 + +xserver-xorg-video-ati (1:6.12.4-1) experimental; urgency=low + + [ Timo Aaltonen ] + * New upstream release. + * Bump Standards-Version to 3.8.3. + + [ Brice Goglin ] + * Properly generate each binary package substvars so as to fix shlibs + dependencies, closes: #558290. + * Build against xserver 1.7. + + -- Brice Goglin Thu, 03 Dec 2009 16:38:29 +0100 + +xserver-xorg-video-ati (1:6.12.3-1) unstable; urgency=low + + * New upstream release. + + More AGP quirks, closes: #545040. + + -- Brice Goglin Thu, 10 Sep 2009 07:40:14 +0200 + +xserver-xorg-video-ati (1:6.12.2-3) unstable; urgency=low + + * Pull upstream commits from 6.12-branch up to commit b1f005bf: + + Try harder when checking if a card is posted, closes: #524280. + * Add README.source, bump Standards-Version to 3.8.2. + * Remove the unused patching systems and drop quilt from Build-Depends. + * Wrap build-deps in debian/control. + * Wrap extended description to 80 columns. + + -- Brice Goglin Sat, 25 Jul 2009 21:19:26 +0200 + +xserver-xorg-video-ati (1:6.12.2-2) unstable; urgency=low + + [ Brice Goglin ] + * Pull upstream commits from 6.12-branch up to 248b435a. + * xserver-xorg-video-radeon now suggests firmware-linux since + a firmware may be needed to initialize DRI. + * Move -dbg packages to section debug. + + [ David Nusinow ] + * Add a note in NEWS.Debian about firmware-linux + * Remove 01_gen_pci_ids.diff patch as the server just uses a built-in + table to choose drivers now + + -- Brice Goglin Wed, 13 May 2009 09:08:21 +0200 + +xserver-xorg-video-ati (1:6.12.2-1) unstable; urgency=low + + * New upstream release, closes: #523302. + + -- Brice Goglin Thu, 09 Apr 2009 12:16:12 +0200 + +xserver-xorg-video-ati (1:6.11.0-1) experimental; urgency=low + + * New upstream release. + + Add more AGPMode quirks, closes: #515326, #515512. + + -- Brice Goglin Thu, 19 Feb 2009 00:13:59 +0100 + +xserver-xorg-video-ati (1:6.10.99.0-1) experimental; urgency=low + + * New upstream release candidate. + + -- Brice Goglin Mon, 09 Feb 2009 22:51:40 +0100 + +xserver-xorg-video-ati (1:6.10.0-2) experimental; urgency=low + + * Build against xserver 1.6 rc1. + + -- Brice Goglin Thu, 22 Jan 2009 07:42:38 +0100 + +xserver-xorg-video-ati (1:6.10.0-1) experimental; urgency=low + + * New upstream release. + + Add AGP quirk for Fujitsu-Siemens E8010, closes: #510208. + + -- Brice Goglin Wed, 07 Jan 2009 09:23:15 +0100 + +xserver-xorg-video-ati (1:6.9.0.91-1) experimental; urgency=low + + * New upstream release candidate. + + -- Brice Goglin Tue, 23 Dec 2008 08:01:02 +0100 + +xserver-xorg-video-ati (1:6.9.0+git20081129.783cdb73-1) experimental; urgency=low + + * Pull upstream snapshot, up to commit 783cdb73. + + Add AGPMode quirk table, closes: #461144, #462590, #467460. + + -- Brice Goglin Sat, 29 Nov 2008 10:52:27 +0100 + +xserver-xorg-video-ati (1:6.9.0+git20081012.c0e6cb6d-1) experimental; urgency=low + + * Pull upstream snapshot, up to commit c0e6cb6d, closes: 500903. + + -- Brice Goglin Sun, 12 Oct 2008 08:57:46 +0200 + +xserver-xorg-video-ati (1:6.9.0+git20080826.a3cc1d7a-2) experimental; urgency=low + + * Build against xserver 1.5. + + -- Julien Cristau Thu, 04 Sep 2008 14:21:38 +0200 + +xserver-xorg-video-ati (1:6.9.0+git20080826.a3cc1d7a-1) experimental; urgency=low + + [ Brice Goglin ] + * Pull upstream snapshot, up to commit a3cc1d7a. + + [ Julien Cristau ] + * Build with -fvisibility=hidden, avoiding symbol name clashes with + radeonhd (closes: #472252). + + -- Brice Goglin Tue, 26 Aug 2008 21:33:42 +0200 + +xserver-xorg-video-ati (1:6.9.0+git20080802.1f3eee36-1) experimental; urgency=low + + * Pull upstream snapshot, up to commit 1f3eee36. + * Don't handle the nostrip build option in debian/rules, dh_strip does that; + allow the parallel=n option. + * Run autoreconf at build-time; build-depend on automake, libtool and + xutils-dev. + + -- Brice Goglin Sat, 02 Aug 2008 22:56:07 +0200 + +xserver-xorg-video-ati (1:6.9.0-2) experimental; urgency=low + + * Build against xserver 1.5 rc5. + + -- Julien Cristau Mon, 14 Jul 2008 01:35:34 +0200 + +xserver-xorg-video-ati (1:6.9.0-1+lenny3) unstable; urgency=low + + * Cherry-pick patches from the upstream git repository: + + Fix VT switching on M6 chips, closes: #435040. + + Remove un-needed dac check for single crtc cards. + + Make sure video offerlay offsets don't exceed the hardware limit + of 128 MB. + + Fix pasto in connector table setup for vga powerbooks + + -- Brice Goglin Tue, 26 Aug 2008 20:49:34 +0200 + +xserver-xorg-video-ati (1:6.9.0-1+lenny2) unstable; urgency=low + + * Cherry-pick patches from the upstream git repository: + + IGP VGA fixes. + + Add PCI ids for FireMV 2400 and HD3850. + + Clamp tex coords (r100/r200) for textured video (closes: #489779). + + Atombios: add support for other endians. + + Add quirk for Falcon NW laptop. + + Fix cursor with multi-head and rotation. + + Make sure cursor offsets are properly aligned when using EXA. + + Atombios: fix typo in mode conversion for panel. + + ATOM: fix for r4xx cards with no VRAM_Usage tables (closes: #467263) + + Fix console switch on R500. + + Add oem quirk for external tmds setup on Dell Inspiron 8600. + + Clean up legacy display watermark setup. + + Clear display priority bits before resetting them. + + Interlaced mode fixups for AVIVO chips. + + Add quirk for oem x300 card (closes: #492457). + + Fix error in driver connector table for powerbook w/ vga. + + R300: NUM_FPU adjustments for VAP_CNTL. + * Fix debian/rules build/patch dependencies. + + -- Brice Goglin Sat, 02 Aug 2008 18:54:49 +0200 + +xserver-xorg-video-ati (1:6.9.0-1+lenny1) unstable; urgency=low + + * Do not export MACH64, MACH32 and R128 pci ids in radeon.ids, + closes: #490990. + + -- Brice Goglin Tue, 15 Jul 2008 23:10:04 +0200 + +xserver-xorg-video-ati (1:6.9.0-1) unstable; urgency=low + + * New upstream release. + + -- Brice Goglin Fri, 27 Jun 2008 07:22:21 +0200 + +xserver-xorg-video-ati (1:6.8.192-1) unstable; urgency=low + + * New upstream release. + + Add some PLL tweaks, closes: #465864. + * Fix typo in long description, thanks Anders Semb Hermansen, + closes: #487628. + + -- Brice Goglin Wed, 25 Jun 2008 07:26:16 +0200 + +xserver-xorg-video-ati (1:6.8.191-3) unstable; urgency=low + + * xserver-xorg-video-radeon replaces earlier -ati packages, closes: #487527. + + -- Brice Goglin Sun, 22 Jun 2008 15:19:12 +0200 + +xserver-xorg-video-ati (1:6.8.191-2) unstable; urgency=low + + * Split the package into into the -ati package containing the ati driver + wrapper, and xserver-xorg-video-radeon containing the actual radeon + sub-driver. + xserver-xorg-video-ati now depends on -r128, -mach64 and -radeon + while -ati-dbg depends on their corresponding -dbg packages. + + -- Brice Goglin Thu, 19 Jun 2008 07:59:57 +0200 + +xserver-xorg-video-ati (1:6.8.191-1) unstable; urgency=low + + * New upstream release candidate. + + -- Brice Goglin Fri, 13 Jun 2008 01:38:55 +0200 + +xserver-xorg-video-ati (1:6.8.1~git20080528.faea0088-1) experimental; urgency=low + + * New upstream snapshot, up to commit faea0088. + + -- Brice Goglin Wed, 28 May 2008 11:54:21 +0200 + +xserver-xorg-video-ati (1:6.8.1~git20080521.04500c84-1) experimental; urgency=low + + * New upstream snapshot, up to commit 04500c84. + + Fix lockup on startup on IGP320M, closes: #480312. + + -- Brice Goglin Wed, 21 May 2008 07:54:45 +0200 + +xserver-xorg-video-ati (1:6.8.1~git20080512.94bf8f01-1) experimental; urgency=low + + * New upstream snapshot, up to commit 94bf8f01. + + Fix some DPMS-related brief blanking, closes: #467105. + * Build-depend on dpkg-dev >= 1.14.17 for dpkg-shlibdeps --warnings. + + -- Brice Goglin Mon, 12 May 2008 13:41:04 +0200 + +xserver-xorg-video-ati (1:6.8.1~git20080417.c5d62fa0-1) experimental; urgency=low + + * New upstream snapshot, up to commit c5d62fa0. + * Run dpkg-shlibdeps with --warnings=6. Drivers reference symbols from + /usr/bin/Xorg and other modules, and that's not a bug, so we want + dpkg-shlibdeps to shut up about symbols it can't find. + + -- Brice Goglin Mon, 21 Apr 2008 02:40:28 +0200 + +xserver-xorg-video-ati (1:6.8.1~git20080320.5e3b2128-1) experimental; urgency=low + + * New upstream snapshot, up to commit 5e3b2128. + + Driver-side fix of two colour cursors to ARGB conversion on + big endian platforms, needs a recent xserver-xorg-core to be + be complete, closes: #446123. + + -- Brice Goglin Thu, 20 Mar 2008 09:10:18 +0100 + +xserver-xorg-video-ati (1:6.8.1~git20080310.38606b08-1) experimental; urgency=low + + * New upstream snapshap, up to commit 38606b08. + + -- Brice Goglin Mon, 10 Mar 2008 23:48:13 +0100 + +xserver-xorg-video-ati (1:6.8.1~git20080302.a4398ac3-1) experimental; urgency=low + + * New upstream snapshot, after r128 and mach64 got split out. + + Depends on xserver-xorg-video-r128 and xserver-xorg-video-mach64. + + Drop obsolete conflicts/replaces. + + Add a NEWS entry about the need to change Driver ati into mach64/r128. + * Bump Standards-Version: to 3.7.3, no change needed. + * Remove XS- prefix to Vcs-Browser and Vcs-Git fields. + + -- Brice Goglin Sun, 02 Mar 2008 13:20:59 +0100 + +xserver-xorg-video-ati (1:6.8.0-1) unstable; urgency=low + + * New upstream release. + + Bring back to life planar-to-packed conversion for rs4xx, + closes: #448577. + + -- Brice Goglin Tue, 19 Feb 2008 08:24:35 +0100 + +xserver-xorg-video-ati (1:6.7.198~git20080203.f65e8dfa-1) experimental; urgency=low + + * New upstream snapshot, containing commits up to f65e8dfa. + + Reverts "Default to 1x again with non-v3 AGP cards", closes: #457767. + + -- Brice Goglin Sun, 03 Feb 2008 10:49:43 +0100 + +xserver-xorg-video-ati (1:6.7.198~git20080117.6bd510a2-1) experimental; urgency=low + + * New upstream snapshot, containing commits up to 6bd510a2. + + -- Brice Goglin Thu, 17 Jan 2008 10:54:03 +0100 + +xserver-xorg-video-ati (1:6.7.198~git20080109.10e7636c-1) experimental; urgency=low + + * New upstream snapshot, containing commits up to 10e7636c. + + -- Brice Goglin Wed, 09 Jan 2008 23:43:53 +0100 + +xserver-xorg-video-ati (1:6.7.198~git20080102.30cab1db-1) experimental; urgency=low + + * New upstream snapshot, containing commits up to 30cab1db. + + -- Brice Goglin Wed, 02 Jan 2008 22:04:12 +0100 + +xserver-xorg-video-ati (1:6.7.198~git20080101.f65374f5-1) experimental; urgency=low + + * New upstream snapshot, containing commits up to f65374f5. + + -- Brice Goglin Tue, 01 Jan 2008 11:37:58 +0100 + +xserver-xorg-video-ati (1:6.7.198~git20071223.ad3325f6-1) experimental; urgency=low + + * New upstream snapshot, containing commits up to ad3325f6. + + Add IgnoreLidStatus option to enable lid even when closed, + closes: #457612, #457516. + + Fix PLL input setup on mac cards, closes: #457563. + + -- Brice Goglin Sun, 23 Dec 2007 23:24:43 +0100 + +xserver-xorg-video-ati (1:6.7.198~git20071221.be7f8fd3-1) experimental; urgency=low + + * New upstream snapshot, containing commits up to be7f8fd3. + + New atombios based support for r500 and r600 boards. + + Zaphod mode is back, reimplemented on top of RandR 1.2. + + -- Brice Goglin Fri, 21 Dec 2007 08:39:57 +0100 + +xserver-xorg-video-ati (1:6.7.197-1) unstable; urgency=low + + * New upstream release candidate. + * Upload to unstable since this release candidate is supposed + to be much better than the old 1:6.6.193-3. + * Add a NEWS entry pointing to some RandR 1.2 documentation. + + -- Brice Goglin Fri, 21 Dec 2007 08:11:07 +0100 + +xserver-xorg-video-ati (1:6.7.197~git20071219.ce4fa1ce-1) experimental; urgency=low + + * New upstream snapshot, containing commits up to ce4fa1ce. + + Default to 1x again with non-v3 AGP cards, closes: #444049. + + -- Brice Goglin Wed, 19 Dec 2007 08:44:33 +0100 + +xserver-xorg-video-ati (1:6.7.196-2) experimental; urgency=low + + * New upstream snapshot, containing commits up to 5022d006. + + Fix the washed out color, closes: #440174. + + Update 01_gen_pci_ids.diff to use the new ati_pciids_gen.h. + + -- Brice Goglin Mon, 03 Dec 2007 21:26:02 +0100 + +xserver-xorg-video-ati (1:6.7.196-1) experimental; urgency=low + + * New upstream release candidate. + + -- Brice Goglin Mon, 12 Nov 2007 08:38:43 +0100 + +xserver-xorg-video-ati (1:6.7.195-2) experimental; urgency=low + + * New upstream snapshot, + based on commit ddec5783103045084a66a34d71326cc6e4a3f598 + + Fixes some LVDS issues, closes: #445746. + + -- Brice Goglin Tue, 09 Oct 2007 18:27:22 +0200 + +xserver-xorg-video-ati (1:6.7.195-1) experimental; urgency=low + + * New upstream release candidate. + + -- Julien Cristau Sat, 06 Oct 2007 02:56:56 +0200 + +xserver-xorg-video-ati (1:6.7.194-1) experimental; urgency=low + + * New upstream release candidate. + + Add MacModel "mini" option to support Mac Mini connector table, + closes: #443570. + + Fix crash when Xv window is outside of either crtc, + closes: #441902. + + -- Brice Goglin Mon, 24 Sep 2007 07:59:36 +0200 + +xserver-xorg-video-ati (1:6.7.193-1) experimental; urgency=low + + * New upstream release candidate. + + Fix distortion after lid close/reopen, closes: #435114. + + Stop wrongly detecting the TV-output as connected, closes: #439322. + + Fix outputs after VT switch, closes: #443151. + + -- Brice Goglin Thu, 20 Sep 2007 07:34:02 +0200 + +xserver-xorg-video-ati (1:6.7.192-4) experimental; urgency=low + + * Really build against xserver 2:1.4. + * Pull upstream commits up to 2d78e2b6f36c21812b15eea0f1c7004e748fd5ab. + + -- Brice Goglin Thu, 13 Sep 2007 22:35:56 +0200 + +xserver-xorg-video-ati (1:6.7.192-3) experimental; urgency=low + + * Build against xserver 2:1.4-1. + + -- Brice Goglin Fri, 07 Sep 2007 17:52:57 +0200 + +xserver-xorg-video-ati (1:6.7.192-2) experimental; urgency=low + + * Build against xserver 1.3.99.2. + + -- Brice Goglin Tue, 04 Sep 2007 19:12:45 +0200 + +xserver-xorg-video-ati (1:6.7.192-1) experimental; urgency=low + + * New upstream release candidate. + + UseFBDev option removed, closes: #372920. + + Monitor detection fixed, closes: #413500. + + -- Brice Goglin Mon, 27 Aug 2007 08:26:38 +0200 + +xserver-xorg-video-ati (1:6.7.191-1) experimental; urgency=low + + * New upstream release candidate. + + TV-output support, closes: #332410, #360186, #378594, #435691. + + Bump x11proto-randr-dev build-dependency to >= 1.2 for RandR-1.2 + support. + + -- Brice Goglin Thu, 23 Aug 2007 08:15:03 +0200 + +xserver-xorg-video-ati (1:6.6.193-2) experimental; urgency=low + + * Build against xserver 1.3.99.0. + * Add 01_gen_pci_ids.diff. This patch adds a list of pci id's that the + driver supports so that the server can automatically load it. + * Use ${binary:Version} instead of ${Source-Version}. + + -- Brice Goglin Mon, 20 Aug 2007 19:49:33 +0200 + +xserver-xorg-video-ati (1:6.6.193-1) experimental; urgency=low + + [ Brice Goglin ] + * New upstream release candidate. + + Add references to radeon and r128 manpages in SEE ALSO + in the ati(4) manpage (closes: #386001). + + Fix typo in "specifying" in the radeon(4) manpage + (closes: #432059). + + Fully zero-initialize info->CRT2pScrn->monitor (closes: #422777). + + Avoid crash in MACH64 Xv code (closes: #320828). + + Drop 01_ati_r128_update_chip_identification.diff since + this information is redundant and does not matter anyway + since the driver auto-detects how the card is connected + to the system. + + Drop 02_radeon_manpage.diff, merged upstream. + + [ Julien Cristau ] + * Add upstream URL to debian/copyright. Thanks, Loïc Minier. + + -- Brice Goglin Sat, 4 Aug 2007 15:14:49 +0200 + +xserver-xorg-video-ati (1:6.6.192-1) experimental; urgency=low + + [ Brice Goglin ] + * Build a xserver-xorg-video-ati-dbg package with debugging symbols. + * Fix Provides: xf86-video-driver-atimisc to match Replaces: and + Conflicts: xserver-xorg-video-atimisc. + Thanks to Eric Lavarde (closes: #372312). + * Bump Build-Depends: xserver-xorg-dev to >= 2:1.2.99.902 + (needed to let xsfbs get access to serverminver). + * Add XS-Vcs-*. + * Add a link to www.X.org and a reference to the xf86-video-ati + module in the long description (closes: #425321). + + [ Timo Aaltonen ] + * Replaces/Conflicts: xserver-xorg-driver-ati. + + [ Julien Cristau ] + * New upstream release candidate + * Refresh patch 02_radeon_manpage.diff. + + -- Julien Cristau Mon, 21 May 2007 01:28:33 +0200 + +xserver-xorg-video-ati (1:6.6.191-1) experimental; urgency=low + + [ Brice Goglin ] + * New upstream release candidate. + * autoreconf. + + [ Julien Cristau ] + * Drop Fabio and Branden from Uploaders, with their permission. Hopefully + they'll come back when they have more time! + + -- Julien Cristau Wed, 28 Mar 2007 14:26:43 +0200 + +xserver-xorg-video-ati (1:6.6.3-5) experimental; urgency=low + + * Bump build-dep on libdrm-dev to >= 2.2 to fix FTBFS (closes: #413100). + Thanks, Frank Lichtenheld! + * Add patch 02_radeon_manpage.diff to replace non-ascii character with the + corresponding groff escape sequence in the radeon manpage. + + -- Julien Cristau Fri, 2 Mar 2007 22:44:03 +0100 + +xserver-xorg-video-ati (1:6.6.3-4) experimental; urgency=low + + * Generate server dependencies automatically from the ABI + * Merge changes from upstream pre-release + * Remove obsolete 02_radeon_memmap_fbdev.diff + + -- David Nusinow Wed, 21 Feb 2007 22:54:17 -0500 + +xserver-xorg-video-ati (1:6.6.3-3) UNRELEASED; urgency=low + + * Add link to xserver-xorg-core bug script, so that bugreports contain + the user's config and log files. + * Bump dependency on xserver-xorg-core to >= 2:1.1.1-11, as previous + versions don't have the bug script. + + -- Julien Cristau Tue, 7 Nov 2006 07:30:39 +0100 + +xserver-xorg-video-ati (1:6.6.3-2) unstable; urgency=low + + * Add 02_radeon_memmap_fbdev.diff. This should fix breakage when using + fbdev. Thanks Michel Dänzer. Closes: #369167 + * Don't require libdrm-dev on hurd-i386. Thanks Michael Banck. + Closes: #392876 + + -- David Nusinow Sat, 14 Oct 2006 14:30:22 -0400 + +xserver-xorg-video-ati (1:6.6.3-1) unstable; urgency=low + + * New upstream release + + -- David Nusinow Fri, 13 Oct 2006 14:02:45 -0400 + +xserver-xorg-video-ati (1:6.6.2-2) unstable; urgency=low + + [ Drew Parsons ] + * Include upstream ChangeLog. Closes: #365104. + * Upload to unstable (X11R7.1 transition). + + -- David Nusinow Mon, 18 Sep 2006 19:57:28 -0400 + +xserver-xorg-video-ati (1:6.6.2-1) experimental; urgency=low + + * New upstream version. Happy birthday. + * Use debhelper 5. + * Standards version 3.7.2. + * Add reference to /usr/share/common-licenses/GPL to debian/copyright. + * Use dh_installman to install man pages. + * Exclude .la files from dh_install. + + -- Drew Parsons Thu, 31 Aug 2006 21:36:05 +1000 + +xserver-xorg-video-ati (1:6.6.1-2) experimental; urgency=low + + [ Drew Parsons ] + * Provides: xserver-xorg-video-1.0 not xserver-xorg-video. + + [ David Nusinow ] + * Bump xserver (build-)depends epochs to 2: to deal with botched + server upload + + -- David Nusinow Tue, 22 Aug 2006 23:46:26 +0000 + +xserver-xorg-video-ati (1:6.6.1-1) experimental; urgency=low + + [ Andres Salomon ] + * Test for obj-$(DEB_BUILD_GNU_TYPE) before creating it during build; + idempotency fix. + + [ David Nusinow ] + * New upstream release + * Bump dependency on xserver-xorg-core to >= 1:1.1.1. Do the same thing for + the build-dep on xserver-xorg-dev. + + -- David Nusinow Sun, 6 Aug 2006 20:15:19 +0000 + +xserver-xorg-video-ati (1:6.5.8.0-1) unstable; urgency=low + + * New upstream release + * Use dh_install with --list-missing + * Add build-dep on quilt + * Remove obsolete 02_ppc_fix.diff. Now incorporated upstream. + + -- David Nusinow Tue, 25 Apr 2006 22:11:48 -0400 + +xserver-xorg-video-ati (1:6.5.7.3-3) unstable; urgency=low + + * Upload to modular + + -- David Nusinow Sun, 26 Mar 2006 20:25:26 -0500 + +xserver-xorg-video-ati (1:6.5.7.3-2) experimental; urgency=low + + * Port patches from trunk + + general/043_ati_r128_update_chip_identification.diff + * Apply ppc-fix.patch and incorporate it in to our patch system instead of + just having it sit in the debian directory + + -- David Nusinow Sun, 26 Feb 2006 17:46:59 -0500 + +xserver-xorg-video-ati (1:6.5.7.3-1) experimental; urgency=low + + * First upload to Debian + * Change source package, package, and provides names to denote the + type of driver and that they are for xserver-xorg + + -- David Nusinow Fri, 13 Jan 2006 00:35:49 -0500 + +xserver-xorg-driver-ati (1:6.5.7.3-0ubuntu1) dapper; urgency=low + + * New upstream release. + * Also install Rage Theatre multimedia modules. + + -- Daniel Stone Wed, 4 Jan 2006 17:21:27 +1100 + +xserver-xorg-driver-ati (1:6.5.7-0ubuntu3) dapper; urgency=low + + * Add missing Build-Depends (x11proto-fonts-dev, x11proto-randr-dev, + x11proto-render-dev, libdrm (>> 1.0.5), x11proto-xf86dri-dev). + + -- Daniel Stone Mon, 5 Dec 2005 14:52:47 +1100 + +xserver-xorg-driver-ati (1:6.5.7-0ubuntu2) dapper; urgency=low + + * Apply patch from https://bugs.freedesktop.org/attachment.cgi?id=3620 to + fix hard crash on powerpc. The patch is also stored in + debian/ppc-fix.patch. + NOTE: according to benh the patch still needs some extra polishing. + + -- Fabio M. Di Nitto Fri, 25 Nov 2005 11:34:33 +0100 + +xserver-xorg-driver-ati (1:6.5.7-0ubuntu1) dapper; urgency=low + + * New upstream release. + + -- Daniel Stone Tue, 22 Nov 2005 13:25:16 +1100 + +xserver-xorg-driver-ati (1:6.5.6.1-1) dapper; urgency=low + + * New upstream release. + + -- Daniel Stone Tue, 25 Oct 2005 18:01:13 +1000 + +xserver-xorg-driver-ati (1:6.5.6-1) breezy; urgency=low + + * First xserver-xorg-driver-ati release. + + -- Daniel Stone Wed, 6 Jul 2005 15:48:17 +1000 --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/debian/compat +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/debian/compat @@ -0,0 +1 @@ +11 --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/debian/control +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/debian/control @@ -0,0 +1,79 @@ +Source: xserver-xorg-video-ati-hwe-18.04 +Section: x11 +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Debian X Strike Force +Build-Depends: + debhelper (>= 11), + quilt, + pkg-config, + xserver-xorg-dev-hwe-18.04 (>= 2:1.15.99), + libgl1-mesa-dev | libgl-dev, + libgbm-dev, + libdrm-dev (>= 2.4.89) [!hurd-i386], + libudev-dev [linux-any], + x11proto-dev, + xutils-dev (>= 1:7.5+4) +Standards-Version: 4.2.0 +Vcs-Git: https://salsa.debian.org/xorg-team/driver/xserver-xorg-video-ati.git +Vcs-Browser: https://salsa.debian.org/xorg-team/driver/xserver-xorg-video-ati.git +Homepage: https://wiki.freedesktop.org/xorg/RadeonFeature/ + +Package: xserver-xorg-video-ati-hwe-18.04 +Architecture: any +Depends: + ${shlibs:Depends}, + ${misc:Depends}, + ${xviddriver:Depends}, + xserver-xorg-video-radeon-hwe-18.04 +Suggests: + xserver-xorg-video-r128, + xserver-xorg-video-mach64 +Provides: + xserver-xorg-video-ati, xorg-renamed-package, xorg-renamed-package-hwe-18.04, + ${xviddriver:Provides} +Description: X.Org X server -- AMD/ATI display driver wrapper + This package provides the 'ati' driver for the AMD/ATI Mach64, Rage128, + Radeon, FireGL, FireMV, FirePro and FireStream series. This driver is + actually a wrapper that loads one of the 'mach64', 'r128' or 'radeon' + sub-drivers depending on the hardware. + These sub-drivers are brought through package dependencies. + . + Users of Rage, Mach, or Radeon boards may remove this package only if + they use Driver "r128", "mach64", or "radeon" in /etc/X11/xorg.conf + instead of relying on autodetection. + . + More information about X.Org can be found at: + + . + This package is built from the X.org xf86-video-ati driver module. +Replaces: xserver-xorg-video-ati +Conflicts: xserver-xorg-video-ati + +Package: xserver-xorg-video-radeon-hwe-18.04 +Architecture: any +Depends: + ${shlibs:Depends}, + ${misc:Depends}, + ${xviddriver:Depends} +Provides: + xserver-xorg-video-radeon, xorg-renamed-package, xorg-renamed-package-hwe-18.04, + ${xviddriver:Provides} +Suggests: firmware-amd-graphics +Description: X.Org X server -- AMD/ATI Radeon display driver + This package provides the 'radeon' driver for the AMD/ATI cards. The + following chips should be supported: R100, RV100, RS100, RV200, RS200, + RS250, R200, RV250, RV280, RS300, RS350, RS400/RS480, R300, R350, R360, + RV350, RV360, RV370, RV380, RV410, R420, R423/R430, R480/R481, + RV505/RV515/RV516/RV550, R520, RV530/RV560, RV570/R580, + RS600/RS690/RS740, R600, RV610/RV630, RV620/RV635, RV670, RS780/RS880, + RV710/RV730, RV740/RV770/RV790, CEDAR, REDWOOD, JUNIPER, CYPRESS, + HEMLOCK, PALM, SUMO/SUMO2, BARTS, TURKS, CAICOS, CAYMAN, ARUBA, TAHITI, + PITCAIRN, VERDE, OLAND, HAINAN, BONAIRE, KABINI, MULLINS, KAVERI, HAWAII. + . + More information about X.Org can be found at: + + . + This package is built from the X.org xf86-video-ati driver module. +Replaces: xserver-xorg-video-radeon +Conflicts: xserver-xorg-video-radeon --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/debian/copyright +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/debian/copyright @@ -0,0 +1,122 @@ +This package was downloaded from +https://xorg.freedesktop.org/releases/individual/driver/ + +Copyright 1997 through 2004 by Marc Aurele La France (TSI @ UQV), tsi@xfree86.org + +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 Marc Aurele La France not be used in advertising or +publicity pertaining to distribution of the software without specific, +written prior permission. Marc Aurele La France makes no representations +about the suitability of this software for any purpose. It is provided +"as-is" without express or implied warranty. + +MARC AURELE LA FRANCE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO +EVENT SHALL MARC AURELE LA FRANCE 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. + +Copyright 2000 Gareth Hughes +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice (including the next +paragraph) shall be included in all copies or substantial portions of the +Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +GARETH HUGHES BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +(c) 2004 Adam Jackson. Standard MIT license applies. + +Copyright 1999-2000 Precision Insight, Inc., Cedar Park, Texas. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice (including the next +paragraph) shall be included in all copies or substantial portions of the +Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL +PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + +Copyright 1999, 2000 ATI Technologies Inc., Markham, Ontario, +Precision Insight, Inc., Cedar Park, Texas, and +VA Linux Systems Inc., Fremont, California. + +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation on the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice (including the +next paragraph) shall be included in all copies or substantial +portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NON-INFRINGEMENT. IN NO EVENT SHALL ATI, PRECISION INSIGHT, VA LINUX +SYSTEMS AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +Copyright 2003 Alex Deucher. + +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation on the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice (including the +next paragraph) shall be included in all copies or substantial +portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NON-INFRINGEMENT. IN NO EVENT SHALL ALEX DEUCHER, OR ANY OTHER +CONTRIBUTORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + +Created by Bogdan D. bogdand@users.sourceforge.net +License: GPL (see /usr/share/common-licenses/GPL) --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/debian/patches/series +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/debian/patches/series @@ -0,0 +1 @@ +# placeholder --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/debian/rules +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/debian/rules @@ -0,0 +1,27 @@ +#!/usr/bin/make -f + +XXV=xserver-xorg-video + +override_dh_auto_configure: + dh_auto_configure --builddirectory=build/ -- \ + --libdir=/usr/lib + +# Kill *.la files, and forget no-one: +override_dh_install: + find debian/tmp -name '*.la' -delete + dh_install + +override_dh_missing: + dh_missing --fail-missing + +# Debug packages: +override_dh_strip: + dh_strip -pxserver-xorg-video-ati-hwe-18.04 --dbgsym-migration="xserver-xorg-video-ati-hwe-18.04-dbg (<< 1:18.0.1-2~)" + dh_strip -pxserver-xorg-video-radeon-hwe-18.04 --dbgsym-migration="xserver-xorg-video-radeon-hwe-18.04-dbg (<< 1:18.0.1-2~)" + +# That's a plugin, use appropriate warning level: +override_dh_shlibdeps: + dh_shlibdeps -- --warnings=6 + +%: + dh $@ --with quilt,xsf --builddirectory=build/ --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/debian/source/format +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/debian/source/format @@ -0,0 +1 @@ +1.0 --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/debian/upstream/signing-key.asc +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/debian/upstream/signing-key.asc @@ -0,0 +1,50 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v1 + +mQGiBEUcmfwRBACcBCeMF28Q5hgM7wvaF2Tq7KYjU1RSg5KE4zqoaH5KH4H+Rtvh +Wqyh4REAiGGcYowSDtRZN/22/gflf7PvHIRPz2NrrVJ9zTYupoSE/CR7khA9xgnj +6DvntwZ9SBLR4ZlnyQxd650xTlntVfki8k+4rr2TyEczF7RmqLG5i9ddcwCgzMw9 +u1bbIYiMQ+zkFq6CmIVYB+0EAITS9XD84t37DxXdZyJIKNoOh7jH0iKwtXBz+jcP +3TFcEKN58lfodTo++3Z3l6ZNrhP1kVQFrYUPYujBKVQ05omdZVDl6xHcxo7/KUws +of4xZAGXkTsf6jPLIOydqZAuldzUcQCK/ulDswg907WfEVnth6Ad3gv5KqF3DkSp +iyb1A/wI+Ph5/QqMkpFveYfgstu/5WqaUcn5o8skMhgxCBn7cnIR+Mhwt0cnU5P9 +ZdfDxRgIVzGTX728lHNdHf7dpT+0t2WuuY7rMZzfEiAwmfxs9Y/Qs+3dTgDx/f7K +BYYOpe7eo0QSvYDn/Uh2FfjWXE0J9LoWcKglAk2BMopWDigdjLQkQWxleCBEZXVj +aGVyIDxhbGV4ZGV1Y2hlckBnbWFpbC5jb20+iF4EExECAB4FAkUcmfwCGwMGCwkI +BwMCAxUCAwMWAgECHgECF4AACgkQm07k+YR03kCniwCgphi/DUYtemAoDipVO6IT +fDqLOhMAn0XjoWLPnlDd7DznKVwuuK+yind1uQENBEUcmf4QBACw+tOabCw1J+lk +2q66GnlOavqqCpgrCCRjSeR7Zf7qFu2nJoY/AoW/fhXn+CerEITjopH9vTIjAWKm +kaHd0uFSA9xYR4IEV1qIct9i6vAvxkk8jQII/kLWiUqjWU0x1YoR68RNBhdZ1vxV +RHzcIo+mo4aeXs8EJuS3u+TjZeUiSwADBgQAo+1Fg7SK9iEGqHkvpq15MLmV1fA5 +DiXFXVJfsq43MxDl/Lqn4xabXdVieXT6mwtnE7w2iueG3Ja7rEBO0DLoMng7u999 +49a3d6BJq6emFr4jk9YlzroQReqvVIQ7xwfEeAQVL9mVg/6eggY3S9a32QoZHXOp +CQ/a/MFkGtUi3PiISQQYEQIACQUCRRyZ/gIbDAAKCRCbTuT5hHTeQBEcAJsHHZeJ +F3qnDbP3c7nBnXtfsOSDQgCgl4RWePUa/QXjU0DL/NKn2zldhNE= +=9tgc +-----END PGP PUBLIC KEY BLOCK----- +-----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-ati-hwe-18.04-19.0.1.orig/debian/watch +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/debian/watch @@ -0,0 +1,4 @@ +#git=git://anongit.freedesktop.org/xorg/driver/xf86-video-ati +version=3 +opts=pgpsigurlmangle=s/$/.sig/ \ +https://xorg.freedesktop.org/releases/individual/driver/ xf86-video-ati-(.*)\.tar\.gz --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/debian/xserver-xorg-video-ati-hwe-18.04.NEWS +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/debian/xserver-xorg-video-ati-hwe-18.04.NEWS @@ -0,0 +1,18 @@ +xserver-xorg-video-ati (1:6.8.1~git20080302.a4398ac3-1) experimental; urgency=low + + * The 'ati' Xorg driver module does not contain the 'r128' and 'mach64' + submodules anymore. Users of Rage or Mach boards may safely remove + the xserver-xorg-video-ati packages only if they use Driver "r128" or + "mach64" instead of "ati" in their /etc/X11/xorg.conf. + + -- Brice Goglin Sun, 02 Mar 2008 13:22:03 +0100 + +xserver-xorg-video-ati (1:6.7.197-1) unstable; urgency=low + + * The X.Org ATI driver supports RandR 1.2 which enables dynamic + enabling, disabling, resizing, rotating, placing, ... of multiple + outputs at runtime. You might want to update your /etc/X11/xorg.conf + accordingly. See http://wiki.debian.org/XStrikeForce/HowToRandR12 + and http://www.intellinuxgraphics.org/dualhead.html for some help. + + -- Brice Goglin Fri, 21 Dec 2007 08:12:13 +0100 --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/debian/xserver-xorg-video-ati-hwe-18.04.install +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/debian/xserver-xorg-video-ati-hwe-18.04.install @@ -0,0 +1,2 @@ +usr/lib/xorg/modules/drivers/ati_drv.so +usr/share/man/man4/ati.4 --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/debian/xserver-xorg-video-ati-hwe-18.04.links +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/debian/xserver-xorg-video-ati-hwe-18.04.links @@ -0,0 +1 @@ +usr/share/bug/xserver-xorg-core/script usr/share/bug/xserver-xorg-video-ati-hwe-18.04/script --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/debian/xserver-xorg-video-radeon-hwe-18.04.NEWS +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/debian/xserver-xorg-video-radeon-hwe-18.04.NEWS @@ -0,0 +1,44 @@ +xserver-xorg-video-radeon (1:6.12.192-2) unstable; urgency=low + + * Starting with this version, the radeon driver enables kernel mode setting + (KMS) by default. This comes with a framebuffer driver which enables + native resolution on the console. KMS also allows faster VT switching + and mode changes. + + Enabling KMS may break X.org drivers that are not KMS-ready, for instance + radeonhd or vesa. + + In case of trouble KMS can be disabled with the 'nomodeset' kernel + command line parameter, or by editing /etc/modprobe.d/radeon-kms.conf. + + -- Brice Goglin Sun, 21 Mar 2010 19:46:25 +0100 + +xserver-xorg-video-radeon (1:6.12.2-2) unstable; urgency=low + + * The standard linux kernels in Debian as of version 2.6.29-1 do not contain + the firmware necessary to allow the radeon driver to use 3D acceleration + via DRI. In addition, the driver will pay significant performance + penalties for 2D and Xvideo usage when the firmware is absent. This + firmware has been moved to the firmware-linux package in non-free, and + must be installed to use this feature. + + -- David Nusinow Wed, 29 Apr 2009 21:14:53 -0400 + +xserver-xorg-video-ati (1:6.8.1~git20080302.a4398ac3-1) experimental; urgency=low + + * The 'ati' Xorg driver module does not contain the 'r128' and 'mach64' + submodules anymore. Users of Rage or Mach boards may safely remove + the xserver-xorg-video-ati packages only if they use Driver "r128" or + "mach64" instead of "ati" in their /etc/X11/xorg.conf. + + -- Brice Goglin Sun, 02 Mar 2008 13:22:03 +0100 + +xserver-xorg-video-ati (1:6.7.197-1) unstable; urgency=low + + * The X.Org ATI driver supports RandR 1.2 which enables dynamic + enabling, disabling, resizing, rotating, placing, ... of multiple + outputs at runtime. You might want to update your /etc/X11/xorg.conf + accordingly. See http://wiki.debian.org/XStrikeForce/HowToRandR12 + and http://www.intellinuxgraphics.org/dualhead.html for some help. + + -- Brice Goglin Fri, 21 Dec 2007 08:12:13 +0100 --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/debian/xserver-xorg-video-radeon-hwe-18.04.install +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/debian/xserver-xorg-video-radeon-hwe-18.04.install @@ -0,0 +1,3 @@ +usr/lib/xorg/modules/drivers/radeon_drv.so +usr/share/man/man4/radeon.4 +usr/share/X11/xorg.conf.d/10-radeon.conf --- xserver-xorg-video-ati-hwe-18.04-19.0.1.orig/debian/xserver-xorg-video-radeon-hwe-18.04.links +++ xserver-xorg-video-ati-hwe-18.04-19.0.1/debian/xserver-xorg-video-radeon-hwe-18.04.links @@ -0,0 +1 @@ +usr/share/bug/xserver-xorg-core/script usr/share/bug/xserver-xorg-video-radeon-hwe-18.04/script