blob: 4bf1bc8ed1127d1dc81fa74c8082270a9b22bde1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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"
inherit autotools
do_install() {
install -m 0755 -d ${D}${bindir}
install -m 755 dtc ${D}${bindir}/dtc
}
|