All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] babletrace2: make manpages multilib identical
@ 2020-03-11 22:22 Jeremy A. Puhlman
  2020-03-11 22:22 ` [PATCH 2/2] glib-2.0: Correct multilib conflict Jeremy A. Puhlman
  2020-03-12 14:25 ` [PATCH 1/2] babletrace2: make manpages multilib identical Jonathan Rajotte-Julien
  0 siblings, 2 replies; 12+ messages in thread
From: Jeremy A. Puhlman @ 2020-03-11 22:22 UTC (permalink / raw)
  To: openembedded-core

From: Jeremy Puhlman <jpuhlman@mvista.com>

Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
---
 .../0001-Make-manpages-multilib-identical.patch    | 28 ++++++++++++++++++++++
 meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb     |  1 +
 2 files changed, 29 insertions(+)
 create mode 100644 meta/recipes-kernel/lttng/babeltrace2/0001-Make-manpages-multilib-identical.patch

diff --git a/meta/recipes-kernel/lttng/babeltrace2/0001-Make-manpages-multilib-identical.patch b/meta/recipes-kernel/lttng/babeltrace2/0001-Make-manpages-multilib-identical.patch
new file mode 100644
index 0000000000..2401b176e6
--- /dev/null
+++ b/meta/recipes-kernel/lttng/babeltrace2/0001-Make-manpages-multilib-identical.patch
@@ -0,0 +1,28 @@
+From 56986190e4b0c10945ce6aaa7ca10d6bd8a26a39 Mon Sep 17 00:00:00 2001
+From: Jeremy Puhlman <jpuhlman@mvista.com>
+Date: Mon, 9 Mar 2020 21:10:35 +0000
+Subject: [PATCH] Make manpages multilib identical
+
+Upstream-Status: Pending
+Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
+---
+ doc/man/asciidoc-attrs.conf.in | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/doc/man/asciidoc-attrs.conf.in b/doc/man/asciidoc-attrs.conf.in
+index ad1183f1..e11c7031 100644
+--- a/doc/man/asciidoc-attrs.conf.in
++++ b/doc/man/asciidoc-attrs.conf.in
+@@ -1,7 +1,7 @@
+ [attributes]
+ # default values
+-system_plugin_path="@LIBDIR@/babeltrace2/plugins"
+-system_plugin_provider_path="@LIBDIR@/babeltrace2/plugin-providers"
++system_plugin_path="@prefix@/lib*/babeltrace2/plugins"
++system_plugin_provider_path="@prefix@/lib*/babeltrace2/plugin-providers"
+ babeltrace_version="@PACKAGE_VERSION@"
+ enable_debug_info="@ENABLE_DEBUG_INFO_VAL@"
+ defrdport=5344
+-- 
+2.24.1
+
diff --git a/meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb b/meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb
index 16953d6807..61bc7f5e6b 100644
--- a/meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb
+++ b/meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb
@@ -10,6 +10,7 @@ DEPENDS = "glib-2.0 util-linux popt bison-native flex-native"
 SRC_URI = "git://git.linuxfoundation.org/diamon/babeltrace.git;branch=stable-2.0 \
 	   file://run-ptest \
 	   file://0001-tests-do-not-run-test-applications-from-.libs.patch \
+           file://0001-Make-manpages-multilib-identical.patch \
 	  "
 SRCREV = "06df58f89ee51b1a2c6a2c187ec3f15691633910"
 UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>2(\.\d+)+)$"
-- 
2.13.3



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

* [PATCH 2/2] glib-2.0: Correct multilib conflict
  2020-03-11 22:22 [PATCH 1/2] babletrace2: make manpages multilib identical Jeremy A. Puhlman
@ 2020-03-11 22:22 ` Jeremy A. Puhlman
  2020-03-17  3:30   ` 回复: " Chen, Qi
  2020-03-12 14:25 ` [PATCH 1/2] babletrace2: make manpages multilib identical Jonathan Rajotte-Julien
  1 sibling, 1 reply; 12+ messages in thread
From: Jeremy A. Puhlman @ 2020-03-11 22:22 UTC (permalink / raw)
  To: openembedded-core

From: Jeremy Puhlman <jpuhlman@mvista.com>

Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
---
 meta/recipes-core/glib-2.0/glib.inc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc
index 23c347dbf7..edecc51fdb 100644
--- a/meta/recipes-core/glib-2.0/glib.inc
+++ b/meta/recipes-core/glib-2.0/glib.inc
@@ -128,6 +128,9 @@ do_install_append_class-target () {
 			rm ${D}${datadir}/installed-tests/glib/gdbus-serialization.test
 		fi
 	fi
+        if test "x${MLPREFIX}" != "x"; then
+                mv ${D}${datadir}/installed-tests/glib/static-link.test ${D}${datadir}/installed-tests/glib/${MLPREFIX}static-link.test
+        fi
 }
 
 # As we do not build python3 for windows, makes no sense to ship the script that's using it
-- 
2.13.3



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

* Re: [PATCH 1/2] babletrace2: make manpages multilib identical
  2020-03-11 22:22 [PATCH 1/2] babletrace2: make manpages multilib identical Jeremy A. Puhlman
  2020-03-11 22:22 ` [PATCH 2/2] glib-2.0: Correct multilib conflict Jeremy A. Puhlman
@ 2020-03-12 14:25 ` Jonathan Rajotte-Julien
  2020-03-12 14:36   ` Jeremy A. Puhlman
  2020-03-13  7:22   ` Richard Purdie
  1 sibling, 2 replies; 12+ messages in thread
From: Jonathan Rajotte-Julien @ 2020-03-12 14:25 UTC (permalink / raw)
  To: Jeremy A. Puhlman; +Cc: openembedded-core

Hi

Is this something upstream (lttng-dev mailing list) should be interested in?

Cheers

On Wed, Mar 11, 2020 at 03:22:48PM -0700, Jeremy A. Puhlman wrote:
> From: Jeremy Puhlman <jpuhlman@mvista.com>
> 
> Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
> ---
>  .../0001-Make-manpages-multilib-identical.patch    | 28 ++++++++++++++++++++++
>  meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb     |  1 +
>  2 files changed, 29 insertions(+)
>  create mode 100644 meta/recipes-kernel/lttng/babeltrace2/0001-Make-manpages-multilib-identical.patch
> 
> diff --git a/meta/recipes-kernel/lttng/babeltrace2/0001-Make-manpages-multilib-identical.patch b/meta/recipes-kernel/lttng/babeltrace2/0001-Make-manpages-multilib-identical.patch
> new file mode 100644
> index 0000000000..2401b176e6
> --- /dev/null
> +++ b/meta/recipes-kernel/lttng/babeltrace2/0001-Make-manpages-multilib-identical.patch
> @@ -0,0 +1,28 @@
> +From 56986190e4b0c10945ce6aaa7ca10d6bd8a26a39 Mon Sep 17 00:00:00 2001
> +From: Jeremy Puhlman <jpuhlman@mvista.com>
> +Date: Mon, 9 Mar 2020 21:10:35 +0000
> +Subject: [PATCH] Make manpages multilib identical
> +
> +Upstream-Status: Pending
> +Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
> +---
> + doc/man/asciidoc-attrs.conf.in | 4 ++--
> + 1 file changed, 2 insertions(+), 2 deletions(-)
> +
> +diff --git a/doc/man/asciidoc-attrs.conf.in b/doc/man/asciidoc-attrs.conf.in
> +index ad1183f1..e11c7031 100644
> +--- a/doc/man/asciidoc-attrs.conf.in
> ++++ b/doc/man/asciidoc-attrs.conf.in
> +@@ -1,7 +1,7 @@
> + [attributes]
> + # default values
> +-system_plugin_path="@LIBDIR@/babeltrace2/plugins"
> +-system_plugin_provider_path="@LIBDIR@/babeltrace2/plugin-providers"
> ++system_plugin_path="@prefix@/lib*/babeltrace2/plugins"
> ++system_plugin_provider_path="@prefix@/lib*/babeltrace2/plugin-providers"
> + babeltrace_version="@PACKAGE_VERSION@"
> + enable_debug_info="@ENABLE_DEBUG_INFO_VAL@"
> + defrdport=5344
> +-- 
> +2.24.1
> +
> diff --git a/meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb b/meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb
> index 16953d6807..61bc7f5e6b 100644
> --- a/meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb
> +++ b/meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb
> @@ -10,6 +10,7 @@ DEPENDS = "glib-2.0 util-linux popt bison-native flex-native"
>  SRC_URI = "git://git.linuxfoundation.org/diamon/babeltrace.git;branch=stable-2.0 \
>  	   file://run-ptest \
>  	   file://0001-tests-do-not-run-test-applications-from-.libs.patch \
> +           file://0001-Make-manpages-multilib-identical.patch \
>  	  "
>  SRCREV = "06df58f89ee51b1a2c6a2c187ec3f15691633910"
>  UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>2(\.\d+)+)$"
> -- 
> 2.13.3
> 
> -- 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core

-- 
Jonathan Rajotte-Julien
EfficiOS


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

* Re: [PATCH 1/2] babletrace2: make manpages multilib identical
  2020-03-12 14:25 ` [PATCH 1/2] babletrace2: make manpages multilib identical Jonathan Rajotte-Julien
@ 2020-03-12 14:36   ` Jeremy A. Puhlman
  2020-03-13  7:22   ` Richard Purdie
  1 sibling, 0 replies; 12+ messages in thread
From: Jeremy A. Puhlman @ 2020-03-12 14:36 UTC (permalink / raw)
  To: Jonathan Rajotte-Julien; +Cc: openembedded-core

Maybe. They may want it to be altered depending on their preference for 
how to express the system libdir. I have
pushed similar to other projects and gotten a mixed bag of responses.

I haven't tried to push it yet, but its in my queue.

On 3/12/2020 7:25 AM, Jonathan Rajotte-Julien wrote:
> Hi
>
> Is this something upstream (lttng-dev mailing list) should be interested in?
>
> Cheers
>
> On Wed, Mar 11, 2020 at 03:22:48PM -0700, Jeremy A. Puhlman wrote:
>> From: Jeremy Puhlman <jpuhlman@mvista.com>
>>
>> Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
>> ---
>>   .../0001-Make-manpages-multilib-identical.patch    | 28 ++++++++++++++++++++++
>>   meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb     |  1 +
>>   2 files changed, 29 insertions(+)
>>   create mode 100644 meta/recipes-kernel/lttng/babeltrace2/0001-Make-manpages-multilib-identical.patch
>>
>> diff --git a/meta/recipes-kernel/lttng/babeltrace2/0001-Make-manpages-multilib-identical.patch b/meta/recipes-kernel/lttng/babeltrace2/0001-Make-manpages-multilib-identical.patch
>> new file mode 100644
>> index 0000000000..2401b176e6
>> --- /dev/null
>> +++ b/meta/recipes-kernel/lttng/babeltrace2/0001-Make-manpages-multilib-identical.patch
>> @@ -0,0 +1,28 @@
>> +From 56986190e4b0c10945ce6aaa7ca10d6bd8a26a39 Mon Sep 17 00:00:00 2001
>> +From: Jeremy Puhlman <jpuhlman@mvista.com>
>> +Date: Mon, 9 Mar 2020 21:10:35 +0000
>> +Subject: [PATCH] Make manpages multilib identical
>> +
>> +Upstream-Status: Pending
>> +Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
>> +---
>> + doc/man/asciidoc-attrs.conf.in | 4 ++--
>> + 1 file changed, 2 insertions(+), 2 deletions(-)
>> +
>> +diff --git a/doc/man/asciidoc-attrs.conf.in b/doc/man/asciidoc-attrs.conf.in
>> +index ad1183f1..e11c7031 100644
>> +--- a/doc/man/asciidoc-attrs.conf.in
>> ++++ b/doc/man/asciidoc-attrs.conf.in
>> +@@ -1,7 +1,7 @@
>> + [attributes]
>> + # default values
>> +-system_plugin_path="@LIBDIR@/babeltrace2/plugins"
>> +-system_plugin_provider_path="@LIBDIR@/babeltrace2/plugin-providers"
>> ++system_plugin_path="@prefix@/lib*/babeltrace2/plugins"
>> ++system_plugin_provider_path="@prefix@/lib*/babeltrace2/plugin-providers"
>> + babeltrace_version="@PACKAGE_VERSION@"
>> + enable_debug_info="@ENABLE_DEBUG_INFO_VAL@"
>> + defrdport=5344
>> +--
>> +2.24.1
>> +
>> diff --git a/meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb b/meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb
>> index 16953d6807..61bc7f5e6b 100644
>> --- a/meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb
>> +++ b/meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb
>> @@ -10,6 +10,7 @@ DEPENDS = "glib-2.0 util-linux popt bison-native flex-native"
>>   SRC_URI = "git://git.linuxfoundation.org/diamon/babeltrace.git;branch=stable-2.0 \
>>   	   file://run-ptest \
>>   	   file://0001-tests-do-not-run-test-applications-from-.libs.patch \
>> +           file://0001-Make-manpages-multilib-identical.patch \
>>   	  "
>>   SRCREV = "06df58f89ee51b1a2c6a2c187ec3f15691633910"
>>   UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>2(\.\d+)+)$"
>> -- 
>> 2.13.3
>>
>> -- 
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core

-- 
Jeremy A. Puhlman
jpuhlman@mvista.com



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

* Re: [PATCH 1/2] babletrace2: make manpages multilib identical
  2020-03-12 14:25 ` [PATCH 1/2] babletrace2: make manpages multilib identical Jonathan Rajotte-Julien
  2020-03-12 14:36   ` Jeremy A. Puhlman
@ 2020-03-13  7:22   ` Richard Purdie
  2020-03-16 13:17     ` Jonathan Rajotte-Julien
  1 sibling, 1 reply; 12+ messages in thread
From: Richard Purdie @ 2020-03-13  7:22 UTC (permalink / raw)
  To: Jonathan Rajotte-Julien, Jeremy A. Puhlman; +Cc: openembedded-core

On Thu, 2020-03-12 at 10:25 -0400, Jonathan Rajotte-Julien wrote:
> Is this something upstream (lttng-dev mailing list) should be
> interested in?

Its a tough one as the man page is technically correct but the
references give us a challenge in packaging it. I can therefore
understand upstreams not accepting changes like this but if they were
open to some kind of tweak it does help us not have to have patches...

Cheers,

Richard

> Cheers
> 
> On Wed, Mar 11, 2020 at 03:22:48PM -0700, Jeremy A. Puhlman wrote:
> > From: Jeremy Puhlman <jpuhlman@mvista.com>
> > 
> > Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
> > ---
> >  .../0001-Make-manpages-multilib-identical.patch    | 28
> > ++++++++++++++++++++++
> >  meta/recipes-kernel/lttng/babeltrace2_2.0.1.bb     |  1 +
> >  2 files changed, 29 insertions(+)
> >  create mode 100644 meta/recipes-kernel/lttng/babeltrace2/0001-
> > Make-manpages-multilib-identical.patch
> > 
> > diff --git a/meta/recipes-kernel/lttng/babeltrace2/0001-Make-
> > manpages-multilib-identical.patch b/meta/recipes-
> > kernel/lttng/babeltrace2/0001-Make-manpages-multilib-
> > identical.patch
> > new file mode 100644
> > index 0000000000..2401b176e6
> > --- /dev/null
> > +++ b/meta/recipes-kernel/lttng/babeltrace2/0001-Make-manpages-
> > multilib-identical.patch
> > @@ -0,0 +1,28 @@
> > +From 56986190e4b0c10945ce6aaa7ca10d6bd8a26a39 Mon Sep 17 00:00:00
> > 2001
> > +From: Jeremy Puhlman <jpuhlman@mvista.com>
> > +Date: Mon, 9 Mar 2020 21:10:35 +0000
> > +Subject: [PATCH] Make manpages multilib identical
> > +
> > +Upstream-Status: Pending
> > +Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
> > +---
> > + doc/man/asciidoc-attrs.conf.in | 4 ++--
> > + 1 file changed, 2 insertions(+), 2 deletions(-)
> > +
> > +diff --git a/doc/man/asciidoc-attrs.conf.in b/doc/man/asciidoc-
> > attrs.conf.in
> > +index ad1183f1..e11c7031 100644
> > +--- a/doc/man/asciidoc-attrs.conf.in
> > ++++ b/doc/man/asciidoc-attrs.conf.in
> > +@@ -1,7 +1,7 @@
> > + [attributes]
> > + # default values
> > +-system_plugin_path="@LIBDIR@/babeltrace2/plugins"
> > +-system_plugin_provider_path="@LIBDIR@/babeltrace2/plugin-
> > providers"
> > ++system_plugin_path="@prefix@/lib*/babeltrace2/plugins"
> > ++system_plugin_provider_path="@prefix@/lib*/babeltrace2/plugin-
> > providers"
> > + babeltrace_version="@PACKAGE_VERSION@"
> > + enable_debug_info="@ENABLE_DEBUG_INFO_VAL@"
> > + defrdport=5344
> > +-- 
> > 



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

* Re: [PATCH 1/2] babletrace2: make manpages multilib identical
  2020-03-13  7:22   ` Richard Purdie
@ 2020-03-16 13:17     ` Jonathan Rajotte-Julien
  0 siblings, 0 replies; 12+ messages in thread
From: Jonathan Rajotte-Julien @ 2020-03-16 13:17 UTC (permalink / raw)
  To: Richard Purdie; +Cc: openembedded-core

On Fri, Mar 13, 2020 at 07:22:03AM +0000, Richard Purdie wrote:
> On Thu, 2020-03-12 at 10:25 -0400, Jonathan Rajotte-Julien wrote:
> > Is this something upstream (lttng-dev mailing list) should be
> > interested in?
> 
> Its a tough one as the man page is technically correct but the
> references give us a challenge in packaging it. I can therefore
> understand upstreams not accepting changes like this but if they were
> open to some kind of tweak it does help us not have to have patches...

Jeremy does plan to send us a version for upstream (bt2) someday, or at least
start the discussion on how to help yocto packaging on that end. We will see how
we can make everyone happy then.

Cheers

-- 
Jonathan Rajotte-Julien
EfficiOS


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

* 回复: [PATCH 2/2] glib-2.0: Correct multilib conflict
  2020-03-11 22:22 ` [PATCH 2/2] glib-2.0: Correct multilib conflict Jeremy A. Puhlman
@ 2020-03-17  3:30   ` Chen, Qi
  2020-03-17  4:02     ` Jeremy A. Puhlman
  0 siblings, 1 reply; 12+ messages in thread
From: Chen, Qi @ 2020-03-17  3:30 UTC (permalink / raw)
  To: Jeremy A. Puhlman, openembedded-core

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

This patch is causing regression in case of qemuarm64 multilib for me. The static-link.test file is not there, resulting the `mv' command failure. I've sent out a patch to fix this problem, but I don't know what's your environment. So please help review.

Regards,
Chen Qi
________________________________
发件人: openembedded-core-bounces@lists.openembedded.org <openembedded-core-bounces@lists.openembedded.org> 代表 Jeremy A. Puhlman <jpuhlman@mvista.com>
发送时间: 2020年3月12日 6:22
收件人: openembedded-core@lists.openembedded.org <openembedded-core@lists.openembedded.org>
主题: [OE-core] [PATCH 2/2] glib-2.0: Correct multilib conflict

From: Jeremy Puhlman <jpuhlman@mvista.com>

Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
---
 meta/recipes-core/glib-2.0/glib.inc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc
index 23c347dbf7..edecc51fdb 100644
--- a/meta/recipes-core/glib-2.0/glib.inc
+++ b/meta/recipes-core/glib-2.0/glib.inc
@@ -128,6 +128,9 @@ do_install_append_class-target () {
                         rm ${D}${datadir}/installed-tests/glib/gdbus-serialization.test
                 fi
         fi
+        if test "x${MLPREFIX}" != "x"; then
+                mv ${D}${datadir}/installed-tests/glib/static-link.test ${D}${datadir}/installed-tests/glib/${MLPREFIX}static-link.test
+        fi
 }

 # As we do not build python3 for windows, makes no sense to ship the script that's using it
--
2.13.3

--
_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core

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

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

* Re: 回复: [PATCH 2/2] glib-2.0: Correct multilib conflict
  2020-03-17  3:30   ` 回复: " Chen, Qi
@ 2020-03-17  4:02     ` Jeremy A. Puhlman
  2020-03-17  4:31       ` 回复: " Chen, Qi
  0 siblings, 1 reply; 12+ messages in thread
From: Jeremy A. Puhlman @ 2020-03-17  4:02 UTC (permalink / raw)
  To: Chen, Qi, openembedded-core

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

Just standard x86/i585. What are you using for your mulitlib. 
ilp32/aarch32/arm7?

require conf/multilib.conf
MULTILIBS = "multilib:lib32"
X86ARCH32 = "i586"
DEFAULTTUNE_virtclass-multilib-lib32 = "i586"
TARGET_ARCH_virtclass-multilib-lib32 = "i586"
TARGET_LD_ARCH_virtclass-multilib-lib32 = "-m elf_i386"
ALTBINDIR_SUFFIX_virtclass-multilib-lib32 = "32"

What does your -e look like for the recipe that fails?

On 3/16/2020 8:30 PM, Chen, Qi wrote:
> This patch is causing regression in case of qemuarm64 multilib for me. 
> The static-link.test file is not there, resulting the `mv' command 
> failure. I've sent out a patch to fix this problem, but I don't know 
> what's your environment. So please help review.
>
> Regards,
> Chen Qi
> ------------------------------------------------------------------------
> *发件人:* openembedded-core-bounces@lists.openembedded.org 
> <openembedded-core-bounces@lists.openembedded.org> 代表 Jeremy A. 
> Puhlman <jpuhlman@mvista.com>
> *发送时间:* 2020年3月12日 6:22
> *收件人:* openembedded-core@lists.openembedded.org 
> <openembedded-core@lists.openembedded.org>
> *主题:* [OE-core] [PATCH 2/2] glib-2.0: Correct multilib conflict
> From: Jeremy Puhlman <jpuhlman@mvista.com>
>
> Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
> ---
>  meta/recipes-core/glib-2.0/glib.inc | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/meta/recipes-core/glib-2.0/glib.inc 
> b/meta/recipes-core/glib-2.0/glib.inc
> index 23c347dbf7..edecc51fdb 100644
> --- a/meta/recipes-core/glib-2.0/glib.inc
> +++ b/meta/recipes-core/glib-2.0/glib.inc
> @@ -128,6 +128,9 @@ do_install_append_class-target () {
>                          rm 
> ${D}${datadir}/installed-tests/glib/gdbus-serialization.test
>                  fi
>          fi
> +        if test "x${MLPREFIX}" != "x"; then
> +                mv 
> ${D}${datadir}/installed-tests/glib/static-link.test 
> ${D}${datadir}/installed-tests/glib/${MLPREFIX}static-link.test
> +        fi
>  }
>
>  # As we do not build python3 for windows, makes no sense to ship the 
> script that's using it
> -- 
> 2.13.3
>
> -- 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient> 
> 	Virus-free. www.avg.com 
> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient> 
>
>
> <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

-- 
Jeremy A. Puhlman
jpuhlman@mvista.com


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

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

* 回复: 回复: [PATCH 2/2] glib-2.0: Correct multilib conflict
  2020-03-17  4:02     ` Jeremy A. Puhlman
@ 2020-03-17  4:31       ` Chen, Qi
  2020-03-17  4:58         ` Jeremy A. Puhlman
  0 siblings, 1 reply; 12+ messages in thread
From: Chen, Qi @ 2020-03-17  4:31 UTC (permalink / raw)
  To: Jeremy A. Puhlman, openembedded-core

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

MULTILIBS ?= "multilib:lib32"
DEFAULTTUNE_virtclass-multilib-lib32 ?= "armv7vethf"

I think you can use these two lines to reproduce the problem with multilib enabled.

Regards,
Chen Qi
________________________________
发件人: Jeremy A. Puhlman <jpuhlman@mvista.com>
发送时间: 2020年3月17日 12:02
收件人: Chen, Qi <Qi.Chen@windriver.com>; openembedded-core@lists.openembedded.org <openembedded-core@lists.openembedded.org>
主题: Re: 回复: [OE-core] [PATCH 2/2] glib-2.0: Correct multilib conflict

Just standard x86/i585. What are you using for your mulitlib. ilp32/aarch32/arm7?

require conf/multilib.conf
MULTILIBS = "multilib:lib32"
X86ARCH32 = "i586"
DEFAULTTUNE_virtclass-multilib-lib32 = "i586"
TARGET_ARCH_virtclass-multilib-lib32 = "i586"
TARGET_LD_ARCH_virtclass-multilib-lib32 = "-m elf_i386"
ALTBINDIR_SUFFIX_virtclass-multilib-lib32 = "32"

What does your -e look like for the recipe that fails?

On 3/16/2020 8:30 PM, Chen, Qi wrote:
This patch is causing regression in case of qemuarm64 multilib for me. The static-link.test file is not there, resulting the `mv' command failure. I've sent out a patch to fix this problem, but I don't know what's your environment. So please help review.

Regards,
Chen Qi
________________________________
发件人: openembedded-core-bounces@lists.openembedded.org<mailto:openembedded-core-bounces@lists.openembedded.org> <openembedded-core-bounces@lists.openembedded.org><mailto:openembedded-core-bounces@lists.openembedded.org> 代表 Jeremy A. Puhlman <jpuhlman@mvista.com><mailto:jpuhlman@mvista.com>
发送时间: 2020年3月12日 6:22
收件人: openembedded-core@lists.openembedded.org<mailto:openembedded-core@lists.openembedded.org> <openembedded-core@lists.openembedded.org><mailto:openembedded-core@lists.openembedded.org>
主题: [OE-core] [PATCH 2/2] glib-2.0: Correct multilib conflict

From: Jeremy Puhlman <jpuhlman@mvista.com><mailto:jpuhlman@mvista.com>

Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com><mailto:jpuhlman@mvista.com>
---
 meta/recipes-core/glib-2.0/glib.inc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc
index 23c347dbf7..edecc51fdb 100644
--- a/meta/recipes-core/glib-2.0/glib.inc
+++ b/meta/recipes-core/glib-2.0/glib.inc
@@ -128,6 +128,9 @@ do_install_append_class-target () {
                         rm ${D}${datadir}/installed-tests/glib/gdbus-serialization.test
                 fi
         fi
+        if test "x${MLPREFIX}" != "x"; then
+                mv ${D}${datadir}/installed-tests/glib/static-link.test ${D}${datadir}/installed-tests/glib/${MLPREFIX}static-link.test
+        fi
 }

 # As we do not build python3 for windows, makes no sense to ship the script that's using it
--
2.13.3

--
_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org<mailto:Openembedded-core@lists.openembedded.org>
http://lists.openembedded.org/mailman/listinfo/openembedded-core

[https://ipmcdn.avast.com/images/icons/icon-envelope-tick-green-avg-v1.png]<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient> Virus-free. www.avg.com<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>


--
Jeremy A. Puhlman
jpuhlman@mvista.com<mailto:jpuhlman@mvista.com>

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

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

* Re: 回复: 回复: [PATCH 2/2] glib-2.0: Correct multilib conflict
  2020-03-17  4:31       ` 回复: " Chen, Qi
@ 2020-03-17  4:58         ` Jeremy A. Puhlman
  2020-03-17  5:21           ` 回复: " Chen, Qi
  0 siblings, 1 reply; 12+ messages in thread
From: Jeremy A. Puhlman @ 2020-03-17  4:58 UTC (permalink / raw)
  To: Chen, Qi, openembedded-core

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

Do you have ptests turned off?
Looks like all the test checking is done in do_install rather then 
do_install_ptest. I think I need to add a check for the existance like 
the change above the added one.

On 3/16/2020 9:31 PM, Chen, Qi wrote:
> MULTILIBS ?= "multilib:lib32"
> DEFAULTTUNE_virtclass-multilib-lib32 ?= "armv7vethf"
>
> I think you can use these two lines to reproduce the problem with 
> multilib enabled.
>
> Regards,
> Chen Qi
> ------------------------------------------------------------------------
> *发件人:* Jeremy A. Puhlman <jpuhlman@mvista.com>
> *发送时间:* 2020年3月17日 12:02
> *收件人:* Chen, Qi <Qi.Chen@windriver.com>; 
> openembedded-core@lists.openembedded.org 
> <openembedded-core@lists.openembedded.org>
> *主题:* Re: 回复: [OE-core] [PATCH 2/2] glib-2.0: Correct multilib 
> conflict
> Just standard x86/i585. What are you using for your mulitlib. 
> ilp32/aarch32/arm7?
>
> require conf/multilib.conf
> MULTILIBS = "multilib:lib32"
> X86ARCH32 = "i586"
> DEFAULTTUNE_virtclass-multilib-lib32 = "i586"
> TARGET_ARCH_virtclass-multilib-lib32 = "i586"
> TARGET_LD_ARCH_virtclass-multilib-lib32 = "-m elf_i386"
> ALTBINDIR_SUFFIX_virtclass-multilib-lib32 = "32"
>
> What does your -e look like for the recipe that fails?
>
> On 3/16/2020 8:30 PM, Chen, Qi wrote:
>> This patch is causing regression in case of qemuarm64 multilib for 
>> me. The static-link.test file is not there, resulting the `mv' 
>> command failure. I've sent out a patch to fix this problem, but I 
>> don't know what's your environment. So please help review.
>>
>> Regards,
>> Chen Qi
>> ------------------------------------------------------------------------
>> *发件人:* openembedded-core-bounces@lists.openembedded.org 
>> <mailto:openembedded-core-bounces@lists.openembedded.org> 
>> <openembedded-core-bounces@lists.openembedded.org> 
>> <mailto:openembedded-core-bounces@lists.openembedded.org> 代表 Jeremy 
>> A. Puhlman <jpuhlman@mvista.com> <mailto:jpuhlman@mvista.com>
>> *发送时间:* 2020年3月12日 6:22
>> *收件人:* openembedded-core@lists.openembedded.org 
>> <mailto:openembedded-core@lists.openembedded.org> 
>> <openembedded-core@lists.openembedded.org> 
>> <mailto:openembedded-core@lists.openembedded.org>
>> *主题:* [OE-core] [PATCH 2/2] glib-2.0: Correct multilib conflict
>> From: Jeremy Puhlman <jpuhlman@mvista.com> <mailto:jpuhlman@mvista.com>
>>
>> Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com> 
>> <mailto:jpuhlman@mvista.com>
>> ---
>>  meta/recipes-core/glib-2.0/glib.inc | 3 +++
>>  1 file changed, 3 insertions(+)
>>
>> diff --git a/meta/recipes-core/glib-2.0/glib.inc 
>> b/meta/recipes-core/glib-2.0/glib.inc
>> index 23c347dbf7..edecc51fdb 100644
>> --- a/meta/recipes-core/glib-2.0/glib.inc
>> +++ b/meta/recipes-core/glib-2.0/glib.inc
>> @@ -128,6 +128,9 @@ do_install_append_class-target () {
>>                          rm 
>> ${D}${datadir}/installed-tests/glib/gdbus-serialization.test
>>                  fi
>>          fi
>> +        if test "x${MLPREFIX}" != "x"; then
>> +                mv 
>> ${D}${datadir}/installed-tests/glib/static-link.test 
>> ${D}${datadir}/installed-tests/glib/${MLPREFIX}static-link.test
>> +        fi
>>  }
>>
>>  # As we do not build python3 for windows, makes no sense to ship the 
>> script that's using it
>> -- 
>> 2.13.3
>>
>> -- 
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org 
>> <mailto:Openembedded-core@lists.openembedded.org>
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>>
>> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient> 
>> 	Virus-free. www.avg.com 
>> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient> 
>>
>>
>
> -- 
> Jeremy A. Puhlman
> jpuhlman@mvista.com  <mailto:jpuhlman@mvista.com>

-- 
Jeremy A. Puhlman
jpuhlman@mvista.com


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

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

* 回复: 回复: 回复: [PATCH 2/2] glib-2.0: Correct multilib conflict
  2020-03-17  4:58         ` Jeremy A. Puhlman
@ 2020-03-17  5:21           ` Chen, Qi
  2020-03-17  6:03             ` Jeremy A. Puhlman
  0 siblings, 1 reply; 12+ messages in thread
From: Chen, Qi @ 2020-03-17  5:21 UTC (permalink / raw)
  To: Jeremy A. Puhlman, openembedded-core

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

Yes. ptest turned off.

Regards,
Chen Qi
________________________________
发件人: Jeremy A. Puhlman <jpuhlman@mvista.com>
发送时间: 2020年3月17日 12:58
收件人: Chen, Qi <Qi.Chen@windriver.com>; openembedded-core@lists.openembedded.org <openembedded-core@lists.openembedded.org>
主题: Re: 回复: 回复: [OE-core] [PATCH 2/2] glib-2.0: Correct multilib conflict

Do you have ptests turned off?
Looks like all the test checking is done in do_install rather then do_install_ptest. I think I need to add a check for the existance like the change above the added one.

On 3/16/2020 9:31 PM, Chen, Qi wrote:
MULTILIBS ?= "multilib:lib32"
DEFAULTTUNE_virtclass-multilib-lib32 ?= "armv7vethf"

I think you can use these two lines to reproduce the problem with multilib enabled.

Regards,
Chen Qi
________________________________
发件人: Jeremy A. Puhlman <jpuhlman@mvista.com><mailto:jpuhlman@mvista.com>
发送时间: 2020年3月17日 12:02
收件人: Chen, Qi <Qi.Chen@windriver.com><mailto:Qi.Chen@windriver.com>; openembedded-core@lists.openembedded.org<mailto:openembedded-core@lists.openembedded.org> <openembedded-core@lists.openembedded.org><mailto:openembedded-core@lists.openembedded.org>
主题: Re: 回复: [OE-core] [PATCH 2/2] glib-2.0: Correct multilib conflict

Just standard x86/i585. What are you using for your mulitlib. ilp32/aarch32/arm7?

require conf/multilib.conf
MULTILIBS = "multilib:lib32"
X86ARCH32 = "i586"
DEFAULTTUNE_virtclass-multilib-lib32 = "i586"
TARGET_ARCH_virtclass-multilib-lib32 = "i586"
TARGET_LD_ARCH_virtclass-multilib-lib32 = "-m elf_i386"
ALTBINDIR_SUFFIX_virtclass-multilib-lib32 = "32"

What does your -e look like for the recipe that fails?

On 3/16/2020 8:30 PM, Chen, Qi wrote:
This patch is causing regression in case of qemuarm64 multilib for me. The static-link.test file is not there, resulting the `mv' command failure. I've sent out a patch to fix this problem, but I don't know what's your environment. So please help review.

Regards,
Chen Qi
________________________________
发件人: openembedded-core-bounces@lists.openembedded.org<mailto:openembedded-core-bounces@lists.openembedded.org> <openembedded-core-bounces@lists.openembedded.org><mailto:openembedded-core-bounces@lists.openembedded.org> 代表 Jeremy A. Puhlman <jpuhlman@mvista.com><mailto:jpuhlman@mvista.com>
发送时间: 2020年3月12日 6:22
收件人: openembedded-core@lists.openembedded.org<mailto:openembedded-core@lists.openembedded.org> <openembedded-core@lists.openembedded.org><mailto:openembedded-core@lists.openembedded.org>
主题: [OE-core] [PATCH 2/2] glib-2.0: Correct multilib conflict

From: Jeremy Puhlman <jpuhlman@mvista.com><mailto:jpuhlman@mvista.com>

Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com><mailto:jpuhlman@mvista.com>
---
 meta/recipes-core/glib-2.0/glib.inc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc
index 23c347dbf7..edecc51fdb 100644
--- a/meta/recipes-core/glib-2.0/glib.inc
+++ b/meta/recipes-core/glib-2.0/glib.inc
@@ -128,6 +128,9 @@ do_install_append_class-target () {
                         rm ${D}${datadir}/installed-tests/glib/gdbus-serialization.test
                 fi
         fi
+        if test "x${MLPREFIX}" != "x"; then
+                mv ${D}${datadir}/installed-tests/glib/static-link.test ${D}${datadir}/installed-tests/glib/${MLPREFIX}static-link.test
+        fi
 }

 # As we do not build python3 for windows, makes no sense to ship the script that's using it
--
2.13.3

--
_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org<mailto:Openembedded-core@lists.openembedded.org>
http://lists.openembedded.org/mailman/listinfo/openembedded-core

[https://ipmcdn.avast.com/images/icons/icon-envelope-tick-green-avg-v1.png]<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient> Virus-free. www.avg.com<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>


--
Jeremy A. Puhlman
jpuhlman@mvista.com<mailto:jpuhlman@mvista.com>


--
Jeremy A. Puhlman
jpuhlman@mvista.com<mailto:jpuhlman@mvista.com>

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

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

* Re: 回复: 回复: 回复: [PATCH 2/2] glib-2.0: Correct multilib conflict
  2020-03-17  5:21           ` 回复: " Chen, Qi
@ 2020-03-17  6:03             ` Jeremy A. Puhlman
  0 siblings, 0 replies; 12+ messages in thread
From: Jeremy A. Puhlman @ 2020-03-17  6:03 UTC (permalink / raw)
  To: Chen, Qi, openembedded-core

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

Patch sent to the list.

On 3/16/2020 10:21 PM, Chen, Qi wrote:
> Yes. ptest turned off.
>
> Regards,
> Chen Qi
> ------------------------------------------------------------------------
> *发件人:* Jeremy A. Puhlman <jpuhlman@mvista.com>
> *发送时间:* 2020年3月17日 12:58
> *收件人:* Chen, Qi <Qi.Chen@windriver.com>; 
> openembedded-core@lists.openembedded.org 
> <openembedded-core@lists.openembedded.org>
> *主题:* Re: 回复: 回复: [OE-core] [PATCH 2/2] glib-2.0: Correct multilib 
> conflict
> Do you have ptests turned off?
> Looks like all the test checking is done in do_install rather then 
> do_install_ptest. I think I need to add a check for the existance like 
> the change above the added one.
>
> On 3/16/2020 9:31 PM, Chen, Qi wrote:
>> MULTILIBS ?= "multilib:lib32"
>> DEFAULTTUNE_virtclass-multilib-lib32 ?= "armv7vethf"
>>
>> I think you can use these two lines to reproduce the problem with 
>> multilib enabled.
>>
>> Regards,
>> Chen Qi
>> ------------------------------------------------------------------------
>> *发件人:* Jeremy A. Puhlman <jpuhlman@mvista.com> 
>> <mailto:jpuhlman@mvista.com>
>> *发送时间:* 2020年3月17日 12:02
>> *收件人:* Chen, Qi <Qi.Chen@windriver.com> 
>> <mailto:Qi.Chen@windriver.com>; 
>> openembedded-core@lists.openembedded.org 
>> <mailto:openembedded-core@lists.openembedded.org> 
>> <openembedded-core@lists.openembedded.org> 
>> <mailto:openembedded-core@lists.openembedded.org>
>> *主题:* Re: 回复: [OE-core] [PATCH 2/2] glib-2.0: Correct multilib 
>> conflict
>> Just standard x86/i585. What are you using for your mulitlib. 
>> ilp32/aarch32/arm7?
>>
>> require conf/multilib.conf
>> MULTILIBS = "multilib:lib32"
>> X86ARCH32 = "i586"
>> DEFAULTTUNE_virtclass-multilib-lib32 = "i586"
>> TARGET_ARCH_virtclass-multilib-lib32 = "i586"
>> TARGET_LD_ARCH_virtclass-multilib-lib32 = "-m elf_i386"
>> ALTBINDIR_SUFFIX_virtclass-multilib-lib32 = "32"
>>
>> What does your -e look like for the recipe that fails?
>>
>> On 3/16/2020 8:30 PM, Chen, Qi wrote:
>>> This patch is causing regression in case of qemuarm64 multilib for 
>>> me. The static-link.test file is not there, resulting the `mv' 
>>> command failure. I've sent out a patch to fix this problem, but I 
>>> don't know what's your environment. So please help review.
>>>
>>> Regards,
>>> Chen Qi
>>> ------------------------------------------------------------------------
>>> *发件人:* openembedded-core-bounces@lists.openembedded.org 
>>> <mailto:openembedded-core-bounces@lists.openembedded.org> 
>>> <openembedded-core-bounces@lists.openembedded.org> 
>>> <mailto:openembedded-core-bounces@lists.openembedded.org> 代表 Jeremy 
>>> A. Puhlman <jpuhlman@mvista.com> <mailto:jpuhlman@mvista.com>
>>> *发送时间:* 2020年3月12日 6:22
>>> *收件人:* openembedded-core@lists.openembedded.org 
>>> <mailto:openembedded-core@lists.openembedded.org> 
>>> <openembedded-core@lists.openembedded.org> 
>>> <mailto:openembedded-core@lists.openembedded.org>
>>> *主题:* [OE-core] [PATCH 2/2] glib-2.0: Correct multilib conflict
>>> From: Jeremy Puhlman <jpuhlman@mvista.com> <mailto:jpuhlman@mvista.com>
>>>
>>> Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com> 
>>> <mailto:jpuhlman@mvista.com>
>>> ---
>>>  meta/recipes-core/glib-2.0/glib.inc | 3 +++
>>>  1 file changed, 3 insertions(+)
>>>
>>> diff --git a/meta/recipes-core/glib-2.0/glib.inc 
>>> b/meta/recipes-core/glib-2.0/glib.inc
>>> index 23c347dbf7..edecc51fdb 100644
>>> --- a/meta/recipes-core/glib-2.0/glib.inc
>>> +++ b/meta/recipes-core/glib-2.0/glib.inc
>>> @@ -128,6 +128,9 @@ do_install_append_class-target () {
>>>                          rm 
>>> ${D}${datadir}/installed-tests/glib/gdbus-serialization.test
>>>                  fi
>>>          fi
>>> +        if test "x${MLPREFIX}" != "x"; then
>>> +                mv 
>>> ${D}${datadir}/installed-tests/glib/static-link.test 
>>> ${D}${datadir}/installed-tests/glib/${MLPREFIX}static-link.test
>>> +        fi
>>>  }
>>>
>>>  # As we do not build python3 for windows, makes no sense to ship 
>>> the script that's using it
>>> -- 
>>> 2.13.3
>>>
>>> -- 
>>> _______________________________________________
>>> Openembedded-core mailing list
>>> Openembedded-core@lists.openembedded.org 
>>> <mailto:Openembedded-core@lists.openembedded.org>
>>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>>>
>>> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient> 
>>> 	Virus-free. www.avg.com 
>>> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient> 
>>>
>>>
>>
>> -- 
>> Jeremy A. Puhlman
>> jpuhlman@mvista.com  <mailto:jpuhlman@mvista.com>
>
> -- 
> Jeremy A. Puhlman
> jpuhlman@mvista.com  <mailto:jpuhlman@mvista.com>

-- 
Jeremy A. Puhlman
jpuhlman@mvista.com


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

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

end of thread, other threads:[~2020-03-17  6:03 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-11 22:22 [PATCH 1/2] babletrace2: make manpages multilib identical Jeremy A. Puhlman
2020-03-11 22:22 ` [PATCH 2/2] glib-2.0: Correct multilib conflict Jeremy A. Puhlman
2020-03-17  3:30   ` 回复: " Chen, Qi
2020-03-17  4:02     ` Jeremy A. Puhlman
2020-03-17  4:31       ` 回复: " Chen, Qi
2020-03-17  4:58         ` Jeremy A. Puhlman
2020-03-17  5:21           ` 回复: " Chen, Qi
2020-03-17  6:03             ` Jeremy A. Puhlman
2020-03-12 14:25 ` [PATCH 1/2] babletrace2: make manpages multilib identical Jonathan Rajotte-Julien
2020-03-12 14:36   ` Jeremy A. Puhlman
2020-03-13  7:22   ` Richard Purdie
2020-03-16 13:17     ` Jonathan Rajotte-Julien

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.