mirror of
https://git.yoctoproject.org/poky
synced 2026-04-24 12:32:11 +02:00
* Device tree compiler recipes from OE
* v2 reorder patchset
* remove BBCLASSEXTENDDED from dtc-native.inc
* v3 remove installing dtc in ${STAGING_BINDIR}
* fix PR variable follow Poky guidelines
* v4 fix PV variable
Signed-off-by: Adrian Alonso <aalonso00@gmail.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
13 lines
337 B
PHP
13 lines
337 B
PHP
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"
|
|
DEPENDS = "flex-native bison-native"
|
|
|
|
inherit autotools
|
|
|
|
do_install() {
|
|
install -m 0755 -d ${D}${bindir}
|
|
install -m 755 dtc ${D}${bindir}/dtc
|
|
}
|