blob: 427fcd433a7f4cf9c0ec252851df8314c336f11d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
}
|