diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2014-01-22 12:44:05 +0100 |
---|---|---|
committer | Paul Eggleton <paul.eggleton@linux.intel.com> | 2014-01-23 10:04:37 +0000 |
commit | 6572316557e742c2dc93848e4d560242bf0c3995 (patch) | |
tree | fd5df2691274c6dc20152edaa2b4518eeee7d028 | |
parent | 36743d131c869b9a73e8f0bf6262a5972b99c488 (diff) | |
download | meta-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>
-rw-r--r-- | meta-filesystems/recipes-filesystems/yaffs2/yaffs2-utils_git.bb | 21 |
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 @@ | |||
1 | SUMMARY = "Yet Another Flash File System" | 1 | SUMMARY = "Yet Another Flash File System" |
2 | |||
3 | DESCRIPTION = "Tools for managing 'yaffs2' file systems." | 2 | DESCRIPTION = "Tools for managing 'yaffs2' file systems." |
4 | 3 | ||
5 | SECTION = "base" | 4 | SECTION = "base" |
6 | HOMEPAGE = "http://www.yaffs.net" | 5 | HOMEPAGE = "http://www.yaffs.net" |
6 | |||
7 | LICENSE = "GPLv2" | 7 | LICENSE = "GPLv2" |
8 | LIC_FILES_CHKSUM = "file://utils/mkyaffs2image.c;beginline=12;endline=14;md5=5f5464f9b3e981ca574e65b00e438561" | ||
8 | 9 | ||
9 | PR = "r0" | ||
10 | PV = "0.0+git${SRCPV}" | 10 | PV = "0.0+git${SRCPV}" |
11 | 11 | ||
12 | DEPENDS = "mtd-utils" | 12 | DEPENDS = "mtd-utils" |
13 | S = "${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 |
16 | SRC_URI = "git://www.aleph1.co.uk/yaffs2;protocol=git;branch=master \ | 15 | SRC_URI = "git://www.aleph1.co.uk/yaffs2;protocol=git;branch=master" |
17 | " | ||
18 | SRCREV = "bc76682d93955cfb33051beb503ad9f8a5450578" | 16 | SRCREV = "bc76682d93955cfb33051beb503ad9f8a5450578" |
19 | 17 | S = "${WORKDIR}/git" | |
20 | LIC_FILES_CHKSUM = "file://utils/mkyaffs2image.c;beginline=12;endline=14;md5=5f5464f9b3e981ca574e65b00e438561" | ||
21 | 18 | ||
22 | CFLAGS_append = " -I.. -DCONFIG_YAFFS_UTIL -DCONFIG_YAFFS_DEFINES_TYPES" | 19 | CFLAGS_append = " -I.. -DCONFIG_YAFFS_UTIL -DCONFIG_YAFFS_DEFINES_TYPES" |
23 | 20 | ||
24 | do_compile() { | 21 | do_compile() { |
25 | cd utils && oe_runmake | 22 | cd utils && oe_runmake |
26 | } | 23 | } |
27 | 24 | ||
28 | INSTALL_FILES = "mkyaffsimage \ | 25 | INSTALL_FILES = "mkyaffsimage \ |
29 | mkyaffs2image \ | 26 | mkyaffs2image \ |
30 | " | 27 | " |
31 | do_install() { | 28 | do_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 | ||
38 | BBCLASSEXTEND = "native" | 35 | BBCLASSEXTEND = "native" |