-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
xorg-x11-drv-intel.spec
530 lines (386 loc) · 18.1 KB
/
xorg-x11-drv-intel.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
%define moduledir %(pkg-config xorg-server --variable=moduledir )
%define driverdir %{moduledir}/drivers
%define gitdate 20210126
%define gitrev .%{gitdate}
%undefine _hardened_build
Summary: Xorg X11 Intel video driver
Name: xorg-x11-drv-intel
Version: 2.99.917
Release: 50%{?gitrev}%{?dist}
URL: http://www.x.org
License: MIT
%if 0%{?gitdate}
Source0: xf86-video-intel-%{gitdate}.tar.bz2
%else
Source0: https://xorg.freedesktop.org/archive/individual/driver/xf86-video-intel-%{version}.tar.bz2
%endif
Source4: make-git-snapshot.sh
Patch0: intel-gcc-pr65873.patch
# https://bugs.freedesktop.org/show_bug.cgi?id=96255#c11
Patch4: 0001-sna-Avoid-clobbering-output-physical-size-with-xf86O.patch
ExclusiveArch: %{ix86} x86_64
BuildRequires: make
BuildRequires: autoconf automake libtool
BuildRequires: xorg-x11-server-devel >= 1.10.99.902
BuildRequires: libX11-devel
BuildRequires: libXcursor-devel
BuildRequires: libXdamage-devel
BuildRequires: libXext-devel
BuildRequires: libXfixes-devel
BuildRequires: libXinerama-devel
BuildRequires: libXrandr-devel
BuildRequires: libXrender-devel
BuildRequires: libXtst-devel
BuildRequires: libXvMC-devel
BuildRequires: libXfont2-devel
BuildRequires: mesa-libGL-devel >= 6.5-9
BuildRequires: libdrm-devel >= 2.4.25
BuildRequires: kernel-headers >= 2.6.32.3
BuildRequires: libudev-devel
BuildRequires: libxcb-devel >= 1.5
BuildRequires: xcb-util-devel
BuildRequires: cairo-devel
BuildRequires: python3
BuildRequires: libXScrnSaver-devel
BuildRequires: libXext-devel
BuildRequires: pixman-devel
# XXX this wants an upstream fix
BuildRequires: libXv-devel
Requires: Xorg %(xserver-sdk-abi-requires ansic)
Requires: Xorg %(xserver-sdk-abi-requires videodrv)
Requires: polkit
%description
X.Org X11 Intel video driver.
%if 0%{?gitdate}
%define dirsuffix %{gitdate}
%else
%define dirsuffix %{version}
%endif
%prep
%setup -q -n xf86-video-intel-%{?gitdate:%{gitdate}}%{!?gitdate:%{dirsuffix}}
%patch0 -p1 -b .gcc
%patch4 -p1
%build
# This package causes LTO to thrash sucking up enormous amounts of VM. This
# is almost certainly a GCC bug that will need to be analyzed/fixed. Until
# then, disable LTO.
%define _lto_cflags %{nil}
autoreconf -f -i -v
%configure --enable-kms-only --with-default-dri=3 --enable-tools
make %{?_smp_mflags} V=1
%install
%make_install
find $RPM_BUILD_ROOT -regex ".*\.la$" | xargs rm -f --
# libXvMC opens the versioned file name, these are useless
rm -f $RPM_BUILD_ROOT%{_libdir}/libI*XvMC.so
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%doc COPYING
%{driverdir}/intel_drv.so
%{_libdir}/libIntelXvMC.so.1*
%{_libexecdir}/xf86-video-intel-backlight-helper
%{_datadir}/polkit-1/actions/org.x.xf86-video-intel.backlight-helper.policy
%{_mandir}/man4/i*
%{_bindir}/intel-virtual-output
%changelog
* Tue Jan 26 2021 Marek Marczykowski-Górecki <[email protected]> - 2.99.917-50.20210126
- New git snapshot
* Thu Nov 5 2020 Peter Hutterer <[email protected]> - 2.99.917-49.20200205
- Add BuildRequires for make
* Sat Aug 01 2020 Fedora Release Engineering <[email protected]> - 2.99.917-48.20200205
- Second attempt - Rebuilt for
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Wed Jul 29 2020 Fedora Release Engineering <[email protected]> - 2.99.917-47.20200205
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Fri Jul 10 2020 Jeff Law <[email protected]> - 2.99.917-46
- Disable LTO
* Fri Apr 10 2020 Olivier Fourdan <[email protected]> - 2.99.917-45
- Rebuild with newer gcc (bug #1808767)
* Wed Feb 05 2020 Adam Jackson <[email protected]> - 2.99.917-44
- New git snapshot
* Fri Jan 31 2020 Fedora Release Engineering <[email protected]> - 2.99.917-44.20180618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Sat Jul 27 2019 Fedora Release Engineering <[email protected]> - 2.99.917-43.20180618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Mon Jun 03 2019 Lyude Paul <[email protected]> - 2.99.917-42.20180618
- Remove intel-gpu-tools and xorg-x11-drv-intel-devel subpackages, these have
been split out into igt-gpu-tools
* Sun Feb 03 2019 Fedora Release Engineering <[email protected]> - 2.99.917-41.20180618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Sun Nov 18 2018 Zbigniew Jędrzejewski-Szmek <[email protected]> - 2.99.917-40.20180618
- Drop explicit locale setting
See https://fedoraproject.org/wiki/Changes/Remove_glibc-langpacks-all_from_buildroot
* Sat Jul 14 2018 Fedora Release Engineering <[email protected]> - 2.99.917-39.20180618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Fri Jun 29 2018 Adam Jackson <[email protected]> - 2.99.917-38.20180618
- Use ldconfig scriptlet macros
* Mon Jun 18 2018 Adam Jackson <[email protected]> - 2.99.917-37
- Today's git snapshot (commit 3d395062)
- Clean up some conditionals
- Build with python3
* Wed May 30 2018 Adam Jackson <[email protected]> - 2.99.917-37
* Mon Apr 02 2018 Adam Jackson <[email protected]> - 2.99.917-36.20171025
- Rebuild for xserver 1.20
* Sun Mar 18 2018 Iryna Shcherbina <[email protected]> - 2.99.917-35.20171025
- Update Python 2 dependency declarations to new packaging standards
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
* Mon Mar 05 2018 Adam Jackson <[email protected]> - 2.99.917-34
- Fix build on F28+
* Fri Feb 09 2018 Fedora Release Engineering <[email protected]> - 2.99.917-33.20171025
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Mon Nov 06 2017 Merlin Mathesius <[email protected]> - 2.99.917-32.20171025
- Cleanup spec file conditionals
* Wed Oct 25 2017 Adam Jackson <[email protected]> - 2.99.917-31.20171025
- New git snapshot
* Thu Aug 03 2017 Fedora Release Engineering <[email protected]> - 2.99.917-30.20160929
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Thu Jul 27 2017 Fedora Release Engineering <[email protected]> - 2.99.917-29.20160929
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Sat Feb 11 2017 Fedora Release Engineering <[email protected]> - 2.99.917-28.20160929
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Tue Jan 10 2017 Hans de Goede <[email protected]> - 2.99.917-27
- Drop the patch to fail probe on skylake and newer, the xserver now
defaults to the modesetting driver for all recent GPUs
* Thu Sep 29 2016 Hans de Goede <[email protected]> - 2.99.917-26
- Update to latest git master for use with xserver-1.19
- Rebuild against xserver-1.19
* Wed Jul 20 2016 Bastien Nocera <[email protected]> - 2.99.917-25
- Avoid clobbering output physical size, should fix hidpi on Surface 3
* Tue Jul 12 2016 Hans de Goede <[email protected]> - 2.99.917-24.20160712
- Git snapshot du jour, bringing in a bunch of bugfixes
- Fix dpi issues on Surface 3 (also needs some kernel fixes)
- Hopefully fix rhbz#1354124
* Thu May 12 2016 Hans de Goede <[email protected]> - 2.99.917-23.20160512
- Update to 20160512 snapshot
- This fixes laptops with switchable graphics hanging after a dpms off of
the lcd screen (rhbz#1334581)
- Fix fd-leak when falling back to mode-setting on skylake, this fixes
Xorg exiting with a "drmSetMaster failed" error when not using server
managed fds (e.g. using a different login manager then gdm)
- Fix duplicate binaries in -devel / intel-gpu-tools subpackages (rhbz#1323641)
* Mon Mar 07 2016 Hans de Goede <[email protected]> - 2.99.917-22.20160119
- xorg-x11-drv-intel hardly has any accel on skylake and newer, so make
Xorg fallback to modesetting + glamor by returning FALSE from probe
- Using glamor also gives us proper Xvideo support on skylake (rhbz#1305369)
* Fri Feb 05 2016 Fedora Release Engineering <[email protected]> - 2.99.917-21.20160119
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Tue Jan 19 2016 Kevin Fenzi <[email protected]> - 2.99.917-20-20160119
- Update to 20160119 snapshot
* Sun Dec 06 2015 Adel Gadllah <[email protected]> - 2.99.917-19.20151109
- Update to 20151206 snapshot
* Tue Nov 17 2015 Adel Gadllah <[email protected]> - 2.99.917-18.20151109
- Reenable DRI3 - we ship xserver 1.18 now
* Mon Nov 09 2015 Kevin Fenzi <[email protected]> - 2.99.917-17.20151109
- Update to 20151109 snapshot
* Wed Sep 16 2015 Dave Airlie <[email protected]> - 2.99.917-16.20150729
- 1.18 ABI rebuild
* Wed Jul 29 2015 Dave Airlie <[email protected]> 2.99.917-15.20150729
- update to upstream git snapshot for ABI
* Wed Jul 29 2015 Dave Airlie <[email protected]> - 2.99.917-14.20150615
- 1.15 ABI rebuild
* Fri Jun 19 2015 Fedora Release Engineering <[email protected]> - 2.99.917-13.20150615
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Mon Jun 15 2015 Dave Airlie <[email protected]> 2.99.917-12
- you guessed it, git snap of the day
- this should bring some PRIME corruption fixes.
* Wed Jun 03 2015 Adam Jackson <[email protected]> 2.99.917-11
- Today's git snap
* Tue May 26 2015 Dave Airlie <[email protected]> 2.99.917-10
- update git snap
- fixes uninitialised properties crash
* Wed May 20 2015 Adam Jackson <[email protected]> 2.99.917-9
- Today's git snap
- Don't force the default to DRI3, use upstream's preference
- Fix build failure due to GCC PR65873
* Mon Mar 02 2015 Dave Airlie <[email protected]> 2.99.917-8
- this time for sure, now less hardended.
* Mon Mar 02 2015 Dave Airlie <[email protected]> 2.99.917-7
- remove cement, X.org drivers aren't hard enough.
* Thu Feb 26 2015 Hans de Goede <[email protected]> - 2.99.917-6
- Really really build intel-virtual-output (rhbz#1195962)
* Thu Feb 26 2015 Hans de Goede <[email protected]> - 2.99.917-5
- Add more missing BuildRequires so that intel-virtual-output really gets
build (rhbz#1195962)
* Thu Feb 26 2015 Hans de Goede <[email protected]> - 2.99.917-4
- Add missing BuildRequires libXext-devel so that intel-virtual-output gets
build (rhbz#1195962)
* Wed Feb 11 2015 Hans de Goede <[email protected]> - 2.99.917-3
- Git snapshot of the day to bring in various DPMS and other fixes
- Update gpu-tools to 1.9
- Xserver 1.17 ABI rebuild
* Wed Dec 24 2014 Adel Gadllah <[email protected]> 2.99.917-2
- Enable DRI3
* Mon Dec 22 2014 Kevin Fenzi <[email protected]> 2.99.917-1
- Update to 2.99.917
* Mon Nov 17 2014 Adam Jackson <[email protected]> 2.99.916-3
- Today's git snapshot
* Thu Sep 11 2014 Dave Airlie <[email protected]> 2.99.916-2
- backport some SNA and MST fixes.
* Wed Sep 10 2014 Dave Airlie <[email protected]> 2.99.916-1
- Rebase to 2.99.916
* Wed Sep 03 2014 Dave Airlie <[email protected]> 2.99.914-4
- Add UXA MST support as a fallback
* Tue Sep 02 2014 Adel Gadllah <[email protected]> - 2.99.914-3
- Backport fix for sna to fix broken shadow rendering in gtk
* Mon Aug 18 2014 Fedora Release Engineering <[email protected]> - 2.99.914-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Mon Jul 28 2014 Hans de Goede <[email protected]> - 2.99.914-1
- Rebase to 2.99.914
* Tue Jul 22 2014 Adel Gadllah <[email protected]> - 2.99.912-6
- Apply fix for sna render corruption due to missing fencing, FDO #81551
* Fri Jul 11 2014 Hans de Goede <[email protected]> - 2.99.912-5
- Fix a security issue in the backlight helper (CVE-2014-4910)
* Tue Jul 1 2014 Hans de Goede <[email protected]> - 2.99.912-4
- Re-enable DRI3 support (the latest mesa fixes the gnome-shell hang)
* Wed Jun 18 2014 Hans de Goede <[email protected]> - 2.99.912-3
- xserver 1.15.99.903 ABI rebuild
* Thu Jun 12 2014 Hans de Goede <[email protected]> - 2.99.912-2
- DRI3 support causes gnome-shell to hang, disable for now
* Wed Jun 11 2014 Hans de Goede <[email protected]> - 2.99.912-1
- Rebase to 2.99.912
- Rebuild for xserver 1.15.99.903
- Update intel-gpu-tools to 1.7 release
* Sun Jun 08 2014 Fedora Release Engineering <[email protected]> - 2.99.911-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Mon Apr 28 2014 Hans de Goede <[email protected]> - 2.99.911-2
- xserver 1.15.99-20140428 git snapshot ABI rebuild
- Add 2 patches from upstream to not close server-fds of udl devices
* Thu Apr 17 2014 Hans de Goede <[email protected]> - 2.99.911-1
- Rebase to 2.99.911
- Rebuild for xserver 1.15.99.902
* Mon Jan 13 2014 Adam Jackson <[email protected]> - 2.21.15-13
- 1.15 ABI rebuild
* Sat Dec 21 2013 Ville Skyttä <[email protected]> - 2.21.15-12
- Call ldconfig in %%post* scriptlets.
* Tue Dec 17 2013 Adam Jackson <[email protected]> - 2.21.15-11
- 1.15RC4 ABI rebuild
* Wed Nov 20 2013 Adam Jackson <[email protected]> - 2.21.15-10
- 1.15RC2 ABI rebuild
* Wed Nov 06 2013 Adam Jackson <[email protected]> - 2.21.15-9
- 1.15RC1 ABI rebuild
* Mon Oct 28 2013 Adam Jackson <[email protected]> - 2.21.15-8
- Don't patch in xwayland in RHEL
* Fri Oct 25 2013 Adam Jackson <[email protected]> - 2.21.15-7
- ABI rebuild
* Thu Oct 24 2013 Adam Jackson <[email protected]> 2.21.15-6
- Disable UMS support in F21+
* Thu Oct 24 2013 Adam Jackson <[email protected]> 2.21.15-5
- xserver 1.15 API compat
* Wed Oct 02 2013 Adam Jackson <[email protected]> 2.21.15-4
- Default to uxa again
* Mon Sep 23 2013 Adam Jackson <[email protected]> 2.21.15-2
- Change xwayland requires to be explicitly versioned
* Mon Sep 23 2013 Adam Jackson <[email protected]> 2.21.15-1
- intel 2.21.15
- xwayland support
* Tue Aug 06 2013 Dave Airlie <[email protected]> 2.21.14-1
- intel 2.21.24
- add fix to make build - re-enable autoreconf
* Sun Aug 04 2013 Fedora Release Engineering <[email protected]> - 2.21.12-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Tue Jul 23 2013 Adam Jackson <[email protected]> 2.21.12-1
- intel 2.21.12
* Tue Jun 11 2013 Adam Jackson <[email protected]> 2.21.9-1
- intel 2.21.9
- New i-g-t snapshot
- Drop useless symlinks from -devel
- Repurpose -devel for intel-gen4{,dis}asm
- Default to SNA in F20+
* Tue May 28 2013 Adam Jackson <[email protected]> 2.21.8-1
- intel 2.21.8
* Fri Apr 12 2013 Dave Airlie <[email protected]> 2.21.6-1
- intel 2.21.6
* Thu Mar 21 2013 Adam Jackson <[email protected]> 2.21.5-1
- intel 2.21.5
* Mon Mar 11 2013 Adam Jackson <[email protected]> 2.21.4-1
- intel 2.21.4
* Thu Mar 07 2013 Adam Jackson <[email protected]> 2.21.3-1
- intel 2.21.3
* Thu Mar 07 2013 Peter Hutterer <[email protected]> - 2.21.2-4
- ABI rebuild
* Fri Feb 15 2013 Peter Hutterer <[email protected]> - 2.21.2-3
- ABI rebuild
* Fri Feb 15 2013 Peter Hutterer <[email protected]> - 2.21.2-2
- ABI rebuild
* Tue Feb 12 2013 Adam Jackson <[email protected]> 2.21.2-1
- intel 2.21.2
- New i-g-t snapshot
- Pre-F16 changelog trim
* Wed Jan 16 2013 Adam Jackson <[email protected]> 2.20.18-2
- Compensate for rawhide's aclocal breaking in a newly stupid way
* Wed Jan 16 2013 Adam Jackson <[email protected]> 2.20.18-1
- intel 2.20.18
* Tue Jan 08 2013 Dave Airlie <[email protected]> 2.20.17-2
- Fix damage issue for reverse prime work
* Fri Jan 04 2013 Adam Jackson <[email protected]> 2.20.17-1
- intel 2.20.17
* Wed Jan 02 2013 Dave Airlie <[email protected]> 2.20.16-2
- Fix uxa bug that trips up ilk on 3.7 kernels
* Mon Dec 17 2012 Adam Jackson <[email protected]> 2.20.16-1
- intel 2.20.16
* Wed Nov 28 2012 Adam Jackson <[email protected]> 2.20.14-1
- intel 2.20.14
* Mon Oct 22 2012 Adam Jackson <[email protected]> 2.20.12-1
- intel 2.20.12
* Fri Oct 19 2012 Adam Jackson <[email protected]> 2.20.10-2
- Today's i-g-t
- Don't bother building the nouveau bits of i-g-t on OSes without an X
server with prime support.
* Mon Oct 15 2012 Dave Airlie <[email protected]> 2.20.10-1
- intel 2.20.10
* Fri Oct 05 2012 Adam Jackson <[email protected]> 2.20.9-1
- intel 2.20.9
- Today's intel-gpu-tools snapshot
* Fri Sep 21 2012 Adam Jackson <[email protected]> 2.20.8-1
- intel 2.20.8
* Mon Sep 10 2012 Adam Jackson <[email protected]> 2.20.7-1
- intel 2.20.7
* Fri Sep 07 2012 Dave Airlie <[email protected]> 2.20.6-2
- latest upstream git snapshot with prime + fixes
* Tue Sep 04 2012 Adam Jackson <[email protected]> 2.20.6-2
- Only bother to build UMS (read: i810) support on 32-bit. If you've
managed to build a machine with an i810 GPU but a 64-bit CPU, please
don't have done that.
* Tue Sep 04 2012 Adam Jackson <[email protected]> 2.20.6-1
- intel 2.20.6 (#853783)
* Thu Aug 30 2012 Adam Jackson <[email protected]> 2.20.5-2
- Don't package I810XvMC when not building legacy i810
* Mon Aug 27 2012 Adam Jackson <[email protected]> 2.20.5-1
- intel 2.20.5
* Mon Aug 20 2012 Adam Jackson <[email protected]> 2.20.4-3
- Rebuild for new xcb-util soname
* Mon Aug 20 2012 Adam Jackson <[email protected]> 2.20.4-2
- Backport some patches to avoid binding to non-i915.ko-driven Intel GPUs,
like Cedarview and friends (#849475)
* Mon Aug 20 2012 Adam Jackson <[email protected]> 2.20.4-1
- intel 2.20.4
* Thu Aug 16 2012 Dave Airlie <[email protected]> 2.20.3-3
- fix vmap flush to correct upstream version in prime patch
* Thu Aug 16 2012 Dave Airlie <[email protected]> 2.20.3-2
- snapshot upstream + add prime support for now
* Wed Aug 15 2012 Adam Jackson <[email protected]> 2.20.3-1
- intel 2.20.3
* Wed Aug 01 2012 Adam Jackson <[email protected]> 2.20.2-1
- intel 2.20.2
- Only disable UMS in RHEL7, since i810 exists in RHEL6
* Mon Jul 23 2012 Adam Jackson <[email protected]> 2.20.1-1
- intel 2.20.1
* Sun Jul 22 2012 Fedora Release Engineering <[email protected]> - 2.20.0-2.20120718
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Wed Jul 18 2012 Dave Airlie <[email protected]> 2.20.0-1.20120718
- todays git snapshot
* Tue Jun 12 2012 Dave Airlie <[email protected]> 2.19.0-5.20120612
- today's git snapshot
- resurrect copy-fb
* Tue May 29 2012 Adam Jackson <[email protected]> 2.19.0-4.20120529
- Today's git snapshot
- Enable SNA (default is still UXA, use Option "AccelMethod" to switch)
- build-fix.patch: Fix build with Fedora's default cflags
* Tue May 29 2012 Adam Jackson <[email protected]> 2.19.0-3
- Don't autoreconf the driver, fixes build on F16.
* Mon May 21 2012 Adam Jackson <[email protected]> 2.19.0-2
- Disable UMS support in RHEL.
- Trim some Requires that haven't been needed since F15.
* Thu May 03 2012 Adam Jackson <[email protected]> 2.19.0-1
- intel 2.19.0