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:34:33 +0100 |
commit | c1b6e65a4b7ac58787281fd7f309a2f5e8a9a2de (patch) | |
tree | 3ef88821f4c6e677b5ce42c3892b85604caabed7 /meta/recipes-kernel/dtc/dtc.inc | |
parent | fe961289fcee783b7de945170f3df2e5ea72d11e (diff) | |
download | poky-c1b6e65a4b7ac58787281fd7f309a2f5e8a9a2de.tar.gz |
dtc: Cleanup and update recipe
(From OE-Core rev: 22988891bd66f4e65ba47b7e5eb261da281e6cba)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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" | |||
2 | DESCRIPTION = "The Device Tree Compiler is a tool used to manipulate the Open-Firmware-like device tree used by PowerPC kernels." | 2 | DESCRIPTION = "The Device Tree Compiler is a tool used to manipulate the Open-Firmware-like device tree used by PowerPC kernels." |
3 | SECTION = "bootloader" | 3 | SECTION = "bootloader" |
4 | PRIORITY = "optional" | 4 | PRIORITY = "optional" |
5 | LICENSE = "GPL" | 5 | LICENSE = "GPL2 | BSD" |
6 | DEPENDS = "flex-native bison-native" | 6 | DEPENDS = "flex-native bison-native" |
7 | 7 | ||
8 | inherit autotools | 8 | inherit autotools |
@@ -11,3 +11,9 @@ do_install() { | |||
11 | install -m 0755 -d ${D}${bindir} | 11 | install -m 0755 -d ${D}${bindir} |
12 | install -m 755 dtc ${D}${bindir}/dtc | 12 | install -m 755 dtc ${D}${bindir}/dtc |
13 | } | 13 | } |
14 | SRC_URI = "git://www.jdl.com/software/dtc.git;protocol=git \ | ||
15 | file://fix_for_compilation_with_gcc_4.6.0.patch" | ||
16 | |||
17 | INC_PR = "r0" | ||
18 | |||
19 | S = "${WORKDIR}/git" | ||