Blame SPECS/xorg-x11-drv-intel.spec

8dbced
%define moduledir %(pkg-config xorg-server --variable=moduledir )
8dbced
%define driverdir	%{moduledir}/drivers
8dbced
%define gputoolsver 1.9
49b344
%define gitdate 20200205
8dbced
%define gitrev .%{gitdate}
8dbced
8dbced
%undefine _hardened_build
8dbced
8dbced
Summary:   Xorg X11 Intel video driver
8dbced
Name:      xorg-x11-drv-intel
8dbced
Version:   2.99.917
49b344
Release:   39%{?gitrev}%{?dist}
8dbced
URL:       http://www.x.org
8dbced
License:   MIT
8dbced
Group:     User Interface/X Hardware Support
8dbced
8dbced
%if 0%{?gitdate}
8dbced
Source0:    xf86-video-intel-%{gitdate}.tar.bz2
8dbced
%else
8dbced
Source0:    https://xorg.freedesktop.org/archive/individual/driver/xf86-video-intel-%{version}.tar.bz2
8dbced
%endif
8dbced
Source1:    make-intel-gpu-tools-snapshot.sh
8dbced
Source3:    https://xorg.freedesktop.org/archive/individual/app/intel-gpu-tools-%{gputoolsver}.tar.bz2
8dbced
Source4:    make-git-snapshot.sh
8dbced
8dbced
Patch0:	    intel-gcc-pr65873.patch
8dbced
Patch1:     igt-stat.patch
8dbced
# https://bugs.freedesktop.org/show_bug.cgi?id=96255#c11
8dbced
Patch4:     0001-sna-Avoid-clobbering-output-physical-size-with-xf86O.patch
49b344
#Patch5:     0001-Fix-build-on-F28-and-later.patch
49b344
#Patch6:     0001-Fix-build-on-i686.patch
8dbced
8dbced
ExclusiveArch: %{ix86} x86_64 ia64
8dbced
8dbced
BuildRequires: autoconf automake libtool
8dbced
BuildRequires: flex bison
8dbced
BuildRequires: xorg-x11-server-devel >= 1.10.99.902
8dbced
BuildRequires: libX11-devel
8dbced
BuildRequires: libXcursor-devel
8dbced
BuildRequires: libXdamage-devel
8dbced
BuildRequires: libXext-devel
8dbced
BuildRequires: libXfixes-devel
8dbced
BuildRequires: libXinerama-devel
8dbced
BuildRequires: libXrandr-devel
8dbced
BuildRequires: libXrender-devel
8dbced
BuildRequires: libXtst-devel
8dbced
BuildRequires: libXvMC-devel
8dbced
BuildRequires: libXfont2-devel
8dbced
BuildRequires: mesa-libGL-devel >= 6.5-9
8dbced
BuildRequires: libdrm-devel >= 2.4.25
8dbced
BuildRequires: kernel-headers >= 2.6.32.3
8dbced
BuildRequires: libudev-devel
8dbced
BuildRequires: libxcb-devel >= 1.5 
8dbced
BuildRequires: xcb-util-devel
8dbced
BuildRequires: cairo-devel
8dbced
BuildRequires: python3
8dbced
BuildRequires: libXScrnSaver-devel
8dbced
BuildRequires: libXext-devel
8dbced
BuildRequires: pixman-devel
8dbced
8dbced
Requires: Xorg %(xserver-sdk-abi-requires ansic)
8dbced
Requires: Xorg %(xserver-sdk-abi-requires videodrv)
8dbced
Requires: polkit
8dbced
8dbced
%description 
8dbced
X.Org X11 Intel video driver.
8dbced
8dbced
%package devel
8dbced
Summary:   Xorg X11 Intel video driver development package
8dbced
Group:     Development/System
8dbced
Requires:  %{name} = %{version}-%{release}
8dbced
Provides:  xorg-x11-drv-intel-devel = %{version}-%{release}
8dbced
8dbced
%description devel
8dbced
X.Org X11 Intel video driver development package.
8dbced
8dbced
%package -n intel-gpu-tools
8dbced
Summary:    Debugging tools for Intel graphics chips
8dbced
Group:	    Development/Tools
8dbced
8dbced
%description -n intel-gpu-tools
8dbced
Debugging tools for Intel graphics chips
8dbced
8dbced
%if 0%{?gitdate}
8dbced
%define dirsuffix %{gitdate}
8dbced
%else
8dbced
%define dirsuffix %{version}
8dbced
%endif
8dbced
8dbced
%prep
8dbced
%setup -q -n xf86-video-intel-%{?gitdate:%{gitdate}}%{!?gitdate:%{dirsuffix}} -b3
8dbced
%patch0 -p1 -b .gcc
8dbced
%patch4 -p1
49b344
#patch5 -p1
49b344
#patch6 -p1
8dbced
8dbced
pushd ../intel-gpu-tools-%{gputoolsver}
8dbced
%patch1 -p1 -b .stat
8dbced
popd
8dbced
8dbced
%build
8dbced
autoreconf -f -i -v
8dbced
%configure --enable-kms-only --with-default-dri=3 --enable-tools
8dbced
make %{?_smp_mflags} V=1
8dbced
8dbced
pushd ../intel-gpu-tools-%{gputoolsver}
8dbced
touch lib/check-ndebug.h
8dbced
mkdir -p m4
8dbced
autoreconf -f -i -v
8dbced
# --disable-dumper: quick_dump is both not recommended for packaging yet,
8dbced
# and requires python3 to build; i'd like to keep this spec valid for rhel6
8dbced
# for at least a bit longer
8dbced
%configure --disable-dumper
8dbced
# some of the sources are in utf-8 and pre-preprocessed by python
8dbced
export LANG=en_US.UTF-8
8dbced
make %{?_smp_mflags}
8dbced
popd
8dbced
8dbced
%install
8dbced
%make_install
8dbced
8dbced
pushd ../intel-gpu-tools-%{gputoolsver}
8dbced
make install DESTDIR=$RPM_BUILD_ROOT
8dbced
rm -f $RPM_BUILD_ROOT%{_bindir}/eudb
8dbced
popd
8dbced
8dbced
find $RPM_BUILD_ROOT -regex ".*\.la$" | xargs rm -f --
8dbced
8dbced
# libXvMC opens the versioned file name, these are useless
8dbced
rm -f $RPM_BUILD_ROOT%{_libdir}/libI*XvMC.so
8dbced
8dbced
8dbced
%ldconfig_post
8dbced
%ldconfig_postun
8dbced
8dbced
%files
8dbced
%doc COPYING
8dbced
%{driverdir}/intel_drv.so
8dbced
%{_libdir}/libIntelXvMC.so.1*
8dbced
%{_libexecdir}/xf86-video-intel-backlight-helper
8dbced
%{_datadir}/polkit-1/actions/org.x.xf86-video-intel.backlight-helper.policy
8dbced
%{_mandir}/man4/i*
8dbced
8dbced
%files devel
8dbced
%{_bindir}/intel-gen4asm
8dbced
%{_bindir}/intel-gen4disasm
8dbced
%{_libdir}/pkgconfig/intel-gen4asm.pc
8dbced
8dbced
%files -n intel-gpu-tools
8dbced
%doc COPYING
8dbced
%{_bindir}/gem_userptr_benchmark
8dbced
%{_bindir}/intel*
8dbced
%exclude %{_bindir}/intel-gen4asm
8dbced
%exclude %{_bindir}/intel-gen4disasm
8dbced
%{_datadir}/gtk-doc
8dbced
%{_mandir}/man1/intel_*.1*
8dbced
8dbced
%changelog
49b344
* Wed Jun 03 2020 Adam Jackson <ajax@redhat.com> - 2.99.917-39.20200205
49b344
- Sync the driver snapshot with Fedora 32
49b344
8dbced
* Fri Jun 29 2018 Adam Jackson <ajax@redhat.com> - 2.99.917-38.20180618
8dbced
- Use ldconfig scriptlet macros
8dbced
8dbced
* Mon Jun 18 2018 Adam Jackson <ajax@redhat.com> - 2.99.917-37
8dbced
- Today's git snapshot (commit 3d395062)
8dbced
- Clean up some conditionals
8dbced
- Build with python3
8dbced
8dbced
* Wed May 30 2018 Adam Jackson <ajax@redhat.com> - 2.99.917-37
8dbced
8dbced
* Mon Apr 02 2018 Adam Jackson <ajax@redhat.com> - 2.99.917-36.20171025
8dbced
- Rebuild for xserver 1.20
8dbced
8dbced
* Sun Mar 18 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.99.917-35.20171025
8dbced
- Update Python 2 dependency declarations to new packaging standards
8dbced
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
8dbced
8dbced
* Mon Mar 05 2018 Adam Jackson <ajax@redhat.com> - 2.99.917-34
8dbced
- Fix build on F28+
8dbced
8dbced
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.99.917-33.20171025
8dbced
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
8dbced
8dbced
* Mon Nov 06 2017 Merlin Mathesius <mmathesi@redhat.com> - 2.99.917-32.20171025
8dbced
- Cleanup spec file conditionals
8dbced
8dbced
* Wed Oct 25 2017 Adam Jackson <ajax@redhat.com> - 2.99.917-31.20171025
8dbced
- New git snapshot
8dbced
8dbced
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.99.917-30.20160929
8dbced
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
8dbced
8dbced
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.99.917-29.20160929
8dbced
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8dbced
8dbced
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.99.917-28.20160929
8dbced
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
8dbced
8dbced
* Tue Jan 10 2017 Hans de Goede <hdegoede@redhat.com> - 2.99.917-27
8dbced
- Drop the patch to fail probe on skylake and newer, the xserver now
8dbced
  defaults to the modesetting driver for all recent GPUs
8dbced
8dbced
* Thu Sep 29 2016 Hans de Goede <hdegoede@redhat.com> - 2.99.917-26
8dbced
- Update to latest git master for use with xserver-1.19
8dbced
- Rebuild against xserver-1.19
8dbced
8dbced
* Wed Jul 20 2016 Bastien Nocera <bnocera@redhat.com> - 2.99.917-25
8dbced
- Avoid clobbering output physical size, should fix hidpi on Surface 3
8dbced
8dbced
* Tue Jul 12 2016 Hans de Goede <hdegoede@redhat.com> - 2.99.917-24.20160712
8dbced
- Git snapshot du jour, bringing in a bunch of bugfixes
8dbced
- Fix dpi issues on Surface 3 (also needs some kernel fixes)
8dbced
- Hopefully fix rhbz#1354124
8dbced
8dbced
* Thu May 12 2016 Hans de Goede <hdegoede@redhat.com> - 2.99.917-23.20160512
8dbced
- Update to 20160512 snapshot
8dbced
- This fixes laptops with switchable graphics hanging after a dpms off of
8dbced
  the lcd screen (rhbz#1334581)
8dbced
- Fix fd-leak when falling back to mode-setting on skylake, this fixes
8dbced
  Xorg exiting with a "drmSetMaster failed" error when not using server
8dbced
  managed fds (e.g. using a different login manager then gdm)
8dbced
- Fix duplicate binaries in -devel / intel-gpu-tools subpackages (rhbz#1323641)
8dbced
8dbced
* Mon Mar 07 2016 Hans de Goede <hdegoede@redhat.com> - 2.99.917-22.20160119
8dbced
- xorg-x11-drv-intel hardly has any accel on skylake and newer, so make
8dbced
  Xorg fallback to modesetting + glamor by returning FALSE from probe
8dbced
- Using glamor also gives us proper Xvideo support on skylake (rhbz#1305369)
8dbced
8dbced
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.99.917-21.20160119
8dbced
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
8dbced
8dbced
* Tue Jan 19 2016 Kevin Fenzi <kevin@scrye.com> - 2.99.917-20-20160119
8dbced
- Update to 20160119 snapshot
8dbced
8dbced
* Sun Dec 06 2015 Adel Gadllah <adel.gadllah@gmail.com> - 2.99.917-19.20151109
8dbced
- Update to 20151206 snapshot
8dbced
8dbced
* Tue Nov 17 2015 Adel Gadllah <adel.gadllah@gmail.com> - 2.99.917-18.20151109
8dbced
- Reenable DRI3 - we ship xserver 1.18 now
8dbced
8dbced
* Mon Nov 09 2015 Kevin Fenzi <kevin@scrye.com> - 2.99.917-17.20151109
8dbced
- Update to 20151109 snapshot
8dbced
8dbced
* Wed Sep 16 2015 Dave Airlie <airlied@redhat.com> - 2.99.917-16.20150729
8dbced
- 1.18 ABI rebuild
8dbced
8dbced
* Wed Jul 29 2015 Dave Airlie <airlied@redhat.com> 2.99.917-15.20150729
8dbced
- update to upstream git snapshot for ABI
8dbced
8dbced
* Wed Jul 29 2015 Dave Airlie <airlied@redhat.com> - 2.99.917-14.20150615
8dbced
- 1.15 ABI rebuild
8dbced
8dbced
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.99.917-13.20150615
8dbced
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
8dbced
8dbced
* Mon Jun 15 2015 Dave Airlie <airlied@redhat.com> 2.99.917-12
8dbced
- you guessed it, git snap of the day
8dbced
- this should bring some PRIME corruption fixes.
8dbced
8dbced
* Wed Jun 03 2015 Adam Jackson <ajax@redhat.com> 2.99.917-11
8dbced
- Today's git snap
8dbced
8dbced
* Tue May 26 2015 Dave Airlie <airlied@redhat.com> 2.99.917-10
8dbced
- update git snap
8dbced
- fixes uninitialised properties crash
8dbced
8dbced
* Wed May 20 2015 Adam Jackson <ajax@redhat.com> 2.99.917-9
8dbced
- Today's git snap
8dbced
- Don't force the default to DRI3, use upstream's preference
8dbced
- Fix build failure due to GCC PR65873
8dbced
8dbced
* Mon Mar 02 2015 Dave Airlie <airlied@redhat.com> 2.99.917-8
8dbced
- this time for sure, now less hardended.
8dbced
8dbced
* Mon Mar 02 2015 Dave Airlie <airlied@redhat.com> 2.99.917-7
8dbced
- remove cement, X.org drivers aren't hard enough.
8dbced
8dbced
* Thu Feb 26 2015 Hans de Goede <hdegoede@redhat.com> - 2.99.917-6
8dbced
- Really really build intel-virtual-output (rhbz#1195962)
8dbced
8dbced
* Thu Feb 26 2015 Hans de Goede <hdegoede@redhat.com> - 2.99.917-5
8dbced
- Add more missing BuildRequires so that intel-virtual-output really gets
8dbced
  build (rhbz#1195962)
8dbced
8dbced
* Thu Feb 26 2015 Hans de Goede <hdegoede@redhat.com> - 2.99.917-4
8dbced
- Add missing BuildRequires libXext-devel so that intel-virtual-output gets
8dbced
  build (rhbz#1195962)
8dbced
8dbced
* Wed Feb 11 2015 Hans de Goede <hdegoede@redhat.com> - 2.99.917-3
8dbced
- Git snapshot of the day to bring in various DPMS and other fixes
8dbced
- Update gpu-tools to 1.9
8dbced
- Xserver 1.17 ABI rebuild
8dbced
8dbced
* Wed Dec 24 2014 Adel Gadllah <adel.gadllah@gmail.com> 2.99.917-2
8dbced
- Enable DRI3
8dbced
8dbced
* Mon Dec 22 2014 Kevin Fenzi <kevin@scrye.com> 2.99.917-1
8dbced
- Update to 2.99.917
8dbced
8dbced
* Mon Nov 17 2014 Adam Jackson <ajax@redhat.com> 2.99.916-3
8dbced
- Today's git snapshot
8dbced
8dbced
* Thu Sep 11 2014 Dave Airlie <airlied@redhat.com> 2.99.916-2
8dbced
- backport some SNA and MST fixes.
8dbced
8dbced
* Wed Sep 10 2014 Dave Airlie <airlied@redhat.com> 2.99.916-1
8dbced
- Rebase to 2.99.916
8dbced
8dbced
* Wed Sep 03 2014 Dave Airlie <airlied@redhat.com> 2.99.914-4
8dbced
- Add UXA MST support as a fallback
8dbced
8dbced
* Tue Sep 02 2014 Adel Gadllah <adel.gadllah@gmail.com> - 2.99.914-3
8dbced
- Backport fix for sna to fix broken shadow rendering in gtk
8dbced
8dbced
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.99.914-2
8dbced
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
8dbced
8dbced
* Mon Jul 28 2014 Hans de Goede <hdegoede@redhat.com> - 2.99.914-1
8dbced
- Rebase to 2.99.914
8dbced
8dbced
* Tue Jul 22 2014 Adel Gadllah <adel.gadllah@gmail.com> - 2.99.912-6
8dbced
- Apply fix for sna render corruption due to missing fencing, FDO #81551
8dbced
8dbced
* Fri Jul 11 2014 Hans de Goede <hdegoede@redhat.com> - 2.99.912-5
8dbced
- Fix a security issue in the backlight helper (CVE-2014-4910)
8dbced
8dbced
* Tue Jul  1 2014 Hans de Goede <hdegoede@redhat.com> - 2.99.912-4
8dbced
- Re-enable DRI3 support (the latest mesa fixes the gnome-shell hang)
8dbced
8dbced
* Wed Jun 18 2014 Hans de Goede <hdegoede@redhat.com> - 2.99.912-3
8dbced
- xserver 1.15.99.903 ABI rebuild
8dbced
8dbced
* Thu Jun 12 2014 Hans de Goede <hdegoede@redhat.com> - 2.99.912-2
8dbced
- DRI3 support causes gnome-shell to hang, disable for now
8dbced
8dbced
* Wed Jun 11 2014 Hans de Goede <hdegoede@redhat.com> - 2.99.912-1
8dbced
- Rebase to 2.99.912
8dbced
- Rebuild for xserver 1.15.99.903
8dbced
- Update intel-gpu-tools to 1.7 release
8dbced
8dbced
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.99.911-3
8dbced
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
8dbced
8dbced
* Mon Apr 28 2014 Hans de Goede <hdegoede@redhat.com> - 2.99.911-2
8dbced
- xserver 1.15.99-20140428 git snapshot ABI rebuild
8dbced
- Add 2 patches from upstream to not close server-fds of udl devices
8dbced
8dbced
* Thu Apr 17 2014 Hans de Goede <hdegoede@redhat.com> - 2.99.911-1
8dbced
- Rebase to 2.99.911
8dbced
- Rebuild for xserver 1.15.99.902
8dbced
8dbced
* Mon Jan 13 2014 Adam Jackson <ajax@redhat.com> - 2.21.15-13
8dbced
- 1.15 ABI rebuild
8dbced
8dbced
* Sat Dec 21 2013 Ville Skyttä <ville.skytta@iki.fi> - 2.21.15-12
8dbced
- Call ldconfig in %%post* scriptlets.
8dbced
8dbced
* Tue Dec 17 2013 Adam Jackson <ajax@redhat.com> - 2.21.15-11
8dbced
- 1.15RC4 ABI rebuild
8dbced
8dbced
* Wed Nov 20 2013 Adam Jackson <ajax@redhat.com> - 2.21.15-10
8dbced
- 1.15RC2 ABI rebuild
8dbced
8dbced
* Wed Nov 06 2013 Adam Jackson <ajax@redhat.com> - 2.21.15-9
8dbced
- 1.15RC1 ABI rebuild
8dbced
8dbced
* Mon Oct 28 2013 Adam Jackson <ajax@redhat.com> - 2.21.15-8
8dbced
- Don't patch in xwayland in RHEL
8dbced
8dbced
* Fri Oct 25 2013 Adam Jackson <ajax@redhat.com> - 2.21.15-7
8dbced
- ABI rebuild
8dbced
8dbced
* Thu Oct 24 2013 Adam Jackson <ajax@redhat.com> 2.21.15-6
8dbced
- Disable UMS support in F21+
8dbced
8dbced
* Thu Oct 24 2013 Adam Jackson <ajax@redhat.com> 2.21.15-5
8dbced
- xserver 1.15 API compat
8dbced
8dbced
* Wed Oct 02 2013 Adam Jackson <ajax@redhat.com> 2.21.15-4
8dbced
- Default to uxa again
8dbced
8dbced
* Mon Sep 23 2013 Adam Jackson <ajax@redhat.com> 2.21.15-2
8dbced
- Change xwayland requires to be explicitly versioned
8dbced
8dbced
* Mon Sep 23 2013 Adam Jackson <ajax@redhat.com> 2.21.15-1
8dbced
- intel 2.21.15
8dbced
- xwayland support
8dbced
8dbced
* Tue Aug 06 2013 Dave Airlie <airlied@redhat.com> 2.21.14-1
8dbced
- intel 2.21.24
8dbced
- add fix to make build - re-enable autoreconf
8dbced
8dbced
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.21.12-2
8dbced
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
8dbced
8dbced
* Tue Jul 23 2013 Adam Jackson <ajax@redhat.com> 2.21.12-1
8dbced
- intel 2.21.12
8dbced
8dbced
* Tue Jun 11 2013 Adam Jackson <ajax@redhat.com> 2.21.9-1
8dbced
- intel 2.21.9
8dbced
- New i-g-t snapshot
8dbced
- Drop useless symlinks from -devel
8dbced
- Repurpose -devel for intel-gen4{,dis}asm
8dbced
- Default to SNA in F20+
8dbced
8dbced
* Tue May 28 2013 Adam Jackson <ajax@redhat.com> 2.21.8-1
8dbced
- intel 2.21.8
8dbced
8dbced
* Fri Apr 12 2013 Dave Airlie <airlied@redhat.com> 2.21.6-1
8dbced
- intel 2.21.6
8dbced
8dbced
* Thu Mar 21 2013 Adam Jackson <ajax@redhat.com> 2.21.5-1
8dbced
- intel 2.21.5
8dbced
8dbced
* Mon Mar 11 2013 Adam Jackson <ajax@redhat.com> 2.21.4-1
8dbced
- intel 2.21.4
8dbced
8dbced
* Thu Mar 07 2013 Adam Jackson <ajax@redhat.com> 2.21.3-1
8dbced
- intel 2.21.3
8dbced
8dbced
* Thu Mar 07 2013 Peter Hutterer <peter.hutterer@redhat.com> - 2.21.2-4
8dbced
- ABI rebuild
8dbced
8dbced
* Fri Feb 15 2013 Peter Hutterer <peter.hutterer@redhat.com> - 2.21.2-3
8dbced
- ABI rebuild
8dbced
8dbced
* Fri Feb 15 2013 Peter Hutterer <peter.hutterer@redhat.com> - 2.21.2-2
8dbced
- ABI rebuild
8dbced
8dbced
* Tue Feb 12 2013 Adam Jackson <ajax@redhat.com> 2.21.2-1
8dbced
- intel 2.21.2
8dbced
- New i-g-t snapshot
8dbced
- Pre-F16 changelog trim
8dbced
8dbced
* Wed Jan 16 2013 Adam Jackson <ajax@redhat.com> 2.20.18-2
8dbced
- Compensate for rawhide's aclocal breaking in a newly stupid way
8dbced
8dbced
* Wed Jan 16 2013 Adam Jackson <ajax@redhat.com> 2.20.18-1
8dbced
- intel 2.20.18
8dbced
8dbced
* Tue Jan 08 2013 Dave Airlie <airlied@redhat.com> 2.20.17-2
8dbced
- Fix damage issue for reverse prime work
8dbced
8dbced
* Fri Jan 04 2013 Adam Jackson <ajax@redhat.com> 2.20.17-1
8dbced
- intel 2.20.17
8dbced
8dbced
* Wed Jan 02 2013 Dave Airlie <airlied@redhat.com> 2.20.16-2
8dbced
- Fix uxa bug that trips up ilk on 3.7 kernels
8dbced
8dbced
* Mon Dec 17 2012 Adam Jackson <ajax@redhat.com> 2.20.16-1
8dbced
- intel 2.20.16
8dbced
8dbced
* Wed Nov 28 2012 Adam Jackson <ajax@redhat.com> 2.20.14-1
8dbced
- intel 2.20.14
8dbced
8dbced
* Mon Oct 22 2012 Adam Jackson <ajax@redhat.com> 2.20.12-1
8dbced
- intel 2.20.12
8dbced
8dbced
* Fri Oct 19 2012 Adam Jackson <ajax@redhat.com> 2.20.10-2
8dbced
- Today's i-g-t
8dbced
- Don't bother building the nouveau bits of i-g-t on OSes without an X
8dbced
  server with prime support.
8dbced
8dbced
* Mon Oct 15 2012 Dave Airlie <airlied@redhat.com> 2.20.10-1
8dbced
- intel 2.20.10
8dbced
8dbced
* Fri Oct 05 2012 Adam Jackson <ajax@redhat.com> 2.20.9-1
8dbced
- intel 2.20.9
8dbced
- Today's intel-gpu-tools snapshot
8dbced
8dbced
* Fri Sep 21 2012 Adam Jackson <ajax@redhat.com> 2.20.8-1
8dbced
- intel 2.20.8
8dbced
8dbced
* Mon Sep 10 2012 Adam Jackson <ajax@redhat.com> 2.20.7-1
8dbced
- intel 2.20.7
8dbced
8dbced
* Fri Sep 07 2012 Dave Airlie <airlied@redhat.com> 2.20.6-2
8dbced
- latest upstream git snapshot with prime + fixes
8dbced
8dbced
* Tue Sep 04 2012 Adam Jackson <ajax@redhat.com> 2.20.6-2
8dbced
- Only bother to build UMS (read: i810) support on 32-bit.  If you've
8dbced
  managed to build a machine with an i810 GPU but a 64-bit CPU, please
8dbced
  don't have done that.
8dbced
8dbced
* Tue Sep 04 2012 Adam Jackson <ajax@redhat.com> 2.20.6-1
8dbced
- intel 2.20.6 (#853783)
8dbced
8dbced
* Thu Aug 30 2012 Adam Jackson <ajax@redhat.com> 2.20.5-2
8dbced
- Don't package I810XvMC when not building legacy i810
8dbced
8dbced
* Mon Aug 27 2012 Adam Jackson <ajax@redhat.com> 2.20.5-1
8dbced
- intel 2.20.5
8dbced
8dbced
* Mon Aug 20 2012 Adam Jackson <ajax@redhat.com> 2.20.4-3
8dbced
- Rebuild for new xcb-util soname
8dbced
8dbced
* Mon Aug 20 2012 Adam Jackson <ajax@redhat.com> 2.20.4-2
8dbced
- Backport some patches to avoid binding to non-i915.ko-driven Intel GPUs,
8dbced
  like Cedarview and friends (#849475)
8dbced
8dbced
* Mon Aug 20 2012 Adam Jackson <ajax@redhat.com> 2.20.4-1
8dbced
- intel 2.20.4
8dbced
8dbced
* Thu Aug 16 2012 Dave Airlie <airlied@redhat.com> 2.20.3-3
8dbced
- fix vmap flush to correct upstream version in prime patch
8dbced
8dbced
* Thu Aug 16 2012 Dave Airlie <airlied@redhat.com> 2.20.3-2
8dbced
- snapshot upstream + add prime support for now
8dbced
8dbced
* Wed Aug 15 2012 Adam Jackson <ajax@redhat.com> 2.20.3-1
8dbced
- intel 2.20.3
8dbced
8dbced
* Wed Aug 01 2012 Adam Jackson <ajax@redhat.com> 2.20.2-1
8dbced
- intel 2.20.2
8dbced
- Only disable UMS in RHEL7, since i810 exists in RHEL6
8dbced
8dbced
* Mon Jul 23 2012 Adam Jackson <ajax@redhat.com> 2.20.1-1
8dbced
- intel 2.20.1
8dbced
8dbced
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.20.0-2.20120718
8dbced
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8dbced
8dbced
* Wed Jul 18 2012 Dave Airlie <airlied@redhat.com> 2.20.0-1.20120718
8dbced
- todays git snapshot
8dbced
8dbced
* Tue Jun 12 2012 Dave Airlie <airlied@redhat.com> 2.19.0-5.20120612
8dbced
- today's git snapshot
8dbced
- resurrect copy-fb
8dbced
8dbced
* Tue May 29 2012 Adam Jackson <ajax@redhat.com> 2.19.0-4.20120529
8dbced
- Today's git snapshot
8dbced
- Enable SNA (default is still UXA, use Option "AccelMethod" to switch)
8dbced
- build-fix.patch: Fix build with Fedora's default cflags
8dbced
8dbced
* Tue May 29 2012 Adam Jackson <ajax@redhat.com> 2.19.0-3
8dbced
- Don't autoreconf the driver, fixes build on F16.
8dbced
8dbced
* Mon May 21 2012 Adam Jackson <ajax@redhat.com> 2.19.0-2
8dbced
- Disable UMS support in RHEL.
8dbced
- Trim some Requires that haven't been needed since F15.
8dbced
8dbced
* Thu May 03 2012 Adam Jackson <ajax@redhat.com> 2.19.0-1
8dbced
- intel 2.19.0