54e7d3
Name:           seabios
bde9c9
Version:        1.16.0
bde9c9
Release:        3%{?dist}
54e7d3
Summary:        Open-source legacy BIOS implementation
54e7d3
54e7d3
Group:          Applications/Emulators
54e7d3
License:        LGPLv3
54e7d3
URL:            https://www.coreboot.org/SeaBIOS
54e7d3
bde9c9
Source0:        https://code.coreboot.org/p/seabios/downloads/get/seabios-1.16.0.tar.gz
54e7d3
54e7d3
Source10:       config.vga.cirrus
54e7d3
Source11:       config.vga.qxl
54e7d3
Source12:       config.vga.stdvga
54e7d3
Source13:       config.vga.virtio
8fc4ec
Source14:       config.vga.ramfb
8fc4ec
Source15:       config.vga.bochs-display
54e7d3
54e7d3
Source20:       config.seabios-128k
54e7d3
Source21:       config.seabios-256k
54e7d3
54e7d3
Patch0002: 0002-allow-1TB-of-RAM.patch
54e7d3
Patch0003: 0003-smbios-set-bios-vendor-version-fields-to-Seabios-0.5.patch
54e7d3
Patch0004: 0004-Workaround-for-a-win8.1-32-S4-resume-bug.patch
bde9c9
# For bz#2073012 - Guest whose os is installed multiple disks but boot partition is installed on single disk can't boot into OS on RHEL 8 [rhel-8.7.0]
bde9c9
Patch5: seabios-shortcut-skip-unbootable-disks-optimitation.patch
bde9c9
# For bz#2083884 - qemu reboot problem with seabios 1.16.0
bde9c9
Patch6: seabios-pci-refactor-the-pci_config_-functions.patch
bde9c9
# For bz#2083884 - qemu reboot problem with seabios 1.16.0
bde9c9
Patch7: seabios-reset-force-standard-PCI-configuration-access.patch
bde9c9
# For bz#2101787 - [rhel.8.7] Loading a kernel/initrd is sometimes very slow
bde9c9
Patch8: seabios-virtio-blk-use-larger-default-request-size.patch
54e7d3
54e7d3
BuildRequires: python3 iasl
54e7d3
ExclusiveArch: x86_64 %{power64}
54e7d3
54e7d3
Requires: %{name}-bin = %{version}-%{release}
54e7d3
Requires: seavgabios-bin = %{version}-%{release}
54e7d3
54e7d3
# Seabios is noarch, but required on architectures which cannot build it.
54e7d3
# Disable debuginfo because it is of no use to us.
54e7d3
%global debug_package %{nil}
54e7d3
54e7d3
# Similarly, tell RPM to not complain about x86 roms being shipped noarch
54e7d3
%global _binaries_in_noarch_packages_terminate_build   0
54e7d3
54e7d3
# You can build a debugging version of the BIOS by setting this to a
54e7d3
# value > 1.  See src/config.h for possible values, but setting it to
54e7d3
# a number like 99 will enable all possible debugging.  Note that
54e7d3
# debugging goes to a special qemu port that you have to enable.  See
54e7d3
# the SeaBIOS top-level README file for the magic qemu invocation to
54e7d3
# enable this.
54e7d3
%global debug_level 1
54e7d3
54e7d3
54e7d3
%description
54e7d3
SeaBIOS is an open-source legacy BIOS implementation which can be used as
54e7d3
a coreboot payload. It implements the standard BIOS calling interfaces
54e7d3
that a typical x86 proprietary BIOS implements.
54e7d3
54e7d3
54e7d3
%package bin
54e7d3
Summary: Seabios for x86
54e7d3
Buildarch: noarch
54e7d3
54e7d3
54e7d3
%description bin
54e7d3
SeaBIOS is an open-source legacy BIOS implementation which can be used as
54e7d3
a coreboot payload. It implements the standard BIOS calling interfaces
54e7d3
that a typical x86 proprietary BIOS implements.
54e7d3
54e7d3
54e7d3
%package -n seavgabios-bin
54e7d3
Summary: Seavgabios for x86
54e7d3
Buildarch: noarch
54e7d3
Obsoletes: vgabios < 0.6c-10
54e7d3
54e7d3
%description -n seavgabios-bin
54e7d3
SeaVGABIOS is an open-source VGABIOS implementation.
54e7d3
54e7d3
54e7d3
%prep
54e7d3
%setup -q
54e7d3
%patch0002 -p1
54e7d3
%patch0003 -p1
54e7d3
%patch0004 -p1
bde9c9
%patch5 -p1
bde9c9
%patch6 -p1
9fd1b6
%patch7 -p1
bde9c9
%patch8 -p1
54e7d3
54e7d3
%build
54e7d3
%ifarch x86_64
54e7d3
export CFLAGS="$RPM_OPT_FLAGS"
54e7d3
mkdir binaries
54e7d3
54e7d3
build_bios() {
54e7d3
    make PYTHON=%{__python3} clean distclean
54e7d3
    cp $1 .config
54e7d3
    echo "CONFIG_DEBUG_LEVEL=%{debug_level}" >> .config
54e7d3
    make PYTHON=%{__python3} oldnoconfig V=1 EXTRAVERSION="-%release"
54e7d3
54e7d3
    make PYTHON=%{__python3} \
54e7d3
        V=1 \
54e7d3
        $4 \
54e7d3
        EXTRAVERSION="-%{release}" \
54e7d3
54e7d3
    cp out/$2 binaries/$3
54e7d3
}
54e7d3
54e7d3
# seabios
54e7d3
build_bios %{_sourcedir}/config.seabios-128k bios.bin bios.bin
54e7d3
build_bios %{_sourcedir}/config.seabios-256k bios.bin bios-256k.bin
54e7d3
54e7d3
54e7d3
# seavgabios
8fc4ec
%global vgaconfigs cirrus qxl stdvga virtio ramfb bochs-display
54e7d3
for config in %{vgaconfigs}; do
54e7d3
    build_bios %{_sourcedir}/config.vga.${config} \
54e7d3
               vgabios.bin vgabios-${config}.bin out/vgabios.bin
54e7d3
done
54e7d3
54e7d3
54e7d3
%install
54e7d3
mkdir -p $RPM_BUILD_ROOT%{_datadir}/seabios
54e7d3
mkdir -p $RPM_BUILD_ROOT%{_datadir}/seavgabios
54e7d3
install -m 0644 binaries/bios.bin $RPM_BUILD_ROOT%{_datadir}/seabios/bios.bin
54e7d3
install -m 0644 binaries/bios-256k.bin $RPM_BUILD_ROOT%{_datadir}/seabios/bios-256k.bin
54e7d3
install -m 0644 binaries/vgabios*.bin $RPM_BUILD_ROOT%{_datadir}/seavgabios
54e7d3
54e7d3
54e7d3
%files
54e7d3
%doc COPYING COPYING.LESSER README
54e7d3
54e7d3
54e7d3
%files bin
54e7d3
%dir %{_datadir}/seabios/
54e7d3
%{_datadir}/seabios/bios*.bin
54e7d3
54e7d3
%files -n seavgabios-bin
54e7d3
%dir %{_datadir}/seavgabios/
54e7d3
%{_datadir}/seavgabios/vgabios*.bin
54e7d3
54e7d3
# endif for %ifarch x86_64 {power64}
54e7d3
%endif
54e7d3
54e7d3
54e7d3
%changelog
bde9c9
* Wed Jul 27 2022 Miroslav Rezanina <mrezanin@redhat.com> - 1.16.0-3
bde9c9
- seabios-virtio-blk-use-larger-default-request-size.patch [bz#2101787]
bde9c9
- Resolves: bz#2101787
bde9c9
  ([rhel.8.7] Loading a kernel/initrd is sometimes very slow)
bde9c9
bde9c9
* Mon May 30 2022 Jon Maloy <jmaloy@redhat.com> - 1.16.0-2
bde9c9
- seabios-shortcut-skip-unbootable-disks-optimitation.patch [bz#2073012]
bde9c9
- seabios-pci-refactor-the-pci_config_-functions.patch [bz#2083884]
bde9c9
- seabios-reset-force-standard-PCI-configuration-access.patch [bz#2083884]
bde9c9
- Resolves: bz#2073012
bde9c9
  (Guest whose os is installed multiple disks but boot partition is installed on single disk can't boot into OS on RHEL 8 [rhel-8.7.0])
bde9c9
- Resolves: bz#2083884
bde9c9
  (qemu reboot problem with seabios 1.16.0)
bde9c9
bde9c9
* Tue Apr 26 2022 Paweł Poławski <ppolawsk@redhat.com> - 1.16.0-1
bde9c9
- Rebase to upstream 1.16 tag [bz#2066828]
bde9c9
- Resolves: bz#2066828
bde9c9
  (rebase seabios to 1.16 release)
9fd1b6
9fd1b6
* Thu Dec 16 2021 Jon Maloy <jmaloy@redhat.com> - 1.15.0-1.el8
9fd1b6
- Rebase to 1.15 (bz#2018392)
9fd1b6
- Resolves: bz#2018392
9fd1b6
9fd1b6
* Thu Dec 16 2021 Jon Maloy <jmaloy@redhat.com> - 1.15.0-1.el8
9fd1b6
- pci-reserve-resources-for-pcie-pci-bridge-to-fix-reg.patch [bz#2001921]
9fd1b6
- pci: let firmware reserve IO for pcie-pci-bridge.patch [bz#2001921]
9fd1b6
- Resolves: bz#2001921
9fd1b6
9fd1b6
* Tue Aug 11 2020 Miroslav Rezanina <mrezanin@redhat.com> - 1.14.0-1.el8
9fd1b6
- Rebase to 1.14 (bz#1809772)
9fd1b6
- Resolves: bz#1809772
9fd1b6
  (rebase seabios for RHEL AV-8.3.0)
9fd1b6
9fd1b6
* Tue Jan 21 2020 Miroslav Rezanina <mrezanin@redhat.com> - 1.13.0-1.el8
9fd1b6
- Rebase to 1.13 (bz#1793377)
9fd1b6
- Resolves: bz#1793377
9fd1b6
  (rebase seabios to 1.13)
9fd1b6
9fd1b6
* Tue Aug 20 2019 Danilo Cesar Lemes de Paula <ddepaula@redhat.com> - 1.12.0-5.el8
9fd1b6
- seabios-add-get_keystroke_full-helper.patch [bz#1693031]
9fd1b6
- seabios-bootmenu-add-support-for-more-than-9-entries.patch [bz#1693031]
9fd1b6
- Resolves: bz#1693031
9fd1b6
  (On systems with more than 10 available boot devices, keys are uninintuitive)
9fd1b6
9fd1b6
* Fri Aug 02 2019 Danilo Cesar Lemes de Paula <ddepaula@redhat.com> - 1.12.0-4.el8
9fd1b6
- seabios-tpm-Check-for-TPM-related-ACPI-tables-before-attempt.patch [bz#1705212]
9fd1b6
- seabios-usb-ehci-Clear-pipe-token-on-pipe-reallocate.patch [bz#1705212]
9fd1b6
- Resolves: bz#1705212
9fd1b6
  (Backport 1.12.1 patches to RHEL-AV 8.1.0)
9fd1b6
9fd1b6
* Tue Jul 09 2019 Miroslav Rezanina <mrezanin@redhat.com> - 1.12.0-3.el8
9fd1b6
- seabios-rh-add-configs-for-ramfb-and-bochs-display.patch [bz#1724098]
9fd1b6
- Resolves: bz#1724098
9fd1b6
  (enable device: bochs-display (seabios))
9fd1b6
9fd1b6
* Mon Jan 21 2019 Miroslav Rezanina <mrezanin@redhat.com> - 1.12.0-1.el8
9fd1b6
- Rebase to 1.12.0 [bz#1666134]
9fd1b6
- Resolves: bz#1666134
9fd1b6
  (Rebase seabios for RHEL-AV release in virt:8.0.0 stream)
b11bf3
54e7d3
* Fri Dec 07 2018 Danilo C. L. de Paula <ddepaula@redhat.com> - 1.11.1-3.el8
54e7d3
- Resolves: bz#1613465
54e7d3
  (Fix seabios package)
54e7d3
54e7d3
* Fri Aug 24 2018 Danilo C. L. de Paula <ddepaula@redhat.com> - 1.11.1-2.el8
54e7d3
- Resolves: bz#1607349
54e7d3
  (Serial Graphics Adapter show error seabios version)
54e7d3
54e7d3
* Thu Jul 12 2018 Danilo C. L. de Paula <ddepaula@redhat.com> - 1.11.1-1.el8
54e7d3
- Rebasing seabios 1.11.1
54e7d3
54e7d3
* Mon May 21 2018 Danilo C. L. de Paula <ddepaula@redhat.com> - 1.11.0-2.el8
54e7d3
- Syncronizing exploded tree with dist-git
54e7d3
54e7d3
* Mon Nov 20 2017 Danilo C. L. de Paula <ddepaula@redhat.com> - 1.11.0-1.el8
54e7d3
- Creating RHEL-8.0 initial branch based on 1.11.0
54e7d3
- Resolves: bz#1515300
54e7d3
- (Prepare seabios for RHEL-8.0)
54e7d3
54e7d3
* Fri Nov 17 2017 Paolo Bonzini <pbonzini@redhat.com> - 1.11.0-1
54e7d3
- Rebased to version 1.11.0
54e7d3
- Add three patches from RHEL
54e7d3
54e7d3
* Fri Nov 17 2017 Paolo Bonzini <pbonzini@redhat.com> - 1.10.2-3
54e7d3
- Disable cross-compilation on RHEL
54e7d3
54e7d3
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.2-2
54e7d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
54e7d3
54e7d3
* Wed Mar 15 2017 Cole Robinson <crobinso@redhat.com> - 1.10.2-1
54e7d3
- Rebased to version 1.10.2
54e7d3
54e7d3
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.1-2
54e7d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
54e7d3
54e7d3
* Sun Dec 04 2016 Cole Robinson <crobinso@redhat.com> - 1.10.1-1
54e7d3
- Rebased to version 1.10.1
54e7d3
54e7d3
* Wed Aug 03 2016 Cole Robinson <crobinso@redhat.com> - 1.9.3-1
54e7d3
- Rebased to version 1.9.3
54e7d3
54e7d3
* Thu Mar 24 2016 Paolo Bonzini <pbonzini@redhat.com> - 1.9.1-3
54e7d3
- Include MPT Fusion driver, in preparation for QEMU 2.6
54e7d3
- Include XHCI and SD in 128k ROM, sacrifice bootsplash instead
54e7d3
54e7d3
* Thu Mar 17 2016 Cole Robinson <crobinso@redhat.com> - 1.9.1-1
54e7d3
- Rebased to version 1.9.1
54e7d3
- Fix incorrect UUID format in boot output (bz #1284259)
54e7d3
54e7d3
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-2
54e7d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
54e7d3
54e7d3
* Tue Nov 17 2015 Cole Robinson <crobinso@redhat.com> 1.9.0-1
54e7d3
- Rebased to version 1.9.0
54e7d3
54e7d3
* Tue Jul 14 2015 Cole Robinson <crobinso@redhat.com> 1.8.2-1
54e7d3
- Rebased to version 1.8.2
54e7d3
54e7d3
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.1-2
54e7d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
54e7d3
54e7d3
* Wed Mar 18 2015 Cole Robinson <crobinso@redhat.com> - 1.8.1-1
54e7d3
- Rebased to version 1.8.1
54e7d3
54e7d3
* Sat Feb 21 2015 Cole Robinson <crobinso@redhat.com> - 1.8.0-1
54e7d3
- Rebased to version 1.8.0
54e7d3
- Initial support for USB3 hubs
54e7d3
- Initial support for SD cards (on QEMU only)
54e7d3
- Initial support for transitioning to 32bit mode using SMIs (on QEMU TCG
54e7d3
  only)
54e7d3
- SeaVGABIOS improvements
54e7d3
54e7d3
* Sat Nov 15 2014 Cole Robinson <crobinso@redhat.com> - 1.7.5.1-1
54e7d3
- Update to seabios-1.7.5.1
54e7d3
54e7d3
* Wed Jul 09 2014 Cole Robinson <crobinso@redhat.com> - 1.7.5-3
54e7d3
- Fix PCI-e hotplug (bz #1115598)
54e7d3
54e7d3
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.5-2
54e7d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
54e7d3
54e7d3
* Sat May 31 2014 Cole Robinson <crobinso@redhat.com> - 1.7.5-1
54e7d3
- Rebased to version 1.7.5
54e7d3
- Support for obtaining SMBIOS tables directly from QEMU.
54e7d3
- XHCI USB controller fixes for real hardware
54e7d3
- seavgabios: New driver for "coreboot native vga" support
54e7d3
- seavgabios: Improved detection of x86emu versions with incorrect
54e7d3
  emulation.
54e7d3
- Several bug fixes and code cleanups
54e7d3
54e7d3
* Wed Mar 26 2014 Matthias Clasen <mclasen@redhat.com> 1.7.4-5
54e7d3
- Fix booting FreeBSD VMs in virt-manager
54e7d3
54e7d3
* Mon Mar 17 2014 Cole Robinson <crobinso@redhat.com> 1.7.4-3
54e7d3
- Build 256k bios images for qemu 2.0
54e7d3
54e7d3
* Thu Mar 13 2014 Cole Robinson <crobinso@redhat.com> - 1.7.4-2
54e7d3
- Fix kvm migration with empty virtio-scsi controller (bz #1032208)
54e7d3
54e7d3
* Mon Jan 06 2014 Cole Robinson <crobinso@redhat.com> - 1.7.4-1
54e7d3
- Rebased to version 1.7.4
54e7d3
- Support for obtaining ACPI tables directly from QEMU.
54e7d3
- Initial support for XHCI USB controllers (initially for QEMU only).
54e7d3
- Support for booting from "pvscsi" devices on QEMU.
54e7d3
- Enhanced floppy driver - improved support for real hardware.
54e7d3
- coreboot cbmem console support.
54e7d3
54e7d3
* Tue Nov 19 2013 Cole Robinson <crobinso@redhat.com> - 1.7.3.2-1
54e7d3
- Update to 1.7.3.2 for qemu 1.7
54e7d3
54e7d3
* Thu Nov 14 2013 Paolo Bonzini <pbonzini@redhat.com> - 1.7.3.1-3
54e7d3
- Fix pasto in CONFIG_DEBUG_LEVEL.
54e7d3
54e7d3
* Thu Nov 14 2013 Paolo Bonzini <pbonzini@redhat.com> - 1.7.3.1-2
54e7d3
- Compile as all three of BIOS, CSM and CoreBoot payload.
54e7d3
54e7d3
* Wed Aug 14 2013 Cole Robinson <crobinso@redhat.com> - 1.7.3.1-1
54e7d3
- Rebased to version 1.7.3.1
54e7d3
- Fix USB EHCI detection that was broken in hlist conversion of
54e7d3
  PCIDevices.
54e7d3
- Fix bug in CBFS file walking with compressed files.
54e7d3
- acpi: sync FADT flags from PIIX4 to Q35
54e7d3
54e7d3
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.3-3
54e7d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
54e7d3
54e7d3
* Tue Jul 09 2013 Cole Robinson <crobinso@redhat.com> - 1.7.3-2
54e7d3
- Install aml files for use by qemu
54e7d3
54e7d3
* Mon Jul 08 2013 Cole Robinson <crobinso@redhat.com> - 1.7.3-1
54e7d3
- Rebased to version 1.7.3
54e7d3
- Initial support for using SeaBIOS as a UEFI CSM
54e7d3
- Support for detecting and using ACPI reboot ports.
54e7d3
- Non-standard floppy sizes now work again with recent QEMU versions.
54e7d3
- Several bug fixes and code cleanups
54e7d3
- Again fix vgabios obsoletes (bz #981147)
54e7d3
54e7d3
* Mon May 27 2013 Cole Robinson <crobinso@redhat.com> - 1.7.2.2-1
54e7d3
- Update to seabios stable 1.7.2.2
54e7d3
- Obsolete vgabios (bz #967315)
54e7d3
54e7d3
* Thu Jan 24 2013 Cole Robinson <crobinso@redhat.com> - 1.7.2-1
54e7d3
- Rebased to version 1.7.2
54e7d3
- Support for ICH9 host chipset ("q35") on emulators
54e7d3
- Support for booting from LSI MegaRAID SAS controllers
54e7d3
- Support for using the ACPI PM timer on emulators
54e7d3
- Improved Geode VGA BIOS support.
54e7d3
- Several bug fixes
54e7d3
54e7d3
* Thu Dec  6 2012 Peter Robinson <pbrobinson@fedoraproject.org> 1.7.1-4
54e7d3
- Root seabios package is noarch too because it only contains docs
54e7d3
54e7d3
* Fri Oct 19 2012 Cole Robinson <crobinso@redhat.com> - 1.7.1-3
54e7d3
- Add seavgabios subpackage
54e7d3
54e7d3
* Wed Oct 17 2012 Paolo Bonzini <pbonzini@redhat.com> - 1.7.1-2
54e7d3
- Build with cross compiler.  Resolves: #866664.
54e7d3
54e7d3
* Wed Sep 05 2012 Cole Robinson <crobinso@redhat.com> - 1.7.1-1
54e7d3
- Rebased to version 1.7.1
54e7d3
- Initial support for booting from USB attached scsi (USB UAS) drives
54e7d3
- USB EHCI 64bit controller support
54e7d3
- USB MSC multi-LUN device support
54e7d3
- Support for booting from LSI SCSI controllers on emulators
54e7d3
- Support for booting from AMD PCscsi controllers on emulators
54e7d3
54e7d3
* Mon Aug 13 2012 Richard W.M. Jones <rjones@redhat.com> - 1.7.0-4
54e7d3
- Modernise and tidy up the RPM.
54e7d3
- Allow debug versions of SeaBIOS to be built easily.
54e7d3
54e7d3
* Mon Aug 06 2012 Cole Robinson <crobinso@redhat.com> - 1.7.0-3
54e7d3
- Enable S3/S4 support for guests (it's an F18 feature after all)
54e7d3
54e7d3
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.0-2
54e7d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
54e7d3
54e7d3
* Mon May 28 2012 Cole Robinson <crobinso@redhat.com> - 1.7.0-1
54e7d3
- Rebased to version 1.7.0
54e7d3
- Support for virtio-scsi
54e7d3
- Improved USB drive support
54e7d3
- Several USB controller bug fixes and improvements
54e7d3
54e7d3
* Wed Mar 28 2012 Paolo Bonzini <pbonzini@redhat.com> - 1.6.3-2
54e7d3
- Fix bugs in booting from host (or redirected) USB pen drives
54e7d3
54e7d3
* Wed Feb 08 2012 Justin M. Forbes <jforbes@redhat.com> - 1.6.3-1
54e7d3
- Update to 1.6.3 upstream
54e7d3
- Add virtio-scsi
54e7d3
54e7d3
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.2-4
54e7d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
54e7d3
54e7d3
* Wed Oct 05 2011 Justin M. Forbes <jforbes@redhat.com> - 0.6.2-3
54e7d3
- Stop advertising S3 and S4 in DSDT (bz#741375)
54e7d3
- incdule iasl buildreq
54e7d3
54e7d3
* Wed Jul 13 2011 Justin M. Forbes <jforbes@redhat.com> - 0.6.2-2
54e7d3
- Fix QXL bug in 0.6.2
54e7d3
54e7d3
* Wed Jul 13 2011 Justin M. forbes <jforbes@redhat.com> - 0.6.2-1
54e7d3
- Update to 0.6.2 upstream for a number of bugfixes
54e7d3
54e7d3
* Mon Feb 14 2011 Justin M. forbes <jforbes@redhat.com> - 0.6.1-1
54e7d3
- Update to 0.6.1 upstream for a number of bugfixes
54e7d3
54e7d3
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-2
54e7d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
54e7d3
54e7d3
* Tue Aug 10 2010 Justin M. Forbes <jforbes@redhat.com> 0.6.0-1
54e7d3
- Update seabios to latest stable so we can drop patches.
54e7d3
54e7d3
* Tue Apr 20 2010 Justin M. Forbes <jforbes@redhat.com> 0.5.1-2
54e7d3
- Ugly hacks to make package noarch and available for arch that cannot build it.
54e7d3
- Disable useless debuginfo
54e7d3
54e7d3
* Wed Mar 03 2010 Justin M. Forbes <jforbes@redhat.com> 0.5.1-1
54e7d3
- Update to 0.5.1 stable release
54e7d3
- Pick up patches required for current qemu
54e7d3
54e7d3
* Thu Jan 07 2010 Justin M. Forbes <jforbes@redhat.com> 0.5.1-0.1.20100108git669c991
54e7d3
- Created initial package