diff options
author | Adrian Alonso <aalonso00@gmail.com> | 2010-09-09 09:26:00 -0500 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-10 13:00:49 +0100 |
commit | 6cbc2c3b565896c7c860487c6519b4349876ad72 (patch) | |
tree | 3208112af9623b53b407cdd23ed705a3d7ee448d /meta/recipes-kernel/dtc/dtc.inc | |
parent | c541b598c8e3f7b55ba6fe0727152bb3635130e1 (diff) | |
download | openembedded-core-6cbc2c3b565896c7c860487c6519b4349876ad72.tar.gz openembedded-core-6cbc2c3b565896c7c860487c6519b4349876ad72.tar.bz2 openembedded-core-6cbc2c3b565896c7c860487c6519b4349876ad72.zip |
dtc: device tree compiler recipes
* 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>
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 @@ +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 +} |