mirror of
https://git.yoctoproject.org/poky
synced 2026-04-24 21:32:12 +02:00
(From OE-Core rev: 22988891bd66f4e65ba47b7e5eb261da281e6cba) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
525 B
PHP
20 lines
525 B
PHP
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 = "GPL2 | BSD"
|
|
DEPENDS = "flex-native bison-native"
|
|
|
|
inherit autotools
|
|
|
|
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"
|