All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] f2f2-tools 1.4.0 -> 1.8.0
@ 2017-03-28  4:01 Yong, Jonathan
  2017-03-28  4:02 ` [PATCH] f2fs-tools: Update to Version 1.8.0 Yong, Jonathan
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Yong, Jonathan @ 2017-03-28  4:01 UTC (permalink / raw)
  To: openembedded-core

Upgrade f2fs-tools, now supports encryption.

Yong, Jonathan (1):
  f2fs-tools: Update to Version 1.8.0

 .../0002-Fix-mkfs-out-of-tree-builds.patch         | 27 ++++++++++++++++++++++
 .../{f2fs-tools_1.4.0.bb => f2fs-tools_1.8.0.bb}   |  5 ++--
 2 files changed, 30 insertions(+), 2 deletions(-)
 create mode 100644 meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/0002-Fix-mkfs-out-of-tree-builds.patch
 rename meta-filesystems/recipes-utils/f2fs-tools/{f2fs-tools_1.4.0.bb => f2fs-tools_1.8.0.bb} (81%)

-- 
2.10.2



^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH] f2fs-tools: Update to Version 1.8.0
  2017-03-28  4:01 [PATCH] f2f2-tools 1.4.0 -> 1.8.0 Yong, Jonathan
@ 2017-03-28  4:02 ` Yong, Jonathan
  2017-03-28  4:02 ` Yong, Jonathan
  2017-03-28  4:32 ` ✗ patchtest: failure for " Patchwork
  2 siblings, 0 replies; 9+ messages in thread
From: Yong, Jonathan @ 2017-03-28  4:02 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Yong, Jonathan <jonathan.yong@intel.com>
---
 .../0002-Fix-mkfs-out-of-tree-builds.patch         | 27 ++++++++++++++++++++++
 .../{f2fs-tools_1.4.0.bb => f2fs-tools_1.8.0.bb}   |  5 ++--
 2 files changed, 30 insertions(+), 2 deletions(-)
 create mode 100644 meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/0002-Fix-mkfs-out-of-tree-builds.patch
 rename meta-filesystems/recipes-utils/f2fs-tools/{f2fs-tools_1.4.0.bb => f2fs-tools_1.8.0.bb} (81%)

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 0000000..3aadf3c
--- /dev/null
+++ b/meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/0002-Fix-mkfs-out-of-tree-builds.patch
@@ -0,0 +1,27 @@
+From 1d4f6b6a945eabb364a2035d5ef0b69f68a87f74 Mon Sep 17 00:00:00 2001
+From: "Yong, Jonathan" <jonathan.yong@intel.com>
+Date: Mon, 27 Mar 2017 08:34:06 +0000
+Subject: [PATCH] Fix mkfs out of tree builds
+
+Libraries are built in builddir, not srcdir, fix Makefile.am
+accordingly.
+
+Signed-off-by: Yong, Jonathan <jonathan.yong@intel.com>
+---
+ mkfs/Makefile.am | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/mkfs/Makefile.am b/mkfs/Makefile.am
+index 8b4c16c..ae211b2 100644
+--- a/mkfs/Makefile.am
++++ b/mkfs/Makefile.am
+@@ -10,5 +10,5 @@ lib_LTLIBRARIES = libf2fs_format.la
+ libf2fs_format_la_SOURCES = f2fs_format_main.c f2fs_format.c f2fs_format_utils.c
+ libf2fs_format_la_CFLAGS = -DWITH_BLKDISCARD
+ libf2fs_format_la_CPPFLAGS = -I$(top_srcdir)/include
+-libf2fs_format_la_LDFLAGS = -luuid -L$(top_srcdir)/lib -lf2fs \
++libf2fs_format_la_LDFLAGS = -luuid -L$(top_builddir)/lib -lf2fs \
+ 	-version-info $(FMT_CURRENT):$(FMT_REVISION):$(FMT_AGE)
+-- 
+2.10.2
+
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
similarity index 81%
rename from meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.4.0.bb
rename to meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.8.0.bb
index 1a558e7..691cb6e 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"
 # to provide libuuid
 DEPENDS = "util-linux"
 
-SRCREV = "baac4b4e6f41ceb02511da49dd3707674f3fea21"
+SRCREV = "1e7aedf99b85d16f94d1d8ad2fcf846403bb2174"
 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git \
-    file://0001-Remove-AC_CHECK_FILE-for-cross-compilation.patch"
+    file://0001-Remove-AC_CHECK_FILE-for-cross-compilation.patch \
+    file://0002-Fix-mkfs-out-of-tree-builds.patch"
 S = "${WORKDIR}/git"
 
 inherit pkgconfig autotools
-- 
2.10.2



^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH] f2fs-tools: Update to Version 1.8.0
  2017-03-28  4:01 [PATCH] f2f2-tools 1.4.0 -> 1.8.0 Yong, Jonathan
  2017-03-28  4:02 ` [PATCH] f2fs-tools: Update to Version 1.8.0 Yong, Jonathan
@ 2017-03-28  4:02 ` Yong, Jonathan
  2017-03-28  9:43   ` Burton, Ross
  2017-03-28 18:12   ` Khem Raj
  2017-03-28  4:32 ` ✗ patchtest: failure for " Patchwork
  2 siblings, 2 replies; 9+ messages in thread
From: Yong, Jonathan @ 2017-03-28  4:02 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Yong, Jonathan <jonathan.yong@intel.com>
---
 .../0002-Fix-mkfs-out-of-tree-builds.patch         | 27 ++++++++++++++++++++++
 .../{f2fs-tools_1.4.0.bb => f2fs-tools_1.8.0.bb}   |  5 ++--
 2 files changed, 30 insertions(+), 2 deletions(-)
 create mode 100644 meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/0002-Fix-mkfs-out-of-tree-builds.patch
 rename meta-filesystems/recipes-utils/f2fs-tools/{f2fs-tools_1.4.0.bb => f2fs-tools_1.8.0.bb} (81%)

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 0000000..3aadf3c
--- /dev/null
+++ b/meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/0002-Fix-mkfs-out-of-tree-builds.patch
@@ -0,0 +1,27 @@
+From 1d4f6b6a945eabb364a2035d5ef0b69f68a87f74 Mon Sep 17 00:00:00 2001
+From: "Yong, Jonathan" <jonathan.yong@intel.com>
+Date: Mon, 27 Mar 2017 08:34:06 +0000
+Subject: [PATCH] Fix mkfs out of tree builds
+
+Libraries are built in builddir, not srcdir, fix Makefile.am
+accordingly.
+
+Signed-off-by: Yong, Jonathan <jonathan.yong@intel.com>
+---
+ mkfs/Makefile.am | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/mkfs/Makefile.am b/mkfs/Makefile.am
+index 8b4c16c..ae211b2 100644
+--- a/mkfs/Makefile.am
++++ b/mkfs/Makefile.am
+@@ -10,5 +10,5 @@ lib_LTLIBRARIES = libf2fs_format.la
+ libf2fs_format_la_SOURCES = f2fs_format_main.c f2fs_format.c f2fs_format_utils.c
+ libf2fs_format_la_CFLAGS = -DWITH_BLKDISCARD
+ libf2fs_format_la_CPPFLAGS = -I$(top_srcdir)/include
+-libf2fs_format_la_LDFLAGS = -luuid -L$(top_srcdir)/lib -lf2fs \
++libf2fs_format_la_LDFLAGS = -luuid -L$(top_builddir)/lib -lf2fs \
+ 	-version-info $(FMT_CURRENT):$(FMT_REVISION):$(FMT_AGE)
+-- 
+2.10.2
+
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
similarity index 81%
rename from meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.4.0.bb
rename to meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.8.0.bb
index 1a558e7..691cb6e 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"
 # to provide libuuid
 DEPENDS = "util-linux"
 
-SRCREV = "baac4b4e6f41ceb02511da49dd3707674f3fea21"
+SRCREV = "1e7aedf99b85d16f94d1d8ad2fcf846403bb2174"
 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git \
-    file://0001-Remove-AC_CHECK_FILE-for-cross-compilation.patch"
+    file://0001-Remove-AC_CHECK_FILE-for-cross-compilation.patch \
+    file://0002-Fix-mkfs-out-of-tree-builds.patch"
 S = "${WORKDIR}/git"
 
 inherit pkgconfig autotools
-- 
2.10.2



^ permalink raw reply related	[flat|nested] 9+ messages in thread

* ✗ patchtest: failure for f2fs-tools: Update to Version 1.8.0
  2017-03-28  4:01 [PATCH] f2f2-tools 1.4.0 -> 1.8.0 Yong, Jonathan
  2017-03-28  4:02 ` [PATCH] f2fs-tools: Update to Version 1.8.0 Yong, Jonathan
  2017-03-28  4:02 ` Yong, Jonathan
@ 2017-03-28  4:32 ` Patchwork
  2 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2017-03-28  4:32 UTC (permalink / raw)
  To: Yong, Jonathan; +Cc: openembedded-core

== Series Details ==

Series: f2fs-tools: Update to Version 1.8.0
Revision: 1
URL   : https://patchwork.openembedded.org/series/6013/
State : failure

== Summary ==


Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:



* Issue             Added patch file is missing Upstream-Status in the header [test_upstream_status_presence] 
  Suggested fix    Add Upstream-Status: <status> to the header of meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/0002-Fix-mkfs-out-of-tree-builds.patch (possible values: Pending, Submitted, Accepted, Backport, Denied, Inappropriate)

* Issue             Series does not apply on top of target branch [test_series_merge_on_head] 
  Suggested fix    Rebase your series on top of targeted branch
  Targeted branch  master (currently at 9c948d3de0)

* Issue             Series sent to the wrong mailing list [test_target_mailing_list] 
  Suggested fix    Send the series again to the correct mailing list (ML)
  Suggested ML     openembedded-devel@lists.openembedded.org [http://git.openembedded.org/meta-openembedded/]



If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).

---
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite:     http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] f2fs-tools: Update to Version 1.8.0
  2017-03-28  4:02 ` Yong, Jonathan
@ 2017-03-28  9:43   ` Burton, Ross
  2017-03-28 18:12   ` Khem Raj
  1 sibling, 0 replies; 9+ messages in thread
From: Burton, Ross @ 2017-03-28  9:43 UTC (permalink / raw)
  To: Yong, Jonathan; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 3513 bytes --]

This should go to openembedded-devel@lists.openembedded.org, as per the
README in meta-filesystems.

Ross

On 28 March 2017 at 05:02, Yong, Jonathan <jonathan.yong@intel.com> wrote:

> Signed-off-by: Yong, Jonathan <jonathan.yong@intel.com>
> ---
>  .../0002-Fix-mkfs-out-of-tree-builds.patch         | 27
> ++++++++++++++++++++++
>  .../{f2fs-tools_1.4.0.bb => f2fs-tools_1.8.0.bb}   |  5 ++--
>  2 files changed, 30 insertions(+), 2 deletions(-)
>  create mode 100644 meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/
> 0002-Fix-mkfs-out-of-tree-builds.patch
>  rename meta-filesystems/recipes-utils/f2fs-tools/{f2fs-tools_1.4.0.bb =>
> f2fs-tools_1.8.0.bb} (81%)
>
> 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 0000000..3aadf3c
> --- /dev/null
> +++ b/meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/
> 0002-Fix-mkfs-out-of-tree-builds.patch
> @@ -0,0 +1,27 @@
> +From 1d4f6b6a945eabb364a2035d5ef0b69f68a87f74 Mon Sep 17 00:00:00 2001
> +From: "Yong, Jonathan" <jonathan.yong@intel.com>
> +Date: Mon, 27 Mar 2017 08:34:06 +0000
> +Subject: [PATCH] Fix mkfs out of tree builds
> +
> +Libraries are built in builddir, not srcdir, fix Makefile.am
> +accordingly.
> +
> +Signed-off-by: Yong, Jonathan <jonathan.yong@intel.com>
> +---
> + mkfs/Makefile.am | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/mkfs/Makefile.am b/mkfs/Makefile.am
> +index 8b4c16c..ae211b2 100644
> +--- a/mkfs/Makefile.am
> ++++ b/mkfs/Makefile.am
> +@@ -10,5 +10,5 @@ lib_LTLIBRARIES = libf2fs_format.la
> + libf2fs_format_la_SOURCES = f2fs_format_main.c f2fs_format.c
> f2fs_format_utils.c
> + libf2fs_format_la_CFLAGS = -DWITH_BLKDISCARD
> + libf2fs_format_la_CPPFLAGS = -I$(top_srcdir)/include
> +-libf2fs_format_la_LDFLAGS = -luuid -L$(top_srcdir)/lib -lf2fs \
> ++libf2fs_format_la_LDFLAGS = -luuid -L$(top_builddir)/lib -lf2fs \
> +       -version-info $(FMT_CURRENT):$(FMT_REVISION):$(FMT_AGE)
> +--
> +2.10.2
> +
> 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
> similarity index 81%
> rename from meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.4.0.bb
> rename to meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.8.0.bb
> index 1a558e7..691cb6e 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"
>  # to provide libuuid
>  DEPENDS = "util-linux"
>
> -SRCREV = "baac4b4e6f41ceb02511da49dd3707674f3fea21"
> +SRCREV = "1e7aedf99b85d16f94d1d8ad2fcf846403bb2174"
>  SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-
> tools.git \
> -    file://0001-Remove-AC_CHECK_FILE-for-cross-compilation.patch"
> +    file://0001-Remove-AC_CHECK_FILE-for-cross-compilation.patch \
> +    file://0002-Fix-mkfs-out-of-tree-builds.patch"
>  S = "${WORKDIR}/git"
>
>  inherit pkgconfig autotools
> --
> 2.10.2
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>

[-- Attachment #2: Type: text/html, Size: 5637 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] f2fs-tools: Update to Version 1.8.0
  2017-03-28  4:02 ` Yong, Jonathan
  2017-03-28  9:43   ` Burton, Ross
@ 2017-03-28 18:12   ` Khem Raj
  1 sibling, 0 replies; 9+ messages in thread
From: Khem Raj @ 2017-03-28 18:12 UTC (permalink / raw)
  To: openembedded-core


[-- Attachment #1.1: Type: text/plain, Size: 3168 bytes --]



On 3/27/17 9:02 PM, Yong, Jonathan wrote:
> Signed-off-by: Yong, Jonathan <jonathan.yong@intel.com>
> ---
>  .../0002-Fix-mkfs-out-of-tree-builds.patch         | 27 ++++++++++++++++++++++
>  .../{f2fs-tools_1.4.0.bb => f2fs-tools_1.8.0.bb}   |  5 ++--
>  2 files changed, 30 insertions(+), 2 deletions(-)
>  create mode 100644 meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/0002-Fix-mkfs-out-of-tree-builds.patch
>  rename meta-filesystems/recipes-utils/f2fs-tools/{f2fs-tools_1.4.0.bb => f2fs-tools_1.8.0.bb} (81%)
> 
> 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 0000000..3aadf3c
> --- /dev/null
> +++ b/meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/0002-Fix-mkfs-out-of-tree-builds.patch
> @@ -0,0 +1,27 @@
> +From 1d4f6b6a945eabb364a2035d5ef0b69f68a87f74 Mon Sep 17 00:00:00 2001
> +From: "Yong, Jonathan" <jonathan.yong@intel.com>
> +Date: Mon, 27 Mar 2017 08:34:06 +0000
> +Subject: [PATCH] Fix mkfs out of tree builds
> +
> +Libraries are built in builddir, not srcdir, fix Makefile.am
> +accordingly.

This patch should also be upstreamed into f2fs

> +
> +Signed-off-by: Yong, Jonathan <jonathan.yong@intel.com>
> +---
> + mkfs/Makefile.am | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/mkfs/Makefile.am b/mkfs/Makefile.am
> +index 8b4c16c..ae211b2 100644
> +--- a/mkfs/Makefile.am
> ++++ b/mkfs/Makefile.am
> +@@ -10,5 +10,5 @@ lib_LTLIBRARIES = libf2fs_format.la
> + libf2fs_format_la_SOURCES = f2fs_format_main.c f2fs_format.c f2fs_format_utils.c
> + libf2fs_format_la_CFLAGS = -DWITH_BLKDISCARD
> + libf2fs_format_la_CPPFLAGS = -I$(top_srcdir)/include
> +-libf2fs_format_la_LDFLAGS = -luuid -L$(top_srcdir)/lib -lf2fs \
> ++libf2fs_format_la_LDFLAGS = -luuid -L$(top_builddir)/lib -lf2fs \
> + 	-version-info $(FMT_CURRENT):$(FMT_REVISION):$(FMT_AGE)
> +-- 
> +2.10.2
> +
> 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
> similarity index 81%
> rename from meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.4.0.bb
> rename to meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.8.0.bb
> index 1a558e7..691cb6e 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"
>  # to provide libuuid
>  DEPENDS = "util-linux"
>  
> -SRCREV = "baac4b4e6f41ceb02511da49dd3707674f3fea21"
> +SRCREV = "1e7aedf99b85d16f94d1d8ad2fcf846403bb2174"
>  SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git \
> -    file://0001-Remove-AC_CHECK_FILE-for-cross-compilation.patch"
> +    file://0001-Remove-AC_CHECK_FILE-for-cross-compilation.patch \
> +    file://0002-Fix-mkfs-out-of-tree-builds.patch"
>  S = "${WORKDIR}/git"
>  
>  inherit pkgconfig autotools
> 


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 211 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] f2fs-tools: Update to Version 1.8.0
  2017-04-06  8:19   ` Martin Jansa
@ 2017-04-10  1:05     ` Yong, Jonathan
  0 siblings, 0 replies; 9+ messages in thread
From: Yong, Jonathan @ 2017-04-10  1:05 UTC (permalink / raw)
  To: openembedded-devel

On 04/06/2017 16:19, Martin Jansa wrote:
>> mkfs patch is already upstreamed.
> 
> Then say this in Upstream-Status: field inside the .patch file.
> 
> On Thu, Apr 6, 2017 at 10:13 AM, Yong, Jonathan <jonathan.yong@intel.com>
> wrote:
> 

Done, v2 patch sent.




^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] f2fs-tools: Update to Version 1.8.0
  2017-04-06  8:13 ` [PATCH] f2fs-tools: Update to Version 1.8.0 Yong, Jonathan
@ 2017-04-06  8:19   ` Martin Jansa
  2017-04-10  1:05     ` Yong, Jonathan
  0 siblings, 1 reply; 9+ messages in thread
From: Martin Jansa @ 2017-04-06  8:19 UTC (permalink / raw)
  To: Yong, Jonathan; +Cc: openembedded-devel

> mkfs patch is already upstreamed.

Then say this in Upstream-Status: field inside the .patch file.

On Thu, Apr 6, 2017 at 10:13 AM, Yong, Jonathan <jonathan.yong@intel.com>
wrote:

> mkfs patch is already upstreamed.
> Signed-off-by: Yong, Jonathan <jonathan.yong@intel.com>
> ---
>  .../0002-Fix-mkfs-out-of-tree-builds.patch         | 28
> ++++++++++++++++++++++
>  .../{f2fs-tools_1.4.0.bb => f2fs-tools_1.8.0.bb}   |  5 ++--
>  2 files changed, 31 insertions(+), 2 deletions(-)
>  create mode 100644 meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/
> 0002-Fix-mkfs-out-of-tree-builds.patch
>  rename meta-filesystems/recipes-utils/f2fs-tools/{f2fs-tools_1.4.0.bb =>
> f2fs-tools_1.8.0.bb} (81%)
>
> 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 0000000..39453f3
> --- /dev/null
> +++ b/meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/
> 0002-Fix-mkfs-out-of-tree-builds.patch
> @@ -0,0 +1,28 @@
> +From 0731eefd389e01419f78a115e1363ed0c28cfd3a Mon Sep 17 00:00:00 2001
> +From: "Yong, Jonathan" <jonathan.yong@intel.com>
> +Date: Thu, 30 Mar 2017 08:03:37 +0000
> +Subject: [PATCH] Fix mkfs out of tree builds
> +
> +Libraries are built in builddir, not srcdir, fix Makefile.am
> +accordingly.
> +
> +Signed-off-by: Yong, Jonathan <jonathan.yong@intel.com>
> +Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
> +---
> + mkfs/Makefile.am | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/mkfs/Makefile.am b/mkfs/Makefile.am
> +index 162a0cf..0ea8b49 100644
> +--- a/mkfs/Makefile.am
> ++++ b/mkfs/Makefile.am
> +@@ -10,5 +10,5 @@ lib_LTLIBRARIES = libf2fs_format.la
> + libf2fs_format_la_SOURCES = f2fs_format_main.c f2fs_format.c
> f2fs_format_utils.c
> + libf2fs_format_la_CFLAGS = -DWITH_BLKDISCARD
> + libf2fs_format_la_CPPFLAGS = -I$(top_srcdir)/include
> +-libf2fs_format_la_LDFLAGS = -luuid -L$(top_srcdir)/lib -lf2fs \
> ++libf2fs_format_la_LDFLAGS = -luuid -L$(top_builddir)/lib -lf2fs \
> +       -version-info $(FMT_CURRENT):$(FMT_REVISION):$(FMT_AGE)
> +--
> +2.10.2
> +
> 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
> similarity index 81%
> rename from meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.4.0.bb
> rename to meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.8.0.bb
> index 1a558e7..691cb6e 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"
>  # to provide libuuid
>  DEPENDS = "util-linux"
>
> -SRCREV = "baac4b4e6f41ceb02511da49dd3707674f3fea21"
> +SRCREV = "1e7aedf99b85d16f94d1d8ad2fcf846403bb2174"
>  SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-
> tools.git \
> -    file://0001-Remove-AC_CHECK_FILE-for-cross-compilation.patch"
> +    file://0001-Remove-AC_CHECK_FILE-for-cross-compilation.patch \
> +    file://0002-Fix-mkfs-out-of-tree-builds.patch"
>  S = "${WORKDIR}/git"
>
>  inherit pkgconfig autotools
> --
> 2.10.2
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH] f2fs-tools: Update to Version 1.8.0
  2017-04-06  8:13 [PATCH] f2f2-tools 1.4.0 -> 1.8.0 Yong, Jonathan
@ 2017-04-06  8:13 ` Yong, Jonathan
  2017-04-06  8:19   ` Martin Jansa
  0 siblings, 1 reply; 9+ messages in thread
From: Yong, Jonathan @ 2017-04-06  8:13 UTC (permalink / raw)
  To: openembedded-devel

mkfs patch is already upstreamed.
Signed-off-by: Yong, Jonathan <jonathan.yong@intel.com>
---
 .../0002-Fix-mkfs-out-of-tree-builds.patch         | 28 ++++++++++++++++++++++
 .../{f2fs-tools_1.4.0.bb => f2fs-tools_1.8.0.bb}   |  5 ++--
 2 files changed, 31 insertions(+), 2 deletions(-)
 create mode 100644 meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/0002-Fix-mkfs-out-of-tree-builds.patch
 rename meta-filesystems/recipes-utils/f2fs-tools/{f2fs-tools_1.4.0.bb => f2fs-tools_1.8.0.bb} (81%)

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 0000000..39453f3
--- /dev/null
+++ b/meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools/0002-Fix-mkfs-out-of-tree-builds.patch
@@ -0,0 +1,28 @@
+From 0731eefd389e01419f78a115e1363ed0c28cfd3a Mon Sep 17 00:00:00 2001
+From: "Yong, Jonathan" <jonathan.yong@intel.com>
+Date: Thu, 30 Mar 2017 08:03:37 +0000
+Subject: [PATCH] Fix mkfs out of tree builds
+
+Libraries are built in builddir, not srcdir, fix Makefile.am
+accordingly.
+
+Signed-off-by: Yong, Jonathan <jonathan.yong@intel.com>
+Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
+---
+ mkfs/Makefile.am | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/mkfs/Makefile.am b/mkfs/Makefile.am
+index 162a0cf..0ea8b49 100644
+--- a/mkfs/Makefile.am
++++ b/mkfs/Makefile.am
+@@ -10,5 +10,5 @@ lib_LTLIBRARIES = libf2fs_format.la
+ libf2fs_format_la_SOURCES = f2fs_format_main.c f2fs_format.c f2fs_format_utils.c
+ libf2fs_format_la_CFLAGS = -DWITH_BLKDISCARD
+ libf2fs_format_la_CPPFLAGS = -I$(top_srcdir)/include
+-libf2fs_format_la_LDFLAGS = -luuid -L$(top_srcdir)/lib -lf2fs \
++libf2fs_format_la_LDFLAGS = -luuid -L$(top_builddir)/lib -lf2fs \
+ 	-version-info $(FMT_CURRENT):$(FMT_REVISION):$(FMT_AGE)
+-- 
+2.10.2
+
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
similarity index 81%
rename from meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.4.0.bb
rename to meta-filesystems/recipes-utils/f2fs-tools/f2fs-tools_1.8.0.bb
index 1a558e7..691cb6e 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"
 # to provide libuuid
 DEPENDS = "util-linux"
 
-SRCREV = "baac4b4e6f41ceb02511da49dd3707674f3fea21"
+SRCREV = "1e7aedf99b85d16f94d1d8ad2fcf846403bb2174"
 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git \
-    file://0001-Remove-AC_CHECK_FILE-for-cross-compilation.patch"
+    file://0001-Remove-AC_CHECK_FILE-for-cross-compilation.patch \
+    file://0002-Fix-mkfs-out-of-tree-builds.patch"
 S = "${WORKDIR}/git"
 
 inherit pkgconfig autotools
-- 
2.10.2



^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2017-04-10  1:05 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-28  4:01 [PATCH] f2f2-tools 1.4.0 -> 1.8.0 Yong, Jonathan
2017-03-28  4:02 ` [PATCH] f2fs-tools: Update to Version 1.8.0 Yong, Jonathan
2017-03-28  4:02 ` Yong, Jonathan
2017-03-28  9:43   ` Burton, Ross
2017-03-28 18:12   ` Khem Raj
2017-03-28  4:32 ` ✗ patchtest: failure for " Patchwork
2017-04-06  8:13 [PATCH] f2f2-tools 1.4.0 -> 1.8.0 Yong, Jonathan
2017-04-06  8:13 ` [PATCH] f2fs-tools: Update to Version 1.8.0 Yong, Jonathan
2017-04-06  8:19   ` Martin Jansa
2017-04-10  1:05     ` Yong, Jonathan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.