mirror of
https://git.yoctoproject.org/poky
synced 2026-04-24 12:32:11 +02:00
It's not necessary to specify the protocol parameter when it's the default protocol for the fetcher, e.g. the default protocol for git fetcher it git, "protocol=git" isn't needed. (From OE-Core rev: a2bab241c64428d5109c3c5ac5de4463fbad70c5) Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
540 B
PHP
19 lines
540 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"
|
|
LICENSE = "GPLv2 | BSD"
|
|
DEPENDS = "flex-native bison-native"
|
|
|
|
inherit autotools
|
|
|
|
SRC_URI = "git://www.jdl.com/software/dtc.git \
|
|
file://make_install.patch \
|
|
"
|
|
|
|
EXTRA_OEMAKE='PREFIX="${prefix}" LIBDIR="${libdir}"'
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
PACKAGES =+ "${PN}-misc"
|
|
FILES_${PN}-misc = "${bindir}/convert-dtsv0 ${bindir}/ftdump ${bindir}/dtdiff"
|