diff options
author | Qian Lei <qianl.fnst@cn.fujitsu.com> | 2014-12-17 17:03:29 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-12-19 20:10:58 +0100 |
commit | 617e044564caf90bf9c8cff19ded4eca3cda6c5c (patch) | |
tree | 943b739eb1116168add44160b1c61bb6687a4fb0 /meta-filesystems/recipes-filesystems | |
parent | 935eb8fa8dc9172965ed01eaf001548b1d510fc0 (diff) | |
download | meta-openembedded-617e044564caf90bf9c8cff19ded4eca3cda6c5c.tar.gz |
logfsprogs: Add new recipe
LogFS is a Linux log-structured and scalable flash file system, intended
for use on large devices of flash memory. Logfsprogs is used to create
LogFS file system.
Signed-off-by: Qian Lei <qianl.fnst@cn.fujitsu.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-filesystems/recipes-filesystems')
-rw-r--r-- | meta-filesystems/recipes-filesystems/logfsprogs/logfsprogs_git.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-filesystems/recipes-filesystems/logfsprogs/logfsprogs_git.bb b/meta-filesystems/recipes-filesystems/logfsprogs/logfsprogs_git.bb new file mode 100644 index 000000000..32ebec83d --- /dev/null +++ b/meta-filesystems/recipes-filesystems/logfsprogs/logfsprogs_git.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | SUMMARY = "LogFS Programs: used to create LogFS file system" | ||
2 | DESCRIPTION = "\ | ||
3 | LogFS is a Linux log-structured and scalable flash file system, intended \ | ||
4 | for use on large devices of flash memory. It is written by Jörn Engel and \ | ||
5 | in part sponsored by the CE Linux Forum. \ | ||
6 | LogFS is included in the mainline Linux kernel and was introduced in \ | ||
7 | version 2.6.34, released on May 16, 2010." | ||
8 | HOMEPAGE = "https://github.com/prasad-joshi/logfsprogs" | ||
9 | SECTION = "base" | ||
10 | LICENSE = "GPLv2" | ||
11 | LIC_FILES_CHKSUM = "file://fsck.c;md5=3859dc73da97909ff1d0125e88a27e02" | ||
12 | DEPENDS = "zlib" | ||
13 | |||
14 | SRC_URI = "git://github.com/prasad-joshi/logfsprogs.git" | ||
15 | SRCREV = "45b72c81ce3c6fa17ca19bafc207ea93e76312f4" | ||
16 | |||
17 | S = "${WORKDIR}/git" | ||
18 | |||
19 | EXTRA_OEMAKE = "CC="${CC}" LD="${LD}" AR="${AR}"" | ||
20 | |||
21 | do_install () { | ||
22 | mkdir -p ${D}${bindir} | ||
23 | install -m 0755 ${S}/mklogfs ${D}${bindir}/mklogfs | ||
24 | } | ||
25 | |||
26 | BBCLASSEXTEND = "native nativesdk" | ||