mirror of
https://git.yoctoproject.org/poky
synced 2026-03-05 06:49:39 +01:00
(From OE-Core rev: ff0237d14e3720e360395e29cdaf8b9dc84a5897) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
758 B
PHP
27 lines
758 B
PHP
SUMMARY = "Device Tree Compiler"
|
|
HOMEPAGE = "https://devicetree.org/"
|
|
DESCRIPTION = "The Device Tree Compiler is a tool used to manipulate the Open-Firmware-like device tree used by PowerPC kernels."
|
|
SECTION = "bootloader"
|
|
LICENSE = "GPLv2 | BSD"
|
|
DEPENDS = "flex-native bison-native"
|
|
|
|
SRC_URI = "git://git.kernel.org/pub/scm/utils/dtc/dtc.git \
|
|
file://make_install.patch \
|
|
"
|
|
UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)"
|
|
|
|
EXTRA_OEMAKE='NO_PYTHON=1 PREFIX="${prefix}" LIBDIR="${libdir}" DESTDIR="${D}"'
|
|
|
|
inherit pkgconfig
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install () {
|
|
oe_runmake install
|
|
}
|
|
|
|
PACKAGES =+ "${PN}-misc"
|
|
FILES_${PN}-misc = "${bindir}/convert-dtsv0 ${bindir}/ftdump ${bindir}/dtdiff"
|
|
|
|
RDEPENDS_${PN}-misc += "bash diffutils"
|