diff options
Diffstat (limited to 'meta/recipes-kernel/dtc/dtc.inc')
-rw-r--r-- | meta/recipes-kernel/dtc/dtc.inc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/meta/recipes-kernel/dtc/dtc.inc b/meta/recipes-kernel/dtc/dtc.inc new file mode 100644 index 0000000000..35cb3f0551 --- /dev/null +++ b/meta/recipes-kernel/dtc/dtc.inc | |||
@@ -0,0 +1,12 @@ | |||
1 | DESCRIPTION = "The Device Tree Compiler is a tool used to manipulate the Open-Firmware-like device tree used by PowerPC kernels." | ||
2 | SECTION = "bootloader" | ||
3 | PRIORITY = "optional" | ||
4 | LICENSE = "GPL" | ||
5 | DEPENDS = "flex-native bison-native" | ||
6 | |||
7 | inherit autotools | ||
8 | |||
9 | do_install() { | ||
10 | install -m 0755 -d ${D}${bindir} | ||
11 | install -m 755 dtc ${D}${bindir}/dtc | ||
12 | } | ||