This commit is contained in:
commit
6391061fb7
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
dtc-17.tar.gz
Normal file
3
dtc-17.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9c035e4c0090b329c22bbc0fd0a95d8b18d687956787002e1b2bfc52e63cdffa
|
||||||
|
size 57435
|
11
dtc.changes
Normal file
11
dtc.changes
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 29 07:31:31 CEST 2007 - olh@suse.de
|
||||||
|
|
||||||
|
- add flex and bison to buildrequires
|
||||||
|
fix endian bug in ftdump, add C style includes
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 23 23:33:01 CET 2007 - olh@suse.de
|
||||||
|
|
||||||
|
- initial package to build PS3 kernel
|
||||||
|
|
60
dtc.spec
Normal file
60
dtc.spec
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
#
|
||||||
|
# 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
|
Loading…
Reference in New Issue
Block a user