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

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