SHA256
1
0
forked from pool/dtc
dtc/dtc.spec

61 lines
1.6 KiB
RPMSpec

#
# spec file for package dtc (Version 17)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: dtc
URL: http://dtc.ozlabs.org/
Version: 17
Release: 3
Buildrequires: bison flex
Summary: device-tree compiler
License: GNU General Public License (GPL)
Group: Development/Tools/Building
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source: dtc-%{version}.tar.gz
%description
PowerPC kernels are moving towards requiring a small Open
Firmware-style device tree as the only means of passing information
from bootloaders/firmware to the kernel. This does not require a full
Open Firmware implementation. DTC (Device Tree Compiler) is a tool to
create a static device tree, which is adequate for most embedded
systems (since their topology will not vary across reboots). DTC is
available via a git tree: git://ozlabs.org/srv/projects/dtc/dtc.git
Authors:
--------
David Gibson <dwg@au1.ibm.com>
%prep
%setup -q
%build
make CFLAGS="$RPM_OPT_FLAGS"
%install
mkdir -p $RPM_BUILD_ROOT/usr/bin
cp -aL dtc ftdump $RPM_BUILD_ROOT/usr/bin
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
/usr/bin/*
%changelog
* Thu Mar 29 2007 - olh@suse.de
- add flex and bison to buildrequires
fix endian bug in ftdump, add C style includes
* Fri Mar 23 2007 - olh@suse.de
- initial package to build PS3 kernel