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

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