summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/yaffs2/yaffs2-utils.inc
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2011-05-13 17:43:12 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-05-18 14:32:43 +0100
commit7aabd71d0a84c689f747eab95a4e8370ff35889f (patch)
tree92d8755f82486ce9527b92437106982b3d691062 /meta/recipes-devtools/yaffs2/yaffs2-utils.inc
parent8fdd65f9977e5dc46bba208b9085a0b14ed7098b (diff)
downloadpoky-7aabd71d0a84c689f747eab95a4e8370ff35889f.tar.gz
yaffs2: Remove yaffs2 from oe-core
Move to meta-extras Also remove yaffs2 from image_types.bbclass (From OE-Core rev: 6a97657ae834945ae26e5933d29bd94d0f7fea67) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/yaffs2/yaffs2-utils.inc')
-rw-r--r--meta/recipes-devtools/yaffs2/yaffs2-utils.inc28
1 files changed, 0 insertions, 28 deletions
diff --git a/meta/recipes-devtools/yaffs2/yaffs2-utils.inc b/meta/recipes-devtools/yaffs2/yaffs2-utils.inc
deleted file mode 100644
index 23e202d704..0000000000
--- a/meta/recipes-devtools/yaffs2/yaffs2-utils.inc
+++ /dev/null
@@ -1,28 +0,0 @@
1DESCRIPTION = "Tools for managing 'yaffs2' file systems."
2SECTION = "base"
3HOMEPAGE = "http://www.yaffs.net"
4LICENSE = "GPLv2"
5LIC_FILES_CHKSUM = "file://yaffs_fs.c;beginline=1;endline=19;md5=9e87e2e9244febcc0dffb752cb7679e1"
6PV = "0.0.0+cvs${SRCDATE}"
7PR = "r0"
8DEPENDS = "mtd-utils"
9
10SRC_URI = "cvs://anonymous@cvs.aleph1.co.uk/home/aleph1/cvs;module=yaffs2 \
11 file://mkyaffs2image.patch;patch=1"
12S = "${WORKDIR}/yaffs2"
13
14CFLAGS += "-I.. -DCONFIG_YAFFS_UTIL"
15CFLAGS_append_virtclass-native = " -I.. -DCONFIG_YAFFS_UTIL"
16
17do_compile() {
18 cd utils && oe_runmake
19}
20
21do_install() {
22 install -d ${D}${sbindir}/
23 for i in mkyaffsimage mkyaffs2image; do
24 install -m 0755 utils/$i ${D}${sbindir}/
25 done
26}
27
28BBCLASSEXTEND = "native"