dcde000
%if 0%{?fedora:1}
dcde000
%define cross 1
dcde000
%endif
dcde000
e9236f4
Name:           seabios
0738150
Version:        1.14.0
d39c5a3
Release:        4%{?dist}
e9236f4
Summary:        Open-source legacy BIOS implementation
e9236f4
e9236f4
License:        LGPLv3
e9236f4
URL:            http://www.coreboot.org/SeaBIOS
eb168d7
a9b600b
Source0:        http://code.coreboot.org/p/seabios/downloads/get/%{name}-%{version}.tar.gz
6162654
6162654
Patch0001:      0001-Workaround-for-a-win8.1-32-S4-resume-bug.patch
6162654
Patch0002:      0002-reserve-more-memory-on-fseg.patch
6162654
Patch0003:      0003-vgabios-Reorder-video-modes-to-work-around-a-Windows.patch
b9d2823
Patch0004:      0004-nvme-Record-maximum-allowed-request-size.patch
b9d2823
Patch0005:      0005-nvme-improve-namespace-allocation.patch
41145fb
35e0080
Source10:       config.vga-cirrus
35e0080
Source11:       config.vga-isavga
35e0080
Source12:       config.vga-qxl
35e0080
Source13:       config.vga-stdvga
35e0080
Source14:       config.vga-vmware
3bc3117
Source15:       config.csm
3bc3117
Source16:       config.coreboot
3bc3117
Source17:       config.seabios-128k
3bc3117
Source18:       config.seabios-256k
35e0080
Source19:       config.vga-virtio
35e0080
Source20:       config.vga-ramfb
35e0080
Source21:       config.vga-bochs-display
dd5505c
Source22:       config.vga-ati
3c191c8
Source23:       config.seabios-microvm
b9ad6c5
6669047
BuildRequires: make
856cacb
BuildRequires: gcc
8b33368
BuildRequires: python3 iasl
dcde000
%if 0%{?cross:1}
1e77d40
BuildRequires: binutils-x86_64-linux-gnu gcc-x86_64-linux-gnu
dcde000
Buildarch:     noarch
dcde000
%else
dcde000
ExclusiveArch: x86_64
dcde000
%endif
e9236f4
d6248aa
Requires: %{name}-bin = %{version}-%{release}
b9ad6c5
Requires: seavgabios-bin = %{version}-%{release}
d6248aa
d6248aa
# Seabios is noarch, but required on architectures which cannot build it.
d6248aa
# Disable debuginfo because it is of no use to us.
d6248aa
%global debug_package %{nil}
d6248aa
a1a30f0
# Similarly, tell RPM to not complain about x86 roms being shipped noarch
a1a30f0
%global _binaries_in_noarch_packages_terminate_build   0
a1a30f0
9d9aaf1
# You can build a debugging version of the BIOS by setting this to a
9d9aaf1
# value > 1.  See src/config.h for possible values, but setting it to
9d9aaf1
# a number like 99 will enable all possible debugging.  Note that
4e7a4fd
# debugging goes to a special qemu port that you have to enable.  See
9d9aaf1
# the SeaBIOS top-level README file for the magic qemu invocation to
9d9aaf1
# enable this.
9d9aaf1
%global debug_level 1
9d9aaf1
90f093c
e9236f4
%description
e9236f4
SeaBIOS is an open-source legacy BIOS implementation which can be used as
e9236f4
a coreboot payload. It implements the standard BIOS calling interfaces
e9236f4
that a typical x86 proprietary BIOS implements.
e9236f4
90f093c
d6248aa
%package bin
d6248aa
Summary: Seabios for x86
d6248aa
Buildarch: noarch
d6248aa
90f093c
d6248aa
%description bin
d6248aa
SeaBIOS is an open-source legacy BIOS implementation which can be used as
d6248aa
a coreboot payload. It implements the standard BIOS calling interfaces
d6248aa
that a typical x86 proprietary BIOS implements.
e9236f4
90f093c
b9ad6c5
%package -n seavgabios-bin
b9ad6c5
Summary: Seavgabios for x86
b9ad6c5
Buildarch: noarch
b9ad6c5
b9ad6c5
%description -n seavgabios-bin
b9ad6c5
SeaVGABIOS is an open-source VGABIOS implementation.
b9ad6c5
b9ad6c5
e9236f4
%prep
290df1c
%setup -q
44cf4a2
%autopatch -p1
e9236f4
e9236f4
%build
0738150
%define _lto_cflags %{nil}
d6248aa
export CFLAGS="$RPM_OPT_FLAGS"
b9ad6c5
mkdir binaries
b9ad6c5
a1a30f0
build_bios() {
3bc3117
    make clean distclean
3bc3117
    cp $1 .config
3bc3117
    echo "CONFIG_DEBUG_LEVEL=%{debug_level}" >> .config
a1a30f0
    make oldnoconfig V=1
a1a30f0
a1a30f0
    make V=1 \
9be9bde
        EXTRAVERSION="-%{release}" \
8b33368
        PYTHON=python3 \
dcde000
%if 0%{?cross:1}
a1a30f0
        HOSTCC=gcc \
a1a30f0
        CC=x86_64-linux-gnu-gcc \
a1a30f0
        AS=x86_64-linux-gnu-as \
a1a30f0
        LD=x86_64-linux-gnu-ld \
a1a30f0
        OBJCOPY=x86_64-linux-gnu-objcopy \
a1a30f0
        OBJDUMP=x86_64-linux-gnu-objdump \
dcde000
        STRIP=x86_64-linux-gnu-strip \
dcde000
%endif
dcde000
        $4
3bc3117
3bc3117
    cp out/$2 binaries/$3
a1a30f0
}
a1a30f0
3bc3117
# seabios
4614126
build_bios %{_sourcedir}/config.seabios-128k bios.bin bios.bin
4614126
build_bios %{_sourcedir}/config.seabios-256k bios.bin bios-256k.bin
dcde000
%if 0%{?fedora:1}
9be9bde
build_bios %{_sourcedir}/config.csm Csm16.bin bios-csm.bin
9be9bde
build_bios %{_sourcedir}/config.coreboot bios.bin.elf bios-coreboot.bin
d39c5a3
build_bios %{_sourcedir}/config.seabios-microvm bios.bin bios-microvm.bin
dcde000
%endif
b9ad6c5
b9ad6c5
# seavgabios
d39c5a3
%global vgaconfigs bochs-display cirrus isavga qxl stdvga ramfb vmware virtio ati
3e7fdf8
for config in %{vgaconfigs}; do
35e0080
    build_bios %{_sourcedir}/config.vga-${config} \
3e7fdf8
               vgabios.bin vgabios-${config}.bin out/vgabios.bin
b9ad6c5
done
b9ad6c5
e9236f4
e9236f4
%install
e9236f4
mkdir -p $RPM_BUILD_ROOT%{_datadir}/seabios
b9ad6c5
mkdir -p $RPM_BUILD_ROOT%{_datadir}/seavgabios
3bc3117
install -m 0644 binaries/bios.bin $RPM_BUILD_ROOT%{_datadir}/seabios/bios.bin
3bc3117
install -m 0644 binaries/bios-256k.bin $RPM_BUILD_ROOT%{_datadir}/seabios/bios-256k.bin
dcde000
%if 0%{?fedora:1}
184d7f2
install -m 0644 binaries/bios-csm.bin $RPM_BUILD_ROOT%{_datadir}/seabios/bios-csm.bin
184d7f2
install -m 0644 binaries/bios-coreboot.bin $RPM_BUILD_ROOT%{_datadir}/seabios/bios-coreboot.bin
d39c5a3
install -m 0644 binaries/bios-microvm.bin $RPM_BUILD_ROOT%{_datadir}/seabios/bios-microvm.bin
dcde000
%endif
b9ad6c5
install -m 0644 binaries/vgabios*.bin $RPM_BUILD_ROOT%{_datadir}/seavgabios
e9236f4
e9236f4
e9236f4
%files
ec71069
%doc COPYING COPYING.LESSER README
e9236f4
90f093c
d6248aa
%files bin
d6248aa
%dir %{_datadir}/seabios/
184d7f2
%{_datadir}/seabios/bios*.bin
e9236f4
b9ad6c5
%files -n seavgabios-bin
b9ad6c5
%dir %{_datadir}/seavgabios/
b9ad6c5
%{_datadir}/seavgabios/vgabios*.bin
b9ad6c5
e9236f4
e9236f4
%changelog
d39c5a3
* Fri Jun 18 2021 Cole Robinson <crobinso@redhat.com> - 1.14.0-4
d39c5a3
- Install vgabios-ati and bios-microvm
d39c5a3
b9d2823
* Wed Jun 02 2021 Cole Robinson <crobinso@redhat.com> - 1.14.0-3
b9d2823
- Fix boot from nvme (bz 1963255)
b9d2823
23f7f35
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.0-2
23f7f35
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
23f7f35
0738150
* Tue Nov 24 2020 Cole Robinson <aintdiscole@gmail.com> - 1.14.0-1
0738150
- Update to 1.14.0
0738150
ea15f71
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.0-3
ea15f71
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
ea15f71
c04d3b4
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.0-2
c04d3b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
c04d3b4
a9b600b
* Mon Dec 09 2019 Cole Robinson <aintdiscole@gmail.com> - 1.13.0-1
a9b600b
- Update to 1.13.0
a9b600b
1256a6f
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.1-3
1256a6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
1256a6f
85d7448
* Thu Jul 11 2019 Cole Robinson <aintdiscole@gmail.com> - 1.12.1-2
85d7448
- Add config.vga-ati from qemu 4.1
85d7448
35e0080
* Wed Mar 27 2019 Cole Robinson <aintdiscole@gmail.com> - 1.12.1-1
35e0080
- Update to 1.12.1 for qemu 4.0
35e0080
380cea8
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-2
380cea8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
380cea8
7d20ee4
* Sat Nov 17 2018 Cole Robinson <crobinso@redhat.com> - 1.12.0-1
7d20ee4
- Rebase to version 1.12.0 for qemu-3.1.0
7d20ee4
856cacb
* Tue Jul 24 2018 Cole Robinson <crobinso@redhat.com> - 1.11.2-1
856cacb
- Rebased to version 1.11.2
856cacb
- Add BuildRequires: gcc (bz #1606326)
856cacb
72a8047
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.1-2
72a8047
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
72a8047
6162654
* Thu Mar 22 2018 Cole Robinson <crobinso@redhat.com> - 1.11.1-1
6162654
- Rebased to version 1.11.1
6162654
8b33368
* Mon Mar 19 2018 Paolo Bonzini <pbonzini@redhat.com> - 1.11.0-2
8b33368
- Build with Python 3
8b33368
40cab28
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.0-2
40cab28
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
40cab28
44cf4a2
* Fri Nov 17 2017 Paolo Bonzini <pbonzini@redhat.com> - 1.11.0-1
44cf4a2
- Rebased to version 1.11.0
44cf4a2
- Add three patches from RHEL
44cf4a2
dcde000
* Fri Nov 17 2017 Paolo Bonzini <pbonzini@redhat.com> - 1.10.2-3
dcde000
- Disable cross-compilation on RHEL
dcde000
1f45fe4
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.2-2
1f45fe4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
1f45fe4
4134f16
* Wed Mar 15 2017 Cole Robinson <crobinso@redhat.com> - 1.10.2-1
4134f16
- Rebased to version 1.10.2
4134f16
3f55f99
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.1-2
3f55f99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
3f55f99
4a53629
* Sun Dec 04 2016 Cole Robinson <crobinso@redhat.com> - 1.10.1-1
4a53629
- Rebased to version 1.10.1
4a53629
c31d400
* Wed Aug 03 2016 Cole Robinson <crobinso@redhat.com> - 1.9.3-1
c31d400
- Rebased to version 1.9.3
c31d400
e54046c
* Thu Mar 24 2016 Paolo Bonzini <pbonzini@redhat.com> - 1.9.1-3
b13ac1d
- Include MPT Fusion driver, in preparation for QEMU 2.6
e54046c
- Include XHCI and SD in 128k ROM, sacrifice bootsplash instead
b13ac1d
a48ed8c
* Thu Mar 17 2016 Cole Robinson <crobinso@redhat.com> - 1.9.1-1
a48ed8c
- Rebased to version 1.9.1
a48ed8c
- Fix incorrect UUID format in boot output (bz #1284259)
a48ed8c
d6c3a3e
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-2
d6c3a3e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d6c3a3e
9be9bde
* Tue Nov 17 2015 Cole Robinson <crobinso@redhat.com> 1.9.0-1
9be9bde
- Rebased to version 1.9.0
9be9bde
4614126
* Tue Jul 14 2015 Cole Robinson <crobinso@redhat.com> 1.8.2-1
4614126
- Rebased to version 1.8.2
4614126
6ddf5b7
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.1-2
6ddf5b7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
6ddf5b7
065d186
* Wed Mar 18 2015 Cole Robinson <crobinso@redhat.com> - 1.8.1-1
065d186
- Rebased to version 1.8.1
065d186
ec71069
* Sat Feb 21 2015 Cole Robinson <crobinso@redhat.com> - 1.8.0-1
ec71069
- Rebased to version 1.8.0
ec71069
- Initial support for USB3 hubs
ec71069
- Initial support for SD cards (on QEMU only)
ec71069
- Initial support for transitioning to 32bit mode using SMIs (on QEMU TCG
ec71069
  only)
ec71069
- SeaVGABIOS improvements
ec71069
023a4d3
* Sat Nov 15 2014 Cole Robinson <crobinso@redhat.com> - 1.7.5.1-1
023a4d3
- Update to seabios-1.7.5.1
023a4d3
d96c2d5
* Wed Jul 09 2014 Cole Robinson <crobinso@redhat.com> - 1.7.5-3
d96c2d5
- Fix PCI-e hotplug (bz #1115598)
d96c2d5
fe3d9b6
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.5-2
fe3d9b6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
fe3d9b6
e433709
* Sat May 31 2014 Cole Robinson <crobinso@redhat.com> - 1.7.5-1
e433709
- Rebased to version 1.7.5
e433709
- Support for obtaining SMBIOS tables directly from QEMU.
e433709
- XHCI USB controller fixes for real hardware
e433709
- seavgabios: New driver for "coreboot native vga" support
e433709
- seavgabios: Improved detection of x86emu versions with incorrect
e433709
  emulation.
e433709
- Several bug fixes and code cleanups
e433709
699be18
* Wed Mar 26 2014 Matthias Clasen <mclasen@redhat.com> 1.7.4-5
699be18
- Fix booting FreeBSD VMs in virt-manager
699be18
3bc3117
* Mon Mar 17 2014 Cole Robinson <crobinso@redhat.com> 1.7.4-3
3bc3117
- Build 256k bios images for qemu 2.0
3bc3117
dbf06d5
* Thu Mar 13 2014 Cole Robinson <crobinso@redhat.com> - 1.7.4-2
dbf06d5
- Fix kvm migration with empty virtio-scsi controller (bz #1032208)
dbf06d5
a1a30f0
* Mon Jan 06 2014 Cole Robinson <crobinso@redhat.com> - 1.7.4-1
a1a30f0
- Rebased to version 1.7.4
a1a30f0
- Support for obtaining ACPI tables directly from QEMU.
a1a30f0
- Initial support for XHCI USB controllers (initially for QEMU only).
a1a30f0
- Support for booting from "pvscsi" devices on QEMU.
a1a30f0
- Enhanced floppy driver - improved support for real hardware.
a1a30f0
- coreboot cbmem console support.
a1a30f0
a6d481c
* Tue Nov 19 2013 Cole Robinson <crobinso@redhat.com> - 1.7.3.2-1
a6d481c
- Update to 1.7.3.2 for qemu 1.7
a6d481c
63a61a0
* Thu Nov 14 2013 Paolo Bonzini <pbonzini@redhat.com> - 1.7.3.1-3
63a61a0
- Fix pasto in CONFIG_DEBUG_LEVEL.
63a61a0
184d7f2
* Thu Nov 14 2013 Paolo Bonzini <pbonzini@redhat.com> - 1.7.3.1-2
184d7f2
- Compile as all three of BIOS, CSM and CoreBoot payload.
184d7f2
9a92493
* Wed Aug 14 2013 Cole Robinson <crobinso@redhat.com> - 1.7.3.1-1
9a92493
- Rebased to version 1.7.3.1
9a92493
- Fix USB EHCI detection that was broken in hlist conversion of
9a92493
  PCIDevices.
9a92493
- Fix bug in CBFS file walking with compressed files.
9a92493
- acpi: sync FADT flags from PIIX4 to Q35
9a92493
43c7314
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.3-3
43c7314
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
43c7314
ea00cb4
* Tue Jul 09 2013 Cole Robinson <crobinso@redhat.com> - 1.7.3-2
ea00cb4
- Install aml files for use by qemu
ea00cb4
f413ff3
* Mon Jul 08 2013 Cole Robinson <crobinso@redhat.com> - 1.7.3-1
f413ff3
- Rebased to version 1.7.3
f413ff3
- Initial support for using SeaBIOS as a UEFI CSM
f413ff3
- Support for detecting and using ACPI reboot ports.
f413ff3
- Non-standard floppy sizes now work again with recent QEMU versions.
f413ff3
- Several bug fixes and code cleanups
f413ff3
- Again fix vgabios obsoletes (bz #981147)
f413ff3
a3a29c9
* Mon May 27 2013 Cole Robinson <crobinso@redhat.com> - 1.7.2.2-1
a3a29c9
- Update to seabios stable 1.7.2.2
a3a29c9
- Obsolete vgabios (bz #967315)
a3a29c9
290df1c
* Thu Jan 24 2013 Cole Robinson <crobinso@redhat.com> - 1.7.2-1
290df1c
- Rebased to version 1.7.2
290df1c
- Support for ICH9 host chipset ("q35") on emulators
290df1c
- Support for booting from LSI MegaRAID SAS controllers
290df1c
- Support for using the ACPI PM timer on emulators
290df1c
- Improved Geode VGA BIOS support.
290df1c
- Several bug fixes
290df1c
719a031
* Thu Dec  6 2012 Peter Robinson <pbrobinson@fedoraproject.org> 1.7.1-4
719a031
- Root seabios package is noarch too because it only contains docs
719a031
b9ad6c5
* Fri Oct 19 2012 Cole Robinson <crobinso@redhat.com> - 1.7.1-3
b9ad6c5
- Add seavgabios subpackage
b9ad6c5
1e77d40
* Wed Oct 17 2012 Paolo Bonzini <pbonzini@redhat.com> - 1.7.1-2
1e77d40
- Build with cross compiler.  Resolves: #866664.
1e77d40
02ea97c
* Wed Sep 05 2012 Cole Robinson <crobinso@redhat.com> - 1.7.1-1
02ea97c
- Rebased to version 1.7.1
02ea97c
- Initial support for booting from USB attached scsi (USB UAS) drives
02ea97c
- USB EHCI 64bit controller support
02ea97c
- USB MSC multi-LUN device support
02ea97c
- Support for booting from LSI SCSI controllers on emulators
02ea97c
- Support for booting from AMD PCscsi controllers on emulators
02ea97c
90f093c
* Mon Aug 13 2012 Richard W.M. Jones <rjones@redhat.com> - 1.7.0-4
90f093c
- Modernise and tidy up the RPM.
9d9aaf1
- Allow debug versions of SeaBIOS to be built easily.
90f093c
209d0d8
* Mon Aug 06 2012 Cole Robinson <crobinso@redhat.com> - 1.7.0-3
209d0d8
- Enable S3/S4 support for guests (it's an F18 feature after all)
209d0d8
5be9310
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.0-2
5be9310
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
5be9310
67b1f39
* Mon May 28 2012 Cole Robinson <crobinso@redhat.com> - 1.7.0-1
67b1f39
- Rebased to version 1.7.0
67b1f39
- Support for virtio-scsi
67b1f39
- Improved USB drive support
67b1f39
- Several USB controller bug fixes and improvements
67b1f39
2082636
* Wed Mar 28 2012 Paolo Bonzini <pbonzini@redhat.com> - 1.6.3-2
2082636
- Fix bugs in booting from host (or redirected) USB pen drives
2082636
6960463
* Wed Feb 08 2012 Justin M. Forbes <jforbes@redhat.com> - 1.6.3-1
6960463
- Update to 1.6.3 upstream
6960463
- Add virtio-scsi
6960463
51ef0b6
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.2-4
51ef0b6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
51ef0b6
66f7090
* Wed Oct 05 2011 Justin M. Forbes <jforbes@redhat.com> - 0.6.2-3
66f7090
- Stop advertising S3 and S4 in DSDT (bz#741375)
66f7090
- incdule iasl buildreq
66f7090
f2a4e67
* Wed Jul 13 2011 Justin M. Forbes <jforbes@redhat.com> - 0.6.2-2
f2a4e67
- Fix QXL bug in 0.6.2
f2a4e67
35f47e6
* Wed Jul 13 2011 Justin M. forbes <jforbes@redhat.com> - 0.6.2-1
35f47e6
- Update to 0.6.2 upstream for a number of bugfixes
35f47e6
9c63fd6
* Mon Feb 14 2011 Justin M. forbes <jforbes@redhat.com> - 0.6.1-1
9c63fd6
- Update to 0.6.1 upstream for a number of bugfixes
9c63fd6
774ffcc
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-2
774ffcc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
774ffcc
ee29b99
* Tue Aug 10 2010 Justin M. Forbes <jforbes@redhat.com> 0.6.0-1
ee29b99
- Update seabios to latest stable so we can drop patches.
ee29b99
d6248aa
* Tue Apr 20 2010 Justin M. Forbes <jforbes@redhat.com> 0.5.1-2
d6248aa
- Ugly hacks to make package noarch and available for arch that cannot build it.
d6248aa
- Disable useless debuginfo
d6248aa
41145fb
* Wed Mar 03 2010 Justin M. Forbes <jforbes@redhat.com> 0.5.1-1
41145fb
- Update to 0.5.1 stable release
41145fb
- Pick up patches required for current qemu
41145fb
e9236f4
* Thu Jan 07 2010 Justin M. Forbes <jforbes@redhat.com> 0.5.1-0.1.20100108git669c991
e9236f4
- Created initial package