summaryrefslogtreecommitdiffstats
path: root/meta-filesystems
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2014-01-22 12:44:05 +0100
committerPaul Eggleton <paul.eggleton@linux.intel.com>2014-01-23 10:04:37 +0000
commit6572316557e742c2dc93848e4d560242bf0c3995 (patch)
treefd5df2691274c6dc20152edaa2b4518eeee7d028 /meta-filesystems
parent36743d131c869b9a73e8f0bf6262a5972b99c488 (diff)
downloadmeta-openembedded-6572316557e742c2dc93848e4d560242bf0c3995.tar.gz
yaffs2-utils: Fix formatting, drop PR
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Reviewed-by: Hongxu Jia <hongxu.jia@windriver.com>
Diffstat (limited to 'meta-filesystems')
-rw-r--r--meta-filesystems/recipes-filesystems/yaffs2/yaffs2-utils_git.bb21
1 files changed, 9 insertions, 12 deletions
diff --git a/meta-filesystems/recipes-filesystems/yaffs2/yaffs2-utils_git.bb b/meta-filesystems/recipes-filesystems/yaffs2/yaffs2-utils_git.bb
index 2b7452b1f..0e1e460b6 100644
--- a/meta-filesystems/recipes-filesystems/yaffs2/yaffs2-utils_git.bb
+++ b/meta-filesystems/recipes-filesystems/yaffs2/yaffs2-utils_git.bb
@@ -1,38 +1,35 @@
1SUMMARY = "Yet Another Flash File System" 1SUMMARY = "Yet Another Flash File System"
2
3DESCRIPTION = "Tools for managing 'yaffs2' file systems." 2DESCRIPTION = "Tools for managing 'yaffs2' file systems."
4 3
5SECTION = "base" 4SECTION = "base"
6HOMEPAGE = "http://www.yaffs.net" 5HOMEPAGE = "http://www.yaffs.net"
6
7LICENSE = "GPLv2" 7LICENSE = "GPLv2"
8LIC_FILES_CHKSUM = "file://utils/mkyaffs2image.c;beginline=12;endline=14;md5=5f5464f9b3e981ca574e65b00e438561"
8 9
9PR = "r0"
10PV = "0.0+git${SRCPV}" 10PV = "0.0+git${SRCPV}"
11 11
12DEPENDS = "mtd-utils" 12DEPENDS = "mtd-utils"
13S = "${WORKDIR}/git"
14 13
15# Source is the HEAD of master branch at the time of writing this recipe 14# Source is the HEAD of master branch at the time of writing this recipe
16SRC_URI = "git://www.aleph1.co.uk/yaffs2;protocol=git;branch=master \ 15SRC_URI = "git://www.aleph1.co.uk/yaffs2;protocol=git;branch=master"
17 "
18SRCREV = "bc76682d93955cfb33051beb503ad9f8a5450578" 16SRCREV = "bc76682d93955cfb33051beb503ad9f8a5450578"
19 17S = "${WORKDIR}/git"
20LIC_FILES_CHKSUM = "file://utils/mkyaffs2image.c;beginline=12;endline=14;md5=5f5464f9b3e981ca574e65b00e438561"
21 18
22CFLAGS_append = " -I.. -DCONFIG_YAFFS_UTIL -DCONFIG_YAFFS_DEFINES_TYPES" 19CFLAGS_append = " -I.. -DCONFIG_YAFFS_UTIL -DCONFIG_YAFFS_DEFINES_TYPES"
23 20
24do_compile() { 21do_compile() {
25 cd utils && oe_runmake 22 cd utils && oe_runmake
26} 23}
27 24
28INSTALL_FILES = "mkyaffsimage \ 25INSTALL_FILES = "mkyaffsimage \
29 mkyaffs2image \ 26 mkyaffs2image \
30 " 27 "
31do_install() { 28do_install() {
32 install -d ${D}${sbindir}/ 29 install -d ${D}${sbindir}/
33 for i in ${INSTALL_FILES}; do 30 for i in ${INSTALL_FILES}; do
34 install -m 0755 utils/$i ${D}${sbindir}/ 31 install -m 0755 utils/$i ${D}${sbindir}/
35 done 32 done
36} 33}
37 34
38BBCLASSEXTEND = "native" 35BBCLASSEXTEND = "native"