0824f1
Name:           seabios
0824f1
Version:        1.11.0
0824f1
Release:        2%{?dist}
0824f1
Summary:        Open-source legacy BIOS implementation
0824f1
0824f1
Group:          Applications/Emulators
0824f1
License:        LGPLv3
0824f1
URL:            http://www.coreboot.org/SeaBIOS
0824f1
0824f1
0824f1
Source0: https://code.coreboot.org/p/seabios/downloads/get/seabios-1.11.0.tar.gz
0824f1
0824f1
Source10:       config.vga.cirrus
0824f1
Source11:       config.vga.isavga
0824f1
Source12:       config.vga.qxl
0824f1
Source13:       config.vga.stdvga
0824f1
Source14:       config.vga.vmware
0824f1
Source15:       config.base
0824f1
Source16:       config.base-256k
0824f1
Source17:       config.vga.virtio
0824f1
0824f1
0824f1
Patch0002: 0002-allow-1TB-of-RAM.patch
0824f1
Patch0003: 0003-smbios-set-bios-vendor-version-fields-to-Seabios-0.5.patch
0824f1
Patch0004: 0004-Workaround-for-a-win8.1-32-S4-resume-bug.patch
0824f1
Patch0005: 0005-redhat-reserve-more-memory-on-fseg.patch
0824f1
Patch0006: 0006-vgabios-Reorder-video-modes-to-work-around-a-Windows.patch
0824f1
# For bz#1523166 - [Q35] guest kernel panic when boot with 9 nics
0824f1
Patch7: seabios-pci-fix-io-hints-capability-for-RedHat-PCI-bridges.patch
0824f1
BuildRequires: python iasl
0824f1
ExclusiveArch: x86_64 %{power64}
0824f1
0824f1
Requires: %{name}-bin = %{version}-%{release}
0824f1
Requires: seavgabios-bin = %{version}-%{release}
0824f1
0824f1
# Seabios is noarch, but required on architectures which cannot build it.
0824f1
# Disable debuginfo because it is of no use to us.
0824f1
%global debug_package %{nil}
0824f1
0824f1
# You can build a debugging version of the BIOS by setting this to a
0824f1
# value > 1.  See src/config.h for possible values, but setting it to
0824f1
# a number like 99 will enable all possible debugging.  Note that
0824f1
# debugging goes to a special qemu port that you have to enable.  See
0824f1
# the SeaBIOS top-level README file for the magic qemu invocation to
0824f1
# enable this.
0824f1
%global debug_level 1
0824f1
0824f1
0824f1
%description
0824f1
SeaBIOS is an open-source legacy BIOS implementation which can be used as
0824f1
a coreboot payload. It implements the standard BIOS calling interfaces
0824f1
that a typical x86 proprietary BIOS implements.
0824f1
0824f1
0824f1
%package bin
0824f1
Summary: Seabios for x86
0824f1
BuildArch: noarch
0824f1
0824f1
%description bin
0824f1
SeaBIOS is an open-source legacy BIOS implementation which can be used as
0824f1
a coreboot payload. It implements the standard BIOS calling interfaces
0824f1
that a typical x86 proprietary BIOS implements.
0824f1
0824f1
0824f1
%package -n seavgabios-bin
0824f1
Summary: Seavgabios for x86
0824f1
BuildArch: noarch
0824f1
0824f1
Obsoletes: vgabios < 0.6c-10
0824f1
Provides: vgabios = 0.6c-10
0824f1
0824f1
0824f1
%description -n seavgabios-bin
0824f1
SeaVGABIOS is an open-source VGABIOS implementation.
0824f1
0824f1
0824f1
%prep
0824f1
%setup -q
0824f1
0824f1
%patch0002 -p1
0824f1
%patch0003 -p1
0824f1
%patch0004 -p1
0824f1
%patch0005 -p1
0824f1
%patch0006 -p1
0824f1
%patch7 -p1
0824f1
0824f1
%build
0824f1
%ifarch x86_64
0824f1
export CFLAGS="$RPM_OPT_FLAGS"
0824f1
mkdir binaries
0824f1
0824f1
build_bios() {
0824f1
    make clean distclean
0824f1
    cp $1 .config
0824f1
    echo "CONFIG_DEBUG_LEVEL=%{debug_level}" >> .config
0824f1
    make oldnoconfig V=1 EXTRAVERSION="-%release"
0824f1
0824f1
    make V=1 $4 EXTRAVERSION="-%release"
0824f1
0824f1
    cp out/$2 binaries/$3
0824f1
}
0824f1
0824f1
0824f1
# seabios 128k
0824f1
build_bios %{SOURCE15} bios.bin bios.bin
0824f1
0824f1
# seabios 256k
0824f1
build_bios %{SOURCE16} bios.bin bios-256k.bin
0824f1
0824f1
# seavgabios
0824f1
for config in %{SOURCE10} %{SOURCE11} %{SOURCE12} %{SOURCE13} %{SOURCE14} %{SOURCE17}; do
0824f1
	name=${config#*config.vga.}
0824f1
    build_bios ${config} vgabios.bin vgabios-${name}.bin out/vgabios.bin
0824f1
done
0824f1
0824f1
0824f1
%install
0824f1
mkdir -p $RPM_BUILD_ROOT%{_datadir}/seabios
0824f1
mkdir -p $RPM_BUILD_ROOT%{_datadir}/seavgabios
0824f1
install -m 0644 binaries/bios*.bin $RPM_BUILD_ROOT%{_datadir}/seabios
0824f1
install -m 0644 binaries/vgabios*.bin $RPM_BUILD_ROOT%{_datadir}/seavgabios
0824f1
0824f1
0824f1
%files
0824f1
%doc COPYING COPYING.LESSER README
0824f1
0824f1
0824f1
%files bin
0824f1
%dir %{_datadir}/seabios/
0824f1
%{_datadir}/seabios/bios*.bin
0824f1
0824f1
%files -n seavgabios-bin
0824f1
%dir %{_datadir}/seavgabios/
0824f1
%{_datadir}/seavgabios/vgabios*.bin
0824f1
%endif
0824f1
0824f1
%changelog
0824f1
* Tue Jan 30 2018 Miroslav Rezanina <mrezanin@redhat.com> - 1.11.0-2.el7
0824f1
- seabios-pci-fix-io-hints-capability-for-RedHat-PCI-bridges.patch [bz#1523166]
0824f1
- Resolves: bz#1523166
0824f1
  ([Q35] guest kernel panic when boot with 9 nics)
0824f1
0824f1
* Wed Nov 15 2017 Miroslav Rezanina <mrezanin@redhat.com> - 1.11.0-1.el7
0824f1
- Rebase to 1.11.0 [bz#1470751]
0824f1
- Resolves: bz#1470751
0824f1
  (Rebase seabios for RHEL-7.5)
0824f1
0824f1
* Fri Oct 20 2017 Miroslav Rezanina <mrezanin@redhat.com> - 1.10.2-5.el7
0824f1
- seabios-boot-Rename-drive_g-to-drive.patch [bz#1452603]
0824f1
- seabios-disk-Don-t-require-the-struct-drive_s-to-be-in-the-f.patch [bz#1452603]
0824f1
- seabios-block-Rename-disk_op_s-drive_gf-to-drive_fl.patch [bz#1452603]
0824f1
- seabios-virtio-Allocate-drive_s-storage-in-low-memory.patch [bz#1452603]
0824f1
- Resolves: bz#1452603
0824f1
  (can't bootup from image when attached multi-virtio-scsi disks with multi-luns)
0824f1
0824f1
* Thu Sep 28 2017 Wainer dos Santos Moschetta <wainersm@redhat.com> - 1.10.2-4.el7
0824f1
- seabios-virtio-IOMMU-support.patch [bz#1463163, bz#1467811]
0824f1
- Resolves: bz#1463163
0824f1
  (Guest OS will down when disk enable the IOMMU for Virtio)
0824f1
- Resolves: bz#1467811
0824f1
  (Guest OS will down when disk enable the IOMMU for virtio-scsi)
0824f1
0824f1
* Fri May 12 2017 Miroslav Rezanina <mrezanin@redhat.com> - 1.10.2-3.el7
0824f1
- seabios-blockcmd-accept-only-disks-and-CD-ROMs.patch [bz#1020622]
0824f1
- seabios-blockcmd-generic-SCSI-luns-enumeration.patch [bz#1020622]
0824f1
- seabios-virtio-scsi-enumerate-luns-with-REPORT-LUNS.patch [bz#1020622]
0824f1
- seabios-usb-uas-enumerate-luns-with-REPORT-LUNS.patch [bz#1020622]
0824f1
- Resolves: bz#1020622
0824f1
  (seabios fail to recognize virtio-scsi device if specify LUN not 0)
0824f1
0824f1
* Thu Mar 30 2017 Miroslav Rezanina <mrezanin@redhat.com> - 1.10.2-2.el7
0824f1
- seabios-resume-Don-t-attempt-to-use-generic-reboot-mechanism.patch [bz#1428347]
0824f1
- Resolves: bz#1428347
0824f1
  (reboot hangs on rhel6 machine types (~1/20 times))
0824f1
0824f1
* Fri Mar 10 2017 Miroslav Rezanina <mrezanin@redhta.com> - 1.10.2-1.el7
0824f1
- Rebase to 1.10.2 [bz#1392821]
0824f1
- Resolves:  bz#1392821
0824f1
 (Rebase seabios to 1.10.1)
0824f1
0824f1
* Fri Feb 03 2017 Miroslav Rezanina <mrezanin@redhat.com> - 1.10.1-2.el7
0824f1
- seabios-smm-disable-by-default.patch [bz#1378006]
0824f1
- seabios-ahci-Set-upper-32-bit-registers-to-zero.patch [bz#1418320]
0824f1
- Resolves: bz#1378006
0824f1
  (guest paused on target host sometimes when do migration during guest boot)
0824f1
- Resolves: bz#1418320
0824f1
  (Seabios does not fully reset AHCI adapters)
0824f1
0824f1
* Tue Jan 10 2017 Miroslav Rezanina <mrezanin@redhat.com> - 1.10.1-1.el7
0824f1
- Rebase to seabios 1.10.1 [bz#1392821]
0824f1
- Resolves: bz#1392821
0824f1
  (Rebase seabios to 1.10.1)
0824f1
0824f1
* Tue Nov 29 2016 Miroslav Rezanina <mrezanin@redhat.com> - 1.9.1-5.el7_3.1
0824f1
- seabios-vgabios-Reorder-video-modes-to-work-around-a-Windows.patch [bz#1392028]
0824f1
- Resolves: bz#1392028
0824f1
  ([virtio-win][svvp][ws2016] cannot generate dump file when using nmi on ws2016 and win10-32/64)
0824f1
0824f1
* Thu Sep 15 2016 Miroslav Rezanina <mrezanin@redhat.com> - 1.9.1-5.el7
0824f1
- seabios-pci-don-t-map-virtio-1.0-storage-devices-above-4G.patch [bz#1373154]
0824f1
- Resolves: bz#1373154
0824f1
  (Guest fails boot up with ivshmem-plain and virtio-pci device)
0824f1
0824f1
* Wed May 11 2016 Miroslav Rezanina <mrezanin@redhat.com> - 1.9.1-4.el7
0824f1
- seabios-Build-vgabios-virtio.bin.patch [bz#1327001]
0824f1
- Resolves: bz#1327001
0824f1
  (vgabios-virtio.bin should be included  in seavgabios-bin package)
0824f1
0824f1
* Tue Apr 26 2016 Miroslav Rezanina <mrezanin@redhat.com> - 1.9.1-3.el7
0824f1
- seabios-redhat-reserve-more-memory-on-fseg.patch [bz#1327060]
0824f1
- seabios-redhat-turn-off-some-config-options.patch [bz#1327060]
0824f1
- Resolves: bz#1327060
0824f1
  ([Seabios]Limited boot number supported for SCSI/SATA)
0824f1
0824f1
* Wed Apr 06 2016 Miroslav Rezanina <mrezanin@redhat.com> - 1.9.1-2.el7
0824f1
- seabios-fw-pci-add-Q35-S3-support.patch [bz#1185721]
0824f1
- Resolves: bz#1185721
0824f1
  (win7 guest (boot with q35) show dark screen after do S3)
0824f1
0824f1
* Tue Feb 16 2016 Miroslav Rezanina <mrezanin@redhat.com> - 1.9.1-1.el7
0824f1
- Rebase to 1.9.1 [bz#1257052]
0824f1
- Resolves: bz#1257052
0824f1
  (rebase seabios to 1.9)
0824f1
0824f1
* Wed Jul 15 2015 Yash Mankad <ymankad@redhat.com> - 1.7.5-11.el7
0824f1
- seabios-bootorder-Update-extra-pci-root-buses-bootorder-form.patch [bz#1242968]
0824f1
- Resolves: bz#1242968
0824f1
  (pci: support booting of devices behind PXB)
0824f1
0824f1
* Tue Jul 07 2015 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.5-10.el7
0824f1
- seabios-fw-pci-scan-all-buses-if-extraroots-romfile-is-prese.patch [bz#1235381]
0824f1
- seabios-fw-pci-map-memory-and-IO-regions-for-multiple-pci-ro.patch [bz#1235381]
0824f1
- Resolves: bz#1235381
0824f1
  (RFE: configure guest NUMA node locality for guest PCI devices)
0824f1
0824f1
* Thu Apr 23 2015 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.5-9.el7_1
0824f1
- seabios-boot.c-delay-exiting-boot-if-menu-key-is-ESC.patch [bz#841638]
0824f1
- seabios-boot-switch-default-menu-key-to-ESC.patch [bz#841638]
0824f1
- Resolves: bz#841638
0824f1
  (Provide a platform agnostic approach to invoking the BIOS, boot menu, or other BIOS functions)
0824f1
0824f1
* Tue Jan 20 2015 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.5-8.el7
0824f1
- seabios-turn-off-stack-switching-for-vgabios.patch [bz#1182634]
0824f1
- Resolves: bz#1182634
0824f1
  (Remove CONFIG_VGA_ALLOCATE_EXTRA_STACK)
0824f1
0824f1
* Thu Nov 20 2014 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.5-6.el7
0824f1
- seabios-Extend-ExclusiveArch-to-power64-architectures.patch [bz#1163924]
0824f1
- Resolves: bz#1163924
0824f1
  (seabios is needed for ppc64 and ppc64le but marked ExclusiveArch aarch64)
0824f1
0824f1
* Tue Aug 26 2014 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.5-5.el7
0824f1
- seabios-Workaround-for-a-win8.1-32-S4-resume-bug.patch [bz#1050775]
0824f1
- seabios-boot-Fix-boot-order-for-SCSI-target-lun-9.patch [bz#1096560]
0824f1
- Resolves: bz#1096560
0824f1
  (fail to assign correct order for the boot device in seabios as we specified the bootindex in qemu-kvm cli(under the same virtio-scsi-pci))
0824f1
0824f1
* Wed Aug 13 2014  Miroslav Rezanina <mrezanin@redhat.com> - 1.7.5-4.el7
0824f1
- seabios-smbios-set-bios-vendor-version-fields-to-Seabios-0.5.patch [bz#1123299]
0824f1
- Resolves: bz#1123299
0824f1
  (smbios table 0 vendor string should be Seabios (for rhel6 compatibility) [7.1+7.0.z])
0824f1
0824f1
* Sat Aug 02 2014 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.5-2.el7
0824f1
- seabios-Build-seabios-as-noarch.patch [bz#1118380]
0824f1
- Resolves: bz#1118380
0824f1
  (Seabios build required for ppc64)
0824f1
0824f1
* Wed May 28 2014 Gerd Hoffmann <kraxel@redhat.com> - 1.7.5-1.el7
0824f1
- rebase to seabios 1.7.5
0824f1
0824f1
* Wed Feb 05 2014 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.2.2-11.el7
0824f1
- seabios-init_virtio_scsi-reset-the-HBA-before-freeing-its-vi.patch [bz#1013418]
0824f1
- seabios-smbios-catch-zero-length-strings.patch [bz#1052837]
0824f1
- seabios-resume-restore-piix-pm-config-registers-after-resume.patch [bz#1049860]
0824f1
- seabios-pci-align-64bit-pci-regions-to-1G.patch [bz#1055832]
0824f1
- seabios-pci-log-pci-windows.patch [bz#1055832]
0824f1
- seabios-pci-improve-io-address-space-allocation.patch [bz#1055832]
0824f1
- Resolves: bz#1013418
0824f1
  (qemu-kvm with a virtio-scsi controler without devices attached quits after stop/cont in HMP/QMP)
0824f1
- Resolves: bz#1049860
0824f1
  (Guest agent command hang there after restore the guest from the save file)
0824f1
- Resolves: bz#1052837
0824f1
  (The wrong DMI structures could not be decoded while booting vm with -smbios params)
0824f1
- Resolves: bz#1055832
0824f1
  (can not see seabios GUI when boot with 155 virtio-blk-pci disks via pci-bridge)
0824f1
0824f1
* Mon Jan 13 2014 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.2.2-10.el7
0824f1
- Fixed seavgabios-bin obsoletes/provides [bz#1035452]
0824f1
- Resolves: bz#1035452
0824f1
  ( seavgabios-bin has bad obsoletes/provides for "vgabios")
0824f1
0824f1
* Mon Jan 13 2014 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.2.2-8.el7
0824f1
- seabios-vgabios-Fix-cirrus-memory-clear-on-mode-switch.patch [bz#979898]
0824f1
- Resolves: bz#979898
0824f1
  ([qemu-kvm]The win2k3-32 guest display is abnormal when using -vga cirrus)
0824f1
0824f1
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.7.2.2-7
0824f1
- Mass rebuild 2013-12-27
0824f1
0824f1
* Tue Dec 17 2013 Michal Novotny <minovotn@redhat.com> - seabios-1.7.2.2-6.el7
0824f1
- seabios-biostables-support-looking-up-RSDP.patch [bz#1034877]
0824f1
- seabios-romfile_loader-utility-to-patch-in-memory-ROM-files.patch [bz#1034877]
0824f1
- seabios-acpi-load-and-link-tables-through-romfile-loader.patch [bz#1034877]
0824f1
- Resolves: bz#1034877
0824f1
  (export acpi tables to guests (seabios))
0824f1
0824f1
* Tue Dec 10 2013 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.2.2-5.el7
0824f1
- seabios-build-explicitly-set-ROM-size.patch [bz#1038604]
0824f1
- Resolves: bz#1038604
0824f1
  (make seabios 256k for rhel7 machine types)
0824f1
0824f1
* Tue Nov 05 2013 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.2.2-4.el7
0824f1
- seabios-Introduce-and-convert-pmm-code-to-use-standard-list-.patch [bz#947051]
0824f1
- seabios-Fix-error-in-hlist_for_each_entry_safe-macro.patch [bz#947051]
0824f1
- seabios-Another-fix-for-hlist_for_each_entry_safe.patch [bz#947051]
0824f1
- seabios-uas-add-temporary-superspeed-stopgap.patch [bz#947051]
0824f1
- seabios-usb-add-usb_update_pipe.patch [bz#947051]
0824f1
- seabios-usb-add-xhci-support.patch [bz#947051]
0824f1
- seabios-xhci-adaptions-for-old-rhel7-seabios-codebase.patch [bz#947051]
0824f1
- seabios-allow-1TB-of-RAM.patch [bz#1016974]
0824f1
- Resolves: bz#1016974
0824f1
  ([HP 7.0 FEAT]: Increase KVM guest supported memory to 4TiB)
0824f1
- Resolves: bz#947051
0824f1
  ([RFE] implement xhci support in seabios)
0824f1
0824f1
* Tue Sep 24 2013 Miroslav Rezanina <mrezanin@redhat.com> - seabios-1.7.2.2-3.el7
0824f1
- seabios-floppy-Introduce-struct-floppy_pio_s-for-floppy-PIO-.patch [bz#920140]
0824f1
- seabios-floppy-Cleanup-floppy-irq-wait-handling.patch [bz#920140]
0824f1
- seabios-floppy-Implement-media-format-sensing.patch [bz#920140]
0824f1
- seabios-Place-rpm-version-info-into-version-banner.patch [bz#894979]
0824f1
- seabios-ahci-add-missing-check-for-allocation-failure.patch [bz#1005747]
0824f1
- Resolves: bz#1005747
0824f1
  (fail to boot rhel7 guest with >126(21 ahci controller) ahci disks)
0824f1
- Resolves: bz#894979
0824f1
  (place rpm version info into version banner)
0824f1
- Resolves: bz#920140
0824f1
  (qemu-kvm emulation of 2.88M floppy fails)
0824f1
0824f1
* Wed Jun 26 2013 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.2.2-2
0824f1
- Disable options not used / not supported by RHEL-7 (rhbz 927582)
0824f1
- Add pvpanic device driver (rhbz 967777)
0824f1
- Obsolete vgabios (rhbz 976340)
0824f1
0824f1
* Tue Jun 04 2013 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.2.2-1
0824f1
- Rebase to 1.7.2.2
0824f1
0824f1
* Tue Dec 18 2012 Michal Novotny <minovotn@redhat.com> - 1.7.1-5
0824f1
- Remove the cross compilation code as we compile it on x86_64 always
0824f1
0824f1
* Thu Dec  6 2012 Peter Robinson <pbrobinson@fedoraproject.org> 1.7.1-4
0824f1
- Root seabios package is noarch too because it only contains docs
0824f1
0824f1
* Fri Oct 19 2012 Cole Robinson <crobinso@redhat.com> - 1.7.1-3
0824f1
- Add seavgabios subpackage
0824f1
0824f1
* Wed Oct 17 2012 Paolo Bonzini <pbonzini@redhat.com> - 1.7.1-2
0824f1
- Build with cross compiler.  Resolves: #866664.
0824f1
0824f1
* Wed Sep 05 2012 Cole Robinson <crobinso@redhat.com> - 1.7.1-1
0824f1
- Rebased to version 1.7.1
0824f1
- Initial support for booting from USB attached scsi (USB UAS) drives
0824f1
- USB EHCI 64bit controller support
0824f1
- USB MSC multi-LUN device support
0824f1
- Support for booting from LSI SCSI controllers on emulators
0824f1
- Support for booting from AMD PCscsi controllers on emulators
0824f1
0824f1
* Mon Aug 13 2012 Richard W.M. Jones <rjones@redhat.com> - 1.7.0-4
0824f1
- Modernise and tidy up the RPM.
0824f1
- Allow debug versions of SeaBIOS to be built easily.
0824f1
0824f1
* Mon Aug 06 2012 Cole Robinson <crobinso@redhat.com> - 1.7.0-3
0824f1
- Enable S3/S4 support for guests (it's an F18 feature after all)
0824f1
0824f1
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.0-2
0824f1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
0824f1
0824f1
* Mon May 28 2012 Cole Robinson <crobinso@redhat.com> - 1.7.0-1
0824f1
- Rebased to version 1.7.0
0824f1
- Support for virtio-scsi
0824f1
- Improved USB drive support
0824f1
- Several USB controller bug fixes and improvements
0824f1
0824f1
* Wed Mar 28 2012 Paolo Bonzini <pbonzini@redhat.com> - 1.6.3-2
0824f1
- Fix bugs in booting from host (or redirected) USB pen drives
0824f1
0824f1
* Wed Feb 08 2012 Justin M. Forbes <jforbes@redhat.com> - 1.6.3-1
0824f1
- Update to 1.6.3 upstream
0824f1
- Add virtio-scsi
0824f1
0824f1
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.2-4
0824f1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
0824f1
0824f1
* Wed Oct 05 2011 Justin M. Forbes <jforbes@redhat.com> - 0.6.2-3
0824f1
- Stop advertising S3 and S4 in DSDT (bz#741375)
0824f1
- incdule iasl buildreq
0824f1
0824f1
* Wed Jul 13 2011 Justin M. Forbes <jforbes@redhat.com> - 0.6.2-2
0824f1
- Fix QXL bug in 0.6.2
0824f1
0824f1
* Wed Jul 13 2011 Justin M. forbes <jforbes@redhat.com> - 0.6.2-1
0824f1
- Update to 0.6.2 upstream for a number of bugfixes
0824f1
0824f1
* Mon Feb 14 2011 Justin M. forbes <jforbes@redhat.com> - 0.6.1-1
0824f1
- Update to 0.6.1 upstream for a number of bugfixes
0824f1
0824f1
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-2
0824f1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
0824f1
0824f1
* Tue Aug 10 2010 Justin M. Forbes <jforbes@redhat.com> 0.6.0-1
0824f1
- Update seabios to latest stable so we can drop patches.
0824f1
0824f1
* Tue Apr 20 2010 Justin M. Forbes <jforbes@redhat.com> 0.5.1-2
0824f1
- Ugly hacks to make package noarch and available for arch that cannot build it.
0824f1
- Disable useless debuginfo
0824f1
0824f1
* Wed Mar 03 2010 Justin M. Forbes <jforbes@redhat.com> 0.5.1-1
0824f1
- Update to 0.5.1 stable release
0824f1
- Pick up patches required for current qemu
0824f1
0824f1
* Thu Jan 07 2010 Justin M. Forbes <jforbes@redhat.com> 0.5.1-0.1.20100108git669c991
0824f1
- Created initial package