diff options
-rw-r--r-- | mtd/mtd_20040614.oe | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mtd/mtd_20040614.oe b/mtd/mtd_20040614.oe index 9087d791ef..8a0532283a 100644 --- a/mtd/mtd_20040614.oe +++ b/mtd/mtd_20040614.oe @@ -13,6 +13,13 @@ do_compile () { oe_runmake -C util } +do_stage () { + install -d ${STAGING_INCDIR}/mtd + for f in ${S}/include/mtd/*.h; do + install -m 0644 $f ${STAGING_INCDIR}/mtd/ + done +} + do_install () { install -d ${D}${bindir} for binary in ftl_format flash_erase flash_eraseall nanddump doc_loadbios \ |