diff options
author | Yong, Jonathan <jonathan.yong@intel.com> | 2017-04-06 08:41:29 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-04-18 14:21:37 +0200 |
commit | eb97a736f339c70a102cc07871be7da3b711b68c (patch) | |
tree | 8610441a1f9d5007f2d2e175d8e5c1a8716725fa | |
parent | 2cdea6c5bb09aa90184c17c9157f4fed0e10b3c2 (diff) | |
download | meta-openembedded-eb97a736f339c70a102cc07871be7da3b711b68c.tar.gz |
f2fs-tools: Update to Version 1.8.0
Signed-off-by: Yong, Jonathan <jonathan.yong@intel.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/0002-Fix-mkfs-out-of-tree-builds.patch | 37 | ||||
-rw-r--r-- | meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.8.0.bb (renamed from meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.4.0.bb) | 5 |
2 files changed, 40 insertions, 2 deletions
diff --git a/meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/0002-Fix-mkfs-out-of-tree-builds.patch b/meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/0002-Fix-mkfs-out-of-tree-builds.patch new file mode 100644 index 000000000..9e561cb11 --- /dev/null +++ b/meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/0002-Fix-mkfs-out-of-tree-builds.patch | |||
@@ -0,0 +1,37 @@ | |||
1 | From 0731eefd389e01419f78a115e1363ed0c28cfd3a Mon Sep 17 00:00:00 2001 | ||
2 | From: "Yong, Jonathan" <jonathan.yong@intel.com> | ||
3 | Date: Thu, 30 Mar 2017 08:03:37 +0000 | ||
4 | Subject: [PATCH] Fix mkfs out of tree builds | ||
5 | |||
6 | Libraries are built in builddir, not srcdir, fix Makefile.am | ||
7 | accordingly. | ||
8 | |||
9 | Signed-off-by: Yong, Jonathan <jonathan.yong@intel.com> | ||
10 | Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> | ||
11 | |||
12 | The patch was imported from the f2fs-tools repo | ||
13 | (git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git) | ||
14 | commit ID 0731eefd389e01419f78a115e1363ed0c28cfd3a. | ||
15 | |||
16 | Upstream-Status: Accepted, expected to be included in 1.9.0. | ||
17 | |||
18 | Signed-off-by: Yong, Jonathan <jonathan.yong@intel.com> | ||
19 | |||
20 | --- | ||
21 | mkfs/Makefile.am | 2 +- | ||
22 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
23 | |||
24 | diff --git a/mkfs/Makefile.am b/mkfs/Makefile.am | ||
25 | index 162a0cf..0ea8b49 100644 | ||
26 | --- a/mkfs/Makefile.am | ||
27 | +++ b/mkfs/Makefile.am | ||
28 | @@ -10,5 +10,5 @@ lib_LTLIBRARIES = libf2fs_format.la | ||
29 | libf2fs_format_la_SOURCES = f2fs_format_main.c f2fs_format.c f2fs_format_utils.c | ||
30 | libf2fs_format_la_CFLAGS = -DWITH_BLKDISCARD | ||
31 | libf2fs_format_la_CPPFLAGS = -I$(top_srcdir)/include | ||
32 | -libf2fs_format_la_LDFLAGS = -luuid -L$(top_srcdir)/lib -lf2fs \ | ||
33 | +libf2fs_format_la_LDFLAGS = -luuid -L$(top_builddir)/lib -lf2fs \ | ||
34 | -version-info $(FMT_CURRENT):$(FMT_REVISION):$(FMT_AGE) | ||
35 | -- | ||
36 | 2.10.2 | ||
37 | |||
diff --git a/meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.4.0.bb b/meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.8.0.bb index 1a558e715..691cb6ea0 100644 --- a/meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.4.0.bb +++ b/meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.8.0.bb | |||
@@ -7,9 +7,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=362b4b2594cd362b874a97718faa51d3" | |||
7 | # to provide libuuid | 7 | # to provide libuuid |
8 | DEPENDS = "util-linux" | 8 | DEPENDS = "util-linux" |
9 | 9 | ||
10 | SRCREV = "baac4b4e6f41ceb02511da49dd3707674f3fea21" | 10 | SRCREV = "1e7aedf99b85d16f94d1d8ad2fcf846403bb2174" |
11 | SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git \ | 11 | SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git \ |
12 | file://0001-Remove-AC_CHECK_FILE-for-cross-compilation.patch" | 12 | file://0001-Remove-AC_CHECK_FILE-for-cross-compilation.patch \ |
13 | file://0002-Fix-mkfs-out-of-tree-builds.patch" | ||
13 | S = "${WORKDIR}/git" | 14 | S = "${WORKDIR}/git" |
14 | 15 | ||
15 | inherit pkgconfig autotools | 16 | inherit pkgconfig autotools |