diff options
author | Saul Wold <sgw@linux.intel.com> | 2011-05-24 14:55:36 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-01 18:32:27 +0100 |
commit | 22988891bd66f4e65ba47b7e5eb261da281e6cba (patch) | |
tree | f66f10b4a65d10e90fde035d20398abdcf714e64 /meta/recipes-kernel/dtc/dtc.inc | |
parent | ac9d1c23ba47455eb99d8c2c661fc70583d7c02b (diff) | |
download | openembedded-core-22988891bd66f4e65ba47b7e5eb261da281e6cba.tar.gz openembedded-core-22988891bd66f4e65ba47b7e5eb261da281e6cba.tar.bz2 openembedded-core-22988891bd66f4e65ba47b7e5eb261da281e6cba.zip |
dtc: Cleanup and update recipe
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-kernel/dtc/dtc.inc')
-rw-r--r-- | meta/recipes-kernel/dtc/dtc.inc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/recipes-kernel/dtc/dtc.inc b/meta/recipes-kernel/dtc/dtc.inc index e068df3c73..cfed15a4c5 100644 --- a/meta/recipes-kernel/dtc/dtc.inc +++ b/meta/recipes-kernel/dtc/dtc.inc @@ -2,7 +2,7 @@ SUMMARY = "Device Tree Compiler" DESCRIPTION = "The Device Tree Compiler is a tool used to manipulate the Open-Firmware-like device tree used by PowerPC kernels." SECTION = "bootloader" PRIORITY = "optional" -LICENSE = "GPL" +LICENSE = "GPL2 | BSD" DEPENDS = "flex-native bison-native" inherit autotools @@ -11,3 +11,9 @@ do_install() { install -m 0755 -d ${D}${bindir} install -m 755 dtc ${D}${bindir}/dtc } +SRC_URI = "git://www.jdl.com/software/dtc.git;protocol=git \ + file://fix_for_compilation_with_gcc_4.6.0.patch" + +INC_PR = "r0" + +S = "${WORKDIR}/git" |