You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
3.9 KiB
122 lines
3.9 KiB
%global svnrel 1229
|
|
%global tarver 1.1
|
|
|
|
# Disable unhelpful RPM test.
|
|
%global _binaries_in_noarch_packages_terminate_build 0
|
|
|
|
Name: openbios
|
|
Version: %{tarver}.svn%{svnrel}
|
|
Release: 1%{?dist}
|
|
Summary: OpenBIOS implementation of IEEE 1275-1994
|
|
|
|
License: GPLv2
|
|
URL: http://www.openfirmware.info/OpenBIOS
|
|
BuildArch: noarch
|
|
|
|
# There are no upstream tarballs. This tarball is prepared as follows:
|
|
#
|
|
# svn export -r %{svnrel} \
|
|
# svn://openbios.org/openbios/trunk/openbios-devel \
|
|
# %{name}-%{tarver}
|
|
# tar czf %{name}-%{tarver}-svn%{svnrel}.tar.gz %{name}-%{tarver}
|
|
# rm -r %{name}-%{tarver}
|
|
Source0: %{name}-%{tarver}-svn%{svnrel}.tar.gz
|
|
|
|
# Use 64bit gcc for 32bit ppc + sparc
|
|
# keep: Not suitable for upstream, change is specific to Fedora cross-gcc
|
|
Patch0: 0001-Use-64bit-gcc-for-32bit-ppc-sparc.patch
|
|
|
|
# Note that these packages build 32 bit binaries with the -m32 flag.
|
|
BuildRequires: gcc-powerpc64-linux-gnu
|
|
BuildRequires: gcc-sparc64-linux-gnu
|
|
|
|
BuildRequires: fcode-utils
|
|
BuildRequires: libxslt
|
|
|
|
Obsoletes: openbios-common
|
|
Obsoletes: openbios-ppc
|
|
Obsoletes: openbios-sparc32
|
|
Obsoletes: openbios-sparc64
|
|
|
|
|
|
%description
|
|
The OpenBIOS project provides you with most free and open source Open
|
|
Firmware implementations available. Here you find several
|
|
implementations of IEEE 1275-1994 (Referred to as Open Firmware)
|
|
compliant firmware. Among its features, Open Firmware provides an
|
|
instruction set independent device interface. This can be used to boot
|
|
the operating system from expansion cards without native
|
|
initialization code.
|
|
|
|
It is Open Firmware's goal to work on all common platforms, like x86,
|
|
AMD64, PowerPC, ARM and Mips. With its flexible and modular design,
|
|
Open Firmware targets servers, workstations and embedded systems,
|
|
where a sane and unified firmware is a crucial design goal and reduces
|
|
porting efforts noticably.
|
|
|
|
Open Firmware is found on many servers and workstations and there are
|
|
sever commercial implementations from SUN, Firmworks, CodeGen, Apple,
|
|
IBM and others.
|
|
|
|
In most cases, the Open Firmware implementations provided on this site
|
|
rely on an additional low-level firmware for hardware initialization,
|
|
such as coreboot or U-Boot.
|
|
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{tarver}
|
|
%patch0 -p1
|
|
|
|
|
|
%build
|
|
/bin/sh config/scripts/switch-arch ppc
|
|
make build-verbose V=1 %{?_smp_mflags}
|
|
/bin/sh config/scripts/switch-arch sparc32
|
|
make build-verbose V=1 %{?_smp_mflags}
|
|
/bin/sh config/scripts/switch-arch sparc64
|
|
make build-verbose V=1 %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
qemudir=$RPM_BUILD_ROOT%{_datadir}/qemu
|
|
mkdir -p $qemudir
|
|
cp -a obj-ppc/openbios-qemu.elf $qemudir/openbios-ppc
|
|
cp -a obj-sparc32/openbios-builtin.elf $qemudir/openbios-sparc32
|
|
cp -a obj-sparc64/openbios-builtin.elf $qemudir/openbios-sparc64
|
|
|
|
|
|
%files
|
|
%doc COPYING
|
|
%doc README
|
|
%doc VERSION
|
|
%dir %{_datadir}/qemu
|
|
%{_datadir}/qemu/openbios-ppc
|
|
%{_datadir}/qemu/openbios-sparc32
|
|
%{_datadir}/qemu/openbios-sparc64
|
|
|
|
|
|
%changelog
|
|
* Tue Nov 19 2013 Cole Robinson <crobinso@redhat.com> - 1.1.svn1229-1
|
|
- Update to svn1229 for qemu 1.7
|
|
|
|
* Tue Aug 20 2013 Cole Robinson <crobinso@redhat.com> 1.1.svn1198-1
|
|
- Update to svn1198 for qemu 1.6
|
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.svn1136-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
* Tue May 21 2013 Cole Robinson <crobinso@redhat.com> - 1.1.svn1136-1
|
|
- Update to openbios 1.1 for qemu 1.5
|
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.svn1063-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
* Tue Oct 16 2012 Paolo Bonzini <pbonzini@redhat.com> - 1.0.svn1063-1
|
|
- Move date from release to version.
|
|
|
|
* Mon Sep 17 2012 Cole Robinson <crobinso@redhat.com> - 1.0-6.svn1063
|
|
- Update to r1063, version qemu 1.2 shipped with
|
|
|
|
* Tue Jul 31 2012 Richard W.M. Jones <rjones@redhat.com> - 1.0-5.svn1061
|
|
- Initial release in Fedora.
|