337bb7
%global tarball xf86-video-qxl
337bb7
%global moduledir %(pkg-config xorg-server --variable=moduledir )
337bb7
%global driverdir %{moduledir}/drivers
337bb7
337bb7
%undefine _hardened_build
337bb7
337bb7
# Xspice is x86_64 and ARM only since spice-server is x86_64 / ARM only
337bb7
%ifarch %{ix86} x86_64 %{arm} aarch64
337bb7
%define with_xspice (0%{?fedora} || 0%{?rhel} > 6)
337bb7
%else
337bb7
%define with_xspice 0
337bb7
%endif
337bb7
337bb7
#global gitdate 20160929
337bb7
#global gitversion e13d28ee
337bb7
337bb7
%if 0%{?gitdate}
337bb7
337bb7
%define gver .%{gitdate}git%{gitversion}
337bb7
%endif
337bb7
337bb7
Summary:   Xorg X11 qxl video driver
337bb7
Name:      xorg-x11-drv-qxl
337bb7
337bb7
Version:   0.1.5
337bb7
abf980
Release:   11%{?gver}%{?dist}
337bb7
URL:       http://www.x.org
337bb7
Source0:  http://xorg.freedesktop.org/releases/individual/driver/%{tarball}-%{version}.tar.bz2
337bb7
#Source0:   %{tarball}-%{gitdate}.tar.bz2
337bb7
Patch1: 0001-worst-hack-of-all-time-to-qxl-driver.patch
337bb7
Patch2: 0002-Xspice-Use-print-instead-of-print.patch
337bb7
Patch3: 0003-Xspice-Remove-extra-space-before-assignment.patch
337bb7
Patch4: 0004-Xspice-Fix-Python3-str-vs-bytes-confusion.patch
337bb7
Patch6: 0006-qxl-call-provider-init.patch
337bb7
Patch7: 0007-modesetting-Validate-the-atom-for-enum-properties.patch
337bb7
Patch8: 0008-qxl-Initialize-prev-field-while-dup-surface-list.patch
337bb7
337bb7
337bb7
License:   MIT
337bb7
Group:     User Interface/X Hardware Support
337bb7
337bb7
ExcludeArch: s390 s390x
337bb7
337bb7
BuildRequires: pkgconfig
337bb7
BuildRequires: git-core
337bb7
BuildRequires: xorg-x11-server-devel >= 1.1.0-1
337bb7
BuildRequires: spice-protocol >= 0.12.1
337bb7
BuildRequires: libdrm-devel >= 2.4.46-1
337bb7
337bb7
%if %{with_xspice}
337bb7
BuildRequires: spice-server-devel >= 0.8.0
337bb7
BuildRequires: python3-rpm-macros
337bb7
%endif
337bb7
BuildRequires: glib2-devel
337bb7
BuildRequires: libtool
337bb7
BuildRequires: libudev-devel
337bb7
BuildRequires: libXfont2-devel
ef087c
BuildRequires: libXext-devel
337bb7
337bb7
Requires: Xorg %(xserver-sdk-abi-requires ansic)
337bb7
Requires: Xorg %(xserver-sdk-abi-requires videodrv)
337bb7
337bb7
%description
337bb7
X.Org X11 qxl video driver.
337bb7
337bb7
%if %{with_xspice}
337bb7
%package -n    xorg-x11-server-Xspice
337bb7
Summary:       XSpice is an X server that can be accessed by a Spice client
337bb7
Requires:      Xorg %(xserver-sdk-abi-requires ansic)
337bb7
Requires:      Xorg %(xserver-sdk-abi-requires videodrv)
337bb7
Requires:      xorg-x11-server-Xorg
337bb7
337bb7
%description -n xorg-x11-server-Xspice
337bb7
XSpice is both an X and a Spice server.
337bb7
%endif
337bb7
337bb7
%prep
337bb7
%autosetup -S git_am -n %{tarball}-%{?gitdate:%{gitdate}}%{!?gitdate:%{version}}
337bb7
337bb7
337bb7
%build
337bb7
autoreconf -ivf
337bb7
%if %{with_xspice}
337bb7
%define enable_xspice --enable-xspice
337bb7
%endif
337bb7
%configure --disable-static %{?enable_xspice}
337bb7
make %{?_smp_mflags}
337bb7
337bb7
337bb7
%install
337bb7
make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p'
337bb7
337bb7
%if %{with_xspice}
337bb7
# Switch hardcoded python3 shebangs into the %%{__python3} macro
337bb7
sed -i '1s=^#!/usr/bin/python$=#!%{__python3}=' %{buildroot}%{_bindir}/Xspice
337bb7
%endif
337bb7
337bb7
# FIXME: Remove all libtool archives (*.la) from modules directory.  This
337bb7
# should be fixed in upstream Makefile.am or whatever.
337bb7
find $RPM_BUILD_ROOT -regex ".*\.la$" | xargs rm -f --
337bb7
337bb7
%if %{with_xspice}
337bb7
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/X11
337bb7
install -p -m 644 examples/spiceqxl.xorg.conf.example \
337bb7
    $RPM_BUILD_ROOT%{_sysconfdir}/X11/spiceqxl.xorg.conf
337bb7
# FIXME: upstream installs this file by default, we install it elsewhere.
337bb7
# upstream should just not install it and let dist package deal with
337bb7
# doc/examples.
337bb7
rm -f $RPM_BUILD_ROOT/usr/share/doc/xf86-video-qxl/spiceqxl.xorg.conf.example
337bb7
%if !%{with_xspice}
337bb7
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/X11/spiceqxl.xorg.conf
337bb7
%endif
337bb7
%endif
337bb7
337bb7
337bb7
%files
337bb7
%doc COPYING README
337bb7
%{driverdir}/qxl_drv.so
337bb7
337bb7
%if %{with_xspice}
337bb7
%files -n xorg-x11-server-Xspice
337bb7
%doc COPYING README.xspice README examples/spiceqxl.xorg.conf.example
337bb7
%config(noreplace) %{_sysconfdir}/X11/spiceqxl.xorg.conf
337bb7
%{_bindir}/Xspice
337bb7
%{driverdir}/spiceqxl_drv.so
337bb7
%endif
337bb7
337bb7
337bb7
%changelog
abf980
* Wed Nov 20 2019 Tomas Pelka <tpelka@redhat.com> - 0.1.5-11
abf980
- Rebuild and version bump to pick up gating correctly
abf980
- Resolves: rhbz#1754584
abf980
abf980
* Wed Nov 20 2019 Kevin Pouget <kpouget@redhat.com> - 0.1.5-10
abf980
- Rebuild for new ABI
abf980
- Resolves: rhbz#1754584
abf980
337bb7
* Tue Dec 18 2018 Victor Toso <victortoso@redhat.com> - 0.1.5-9
337bb7
- Fix crash on shutdown
337bb7
  Resolves: rhbz#1641793
337bb7
337bb7
* Wed Jul 04 2018 Christophe Fergeau <cfergeau@redhat.com> - 0.1.5-8
337bb7
- Adjust python3 shebang to make it point at #!%{_python3}
337bb7
337bb7
* Thu May 17 2018 Christophe Fergeau <cfergeau@redhat.com> - 0.1.5-7
337bb7
- Add upstream patches for Python 3 support
337bb7
- Validate RANDR output property atoms
337bb7
- Add patch fixing crash with multiple QXL devices
337bb7
- This syncs the RHEL branch with both current rawhide and RHEL 7.6
337bb7
337bb7
* Mon May 14 2018 Adam Jackson <ajax@redhat.com> - 0.1.5-6.1
337bb7
- Rebuild for xserver 1.20
337bb7
337bb7
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.5-6
337bb7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
337bb7
337bb7
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.5-5
337bb7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
337bb7
337bb7
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.5-4
337bb7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
337bb7
337bb7
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.5-3
337bb7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
337bb7
337bb7
* Tue Dec 20 2016 Christophe Fergeau <cfergeau@redhat.com> 0.1.5-2
337bb7
- Build on the same arches as spice-server
337bb7
337bb7
* Mon Dec 19 2016 Christophe Fergeau <cfergeau@redhat.com> 0.1.5-1%{?gver}%{?dist}
337bb7
- Update to latest upstream release. All patches except one have been upstreamed.
337bb7
337bb7
* Mon Dec 19 2016 Christophe Fergeau <cfergeau@redhat.com> 0.1.4-11.20160929gite13d28ee
337bb7
- Fix xspice crashing when used with xserver-1.19 (rhbz#1405939)
337bb7
  Previous patch was only partially fixing the issue
337bb7
337bb7
* Tue Oct  4 2016 Hans de Goede <hdegoede@redhat.com> - 0.1.4-10.20160929gite13d28ee
337bb7
- Fix qxl driver crashing when used with xserver-1.19 (rhbz#1381045)
337bb7
337bb7
* Thu Sep 29 2016 Hans de Goede <hdegoede@redhat.com> - 0.1.4-9.20160929gite13d28ee
337bb7
- Update to latest git master for use with xserver-1.19
337bb7
- Rebuild against xserver-1.19
337bb7
- Really build xspice on ARMv7/aarch64
337bb7
337bb7
* Mon Jul 11 2016 Peter Robinson <pbrobinson@fedoraproject.org> 0.1.4-8
337bb7
- Spice server is on ARMv7/aarch64
337bb7
337bb7
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.4-7
337bb7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
337bb7
337bb7
* Wed Sep 16 2015 Dave Airlie <airlied@redhat.com> - 0.1.4-6
337bb7
- 1.18 ABI rebuild
337bb7
337bb7
* Thu Aug 06 2015 Christophe Fergeau <cfergeau@redhat.com> 0.1.4-5
337bb7
- Drop patches from 0.1.4-4 (one is not upstream, the other one is causing Xorg
337bb7
  crashes at startup)
337bb7
- Add upstream patches fixing compilation with Xorg 1.18
337bb7
337bb7
* Tue Aug 04 2015 Adam Williamson <awilliam@redhat.com> - 0.1.4-4
337bb7
- fix build with a couple of patches from upstream list (from davidshea)
337bb7
337bb7
* Wed Jul 29 2015 Dave Airlie <airlied@redhat.com>
337bb7
- 1.15 ABI rebuild
337bb7
337bb7
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.4-3
337bb7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
337bb7
337bb7
* Tue Apr 28 2015 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 0.1.4-2
337bb7
- fix build on aarch64 - rhbz#1201877
337bb7
337bb7
* Thu Apr 02 2015 Christophe Fergeau <cfergeau@redhat.com> 0.1.4-1
337bb7
- Update to 0.1.4 release
337bb7
337bb7
* Tue Mar 03 2015 Dave Airlie <airlied@redhat.com> 0.1.3-3
337bb7
- remove hardened build
337bb7
337bb7
* Wed Feb 11 2015 Hans de Goede <hdegoede@redhat.com> - 0.1.3-2
337bb7
- xserver 1.17 ABI rebuild
337bb7
337bb7
* Fri Oct 31 2014 Christophe Fergeau <cfergeau@redhat.com> 0.1.3-1
337bb7
- Update to 0.1.3 release
337bb7
337bb7
* Fri Oct 10 2014 Christophe Fergeau <cfergeau@redhat.com> 0.1.2-1
337bb7
- Update to new 0.1.2 upstream release
337bb7
337bb7
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1-13
337bb7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
337bb7
337bb7
* Mon Jul  7 2014 Marc-André Lureau <marcandre.lureau@redhat.com> 0.1.1-12
337bb7
- add fix for invisible cursor after resize (#1116870)
337bb7
337bb7
* Mon Jun 16 2014 Hans de Goede <hdegoede@redhat.com> - 0.1.1-11
337bb7
- xserver 1.15.99.903 ABI rebuild
337bb7
337bb7
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1-10
337bb7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
337bb7
337bb7
* Mon Apr 28 2014 Hans de Goede <hdegoede@redhat.com> - 0.1.1-9
337bb7
- Add patches for server managed fd support
337bb7
- xserver 1.15.99-20140428 git snapshot ABI rebuild
337bb7
337bb7
* Tue Jan 14 2014 Dave Airlie <airlied@redhat.com> 0.1.1-8
337bb7
- grab patches from F20 - fix dates
337bb7
337bb7
* Mon Jan 13 2014 Adam Jackson <ajax@redhat.com> - 0.1.1-7
337bb7
- 1.15 ABI rebuild
337bb7
337bb7
* Tue Dec 17 2013 Adam Jackson <ajax@redhat.com> - 0.1.1-6
337bb7
- 1.15RC4 ABI rebuild
337bb7
337bb7
* Wed Nov 20 2013 Adam Jackson <ajax@redhat.com> - 0.1.1-5
337bb7
- 1.15RC2 ABI rebuild
337bb7
337bb7
* Wed Nov 06 2013 Adam Jackson <ajax@redhat.com> - 0.1.1-4
337bb7
- 1.15RC1 ABI rebuild
337bb7
337bb7
* Fri Oct 25 2013 Adam Jackson <ajax@redhat.com> - 0.1.1-3
337bb7
- ABI rebuild
337bb7
337bb7
* Thu Oct 24 2013 Adam Jackson <ajax@redhat.com> 0.1.1-2
337bb7
- Drop qxl rev 1 patches
337bb7
337bb7
* Mon Oct 21 2013 Alon Levy <alevy@redhat.com> - 0.1.1-1
337bb7
- New upstream release
337bb7
- Fixes to said release to work with suid issues (upstream)
337bb7
337bb7
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1-0.14.20130514git77a1594
337bb7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
337bb7
337bb7
* Wed Jul 03 2013 Dave Airlie <airlied@redhat.com> 0.1.1-0.13
337bb7
- resnapshot upstream to pick up a few patches
337bb7
- add userspace patch to use new kernel hotspot interface (#974662)
337bb7
337bb7
* Wed Jul 03 2013 Dave Airlie <airlied@redhat.com> 0.1.1-0.12
337bb7
- add support for udev event catching - for dynamic resize from kernel
337bb7
337bb7
* Tue Jul 02 2013 Dave Airlie <airlied@redhat.com> 0.1.1-0.11
337bb7
- helps if you apply the patch (#978612)
337bb7
337bb7
* Sat Jun 29 2013 Dave Airlie <airlied@redhat.com> 0.1.1-0.10
337bb7
- fix another resize issue due (#978612)
337bb7
337bb7
* Tue Jun 18 2013 Dave Airlie <airlied@redhat.com> 0.1.1-0.9
337bb7
- disable composite/a8 surfaces for KMS (#974198)
337bb7
337bb7
* Tue May 28 2013 Dave Airlie <airlied@redhat.com> 0.1.1-0.8
337bb7
- fix 32-bit (#965101)
337bb7
337bb7
* Tue May 14 2013 Dave Airlie <airlied@redhat.com> 0.1.1-0.7
337bb7
- resnapshot - fixes randr under KMS
337bb7
337bb7
* Tue May 14 2013 Daniel Mach <dmach@redhat.com> - 0.1.1-0.6
337bb7
- Fix with_xspice macro definition (airlied - cherrypick)
337bb7
337bb7
* Tue May 7 2013 Alon Levy <alevy@redhat.com> 0.1.1-0.5
337bb7
- Add Xspice fixes and dfps (upstream a474a71..77a1594)
337bb7
337bb7
* Tue Mar 19 2013 Adam Jackson <ajax@redhat.com> 0.1.1-0.4
337bb7
- Less RHEL customization
337bb7
337bb7
* Tue Mar 12 2013 Dave Airlie <airlied@redhat.com> 0.1.1-0.3.20130312gita474a71
337bb7
- add KMS support to userspace driver
337bb7
337bb7
* Thu Mar 07 2013 Peter Hutterer <peter.hutterer@redhat.com> - 0.1.1-0.2.20130306git9d45cc5
337bb7
- ABI rebuild
337bb7
337bb7
* Wed Mar 06 2013 Dave Airlie <airlied@redhat.com> 0.1.1-0.1
337bb7
- bump to get UMS bo abstraction in - kms coming soon
337bb7
337bb7
* Fri Feb 15 2013 Peter Hutterer <peter.hutterer@redhat.com> - 0.1.0-4
337bb7
- ABI rebuild
337bb7
337bb7
* Fri Feb 15 2013 Peter Hutterer <peter.hutterer@redhat.com> - 0.1.0-3
337bb7
- ABI rebuild
337bb7
337bb7
* Thu Jan 10 2013 Adam Jackson <ajax@redhat.com> - 0.1.0-2
337bb7
- ABI rebuild
337bb7
337bb7
* Sat Sep 22 2012 Soren Sandmann <ssp@redhat.com> 0.1.0-1
337bb7
- Upstream 0.1.0
337bb7
337bb7
* Wed Aug 29 2012 Adam Jackson <ajax@redhat.com> 0.0.22-6
337bb7
- Exclude Xspice from RHEL6 builds
337bb7
337bb7
* Sun Aug 26 2012 Alon Levy <alevy@redhat.com>
337bb7
- fix uxa_xorg_enable_disable_fb_access - 0.0.22-5.20120718gitde6620788 (#844463)
337bb7
337bb7
* Thu Aug 23 2012 Alon Levy <alevy@redhat.com>
337bb7
- fix break from introduction of screen privates - 0.0.22-4.20120718gitde6620788 (#844463)
337bb7
337bb7
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.22-3.20120718gitde6620788
337bb7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
337bb7
337bb7
* Wed Jul 18 2012 Dave Airlie <airlied@redhat.com> 0.0.22-2.20120718gitde6620788
337bb7
- git snapshot for new server API
337bb7
337bb7
* Thu Apr 05 2012 Adam Jackson <ajax@redhat.com> - 0.0.22-1
337bb7
- RHEL arch exclude updates
337bb7
337bb7
* Thu Mar 15 2012 Soren Sandmann <ssp@redhat.com> - 0.22.0
337bb7
- Upstream 0.0.17
337bb7
337bb7
* Sat Feb 11 2012 Peter Hutterer <peter.hutterer@redhat.com> - 0.0.21-16
337bb7
- ABI rebuild
337bb7
337bb7
* Fri Feb 10 2012 Peter Hutterer <peter.hutterer@redhat.com> - 0.0.21-15
337bb7
- ABI rebuild
337bb7
337bb7
* Tue Jan 24 2012 Peter Hutterer <peter.hutterer@redhat.com> - 0.0.21-14
337bb7
- ABI rebuild
337bb7
337bb7
* Fri Jan 13 2012 Marc-André Lureau <mlureau@redhat.com> 0.0.21-13
337bb7
- Add 0011-support-_ASYNC-io-calls-and-interrupt-handling-busy-.patch
337bb7
  to use async calls
337bb7
337bb7
* Wed Jan 04 2012 Adam Jackson <ajax@redhat.com> 0.0.21-12
337bb7
- qxl-0.0.16-ftbfs.patch: Fix some FTBFS.
337bb7
337bb7
* Wed Nov 16 2011 Adam Jackson <ajax@redhat.com> 0.0.21-11
337bb7
- qxl-0.0.16-vgahw.patch: API compat for xserver 1.12 (#753928)
337bb7
337bb7
* Mon Nov 14 2011 Adam Jackson <ajax@redhat.com> - 0.0.21-10
337bb7
- ABI rebuild
337bb7
337bb7
* Wed Nov 09 2011 Adam Jackson <ajax@redhat.com> - 0.0.21-9
337bb7
- ABI rebuild
337bb7
337bb7
* Fri Oct 28 2011 Soren Sandmann <ssp@redhat.com> - 0.0.21-8
337bb7
- Bump release
337bb7
337bb7
* Fri Oct 28 2011 Soren Sandmann <ssp@redhat.com> - 0.0.21-7
337bb7
- Add patch to translate access regions according to drawable offset
337bb7
  Bug 731245.
337bb7
337bb7
* Thu Oct 27 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.21-7
337bb7
- Rebuilt for glibc bug#747377
337bb7
337bb7
* Wed Oct 26 2011 Soren Sandmann <ssp@redhat.com> - 0.0.21-6
337bb7
- Add patch to confine access regions to the bounds of the drawable.
337bb7
  Bug 731245.
337bb7
337bb7
* Mon Sep 12 2011 Hans de Goede <hdegoede@redhat.com> - 0.0.21-5
337bb7
- Rebase to latest upstream release
337bb7
- Enable building of the Xspice X-server and put it in its own
337bb7
  xorg-x11-server-Xspice package
337bb7
337bb7
* Thu Aug 18 2011 Adam Jackson <ajax@redhat.com> - 0.0.21-4
337bb7
- Rebuild for xserver 1.11 ABI
337bb7
337bb7
* Wed Apr 20 2011 Hans de Goede <hdegoede@redhat.com> 0.0.21-3
337bb7
- Add various bugfixes from upstream git
337bb7
- Fixes VT-switching (rhbz#696711)
337bb7
- Add support for old qxl device (from rhel6 branch) (rhbz#642153)
337bb7
337bb7
* Mon Mar 07 2011 Dave Airlie <airlied@redhat.com> 0.0.21-2
337bb7
- Bump to for abi rebuild
337bb7
337bb7
* Sat Feb 12 2011 Soren Sandmann <ssp@redhat.com> 0.0.21-1
337bb7
- New version number to make sure upgrading works
337bb7
337bb7
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.13-2
337bb7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
337bb7
337bb7
* Wed Jan 26 2011 Soren Sandmann <ssp@redhat.com> 0.0.13-1
337bb7
- Update to 0.0.13 with surfaces
337bb7
337bb7
* Mon Dec 06 2010 Adam Jackson <ajax@redhat.com> 0.0.20.f14b-10
337bb7
- Rebuild for new server ABI.
337bb7
337bb7
* Wed Oct 27 2010 Adam Jackson <ajax@redhat.com> 0.0.20.f14b-8
337bb7
- Add ABI requires magic (#542742)
337bb7
337bb7
* Sun Oct 17 2010 Hans de Goede <hdegoede@redhat.com> 0.0.20.f14b-7
337bb7
- Fix notification bubbles under gnome not showing (backport from the
337bb7
  surface-fixes branch)
337bb7
337bb7
* Sun Oct 17 2010 Hans de Goede <hdegoede@redhat.com> 0.0.20.f14b-6
337bb7
- Fix a pointer casting bug which causes the qxl driver to trigger an
337bb7
  assertion in the qxl device terminating the entire virtual machine
337bb7
337bb7
* Mon Oct 11 2010 Hans de Goede <hdegoede@redhat.com> 0.0.20.f14b-5
337bb7
- Don't access the qxl device when our vt is not focussed, this fixes
337bb7
  Xorg crashing when switching to a text vc
337bb7
337bb7
* Sun Oct 10 2010 Hans de Goede <hdegoede@redhat.com> 0.0.20.f14b-4
337bb7
- Fix the driver not working on qxl devices with a framebuffer of 8MB
337bb7
337bb7
* Sat Oct  9 2010 Hans de Goede <hdegoede@redhat.com> 0.0.20.f14b-3
337bb7
- Add support for using resolutions > 1024x768 without needing an xorg.conf
337bb7
- Restore textmode font when switching back to a textmode virtual console
337bb7
337bb7
* Fri Oct 08 2010 Jesse Keating <jkeating@redhat.com> - 0.0.20.f14b-2.1
337bb7
- Rebuild for gcc bug 634757
337bb7
337bb7
* Tue Sep 14 2010 Soren Sandmann <ssp@redhat.com> 0.0.20.f14b-2
337bb7
- Patch to fix it up for the new privates ABI (I had apparently been
337bb7
  testing with a too old X server).
337bb7
337bb7
* Tue Sep 14 2010 Soren Sandmann <ssp@redhat.com> 0.0.20.f14b-1
337bb7
- Add support for new device
337bb7
337bb7
* Sat Mar 13 2010 Dave Airlie <airlied@redhat.com> 0.0.12-2
337bb7
- fix bug in qxl with asserts
337bb7
337bb7
* Sat Mar 13 2010 Dave Airlie <airlied@redhat.com> 0.0.12-1
337bb7
- rebase to 0.0.12 release - fix some 16-bit bugs
337bb7
337bb7
* Mon Jan 11 2010 Dave Airlie <airlied@redhat.com> 0.0.9-0.1
337bb7
- Initial public release 0.0.9