[oe-commits] Pengyu Ma : yaffs2: Adds git version recipe (initial recipe)

git at git.openembedded.org git at git.openembedded.org
Mon Jan 20 15:17:12 UTC 2014


Module: meta-openembedded.git
Branch: master
Commit: 221c46116dc8a8ac5f9773a685f8273596754e74
URL:    http://git.openembedded.org/?p=meta-openembedded.git&a=commit;h=221c46116dc8a8ac5f9773a685f8273596754e74

Author: Pengyu Ma <pengyu.ma at windriver.com>
Date:   Wed Aug 21 11:14:50 2013 +0800

yaffs2: Adds git version recipe (initial recipe)

Added CONFIG in CFLAGS to resolve missing definition error.

Signed-off-by: Pengyu Ma <pengyu.ma at windriver.com>

---

 .../recipes-filesystems/yaffs2/yaffs2-utils_git.bb | 38 ++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/meta-filesystems/recipes-filesystems/yaffs2/yaffs2-utils_git.bb b/meta-filesystems/recipes-filesystems/yaffs2/yaffs2-utils_git.bb
new file mode 100644
index 0000000..2b7452b
--- /dev/null
+++ b/meta-filesystems/recipes-filesystems/yaffs2/yaffs2-utils_git.bb
@@ -0,0 +1,38 @@
+SUMMARY = "Yet Another Flash File System"
+
+DESCRIPTION = "Tools for managing 'yaffs2' file systems."
+
+SECTION = "base"
+HOMEPAGE = "http://www.yaffs.net"
+LICENSE = "GPLv2"
+
+PR = "r0"
+PV = "0.0+git${SRCPV}"
+
+DEPENDS = "mtd-utils"
+S = "${WORKDIR}/git"
+
+# Source is the HEAD of master branch at the time of writing this recipe
+SRC_URI = "git://www.aleph1.co.uk/yaffs2;protocol=git;branch=master \
+          "
+SRCREV = "bc76682d93955cfb33051beb503ad9f8a5450578"
+
+LIC_FILES_CHKSUM = "file://utils/mkyaffs2image.c;beginline=12;endline=14;md5=5f5464f9b3e981ca574e65b00e438561"
+
+CFLAGS_append = " -I.. -DCONFIG_YAFFS_UTIL -DCONFIG_YAFFS_DEFINES_TYPES"
+
+do_compile() {
+	cd utils && oe_runmake
+}
+
+INSTALL_FILES = "mkyaffsimage \
+                 mkyaffs2image \
+                "
+do_install() {
+	install -d ${D}${sbindir}/
+	for i in ${INSTALL_FILES}; do
+		install -m 0755 utils/$i ${D}${sbindir}/
+	done
+}
+
+BBCLASSEXTEND = "native"



More information about the Openembedded-commits mailing list