Re: [oe] [meta-filesystems][PATCH] fuse-exfat: fix multilib build

2019-01-04 Thread Αθανάσιος Οικονόμου
Στις Παρ, 4 Ιαν 2019 στις 7:53 μ.μ., ο/η Khem Raj  έγραψε:
>
> On Fri, Jan 4, 2019 at 2:25 AM Athanasios Oikonomou  wrote:
> >
> > Replace the PN with BPN to fix the multilib build.
> > ---
> >  meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git 
> > a/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb 
> > b/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb
> > index 99bf2be..ea00222 100644
> > --- a/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb
> > +++ b/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb
> > @@ -17,5 +17,5 @@ inherit autotools pkgconfig
> >  SRC_URI[md5sum] = "fca71e6598f79d037a3c7c969cb5710c"
> >  SRC_URI[sha256sum] = 
> > "f2e06eba5a21c621aac1d6da21b12a5a324fdd1e20f9c8acd357dd463c2355d9"
> >
> > -S = "${WORKDIR}/${PN}-${PV}"
> > +S = "${WORKDIR}/${BPN}-${PV}"
>
> Could you try using S = "${WORKDIR}/${BP}
>

Default S seems to work fine. Pushed a newer version that completely
removes S in order to use the default one.
Thanks!

> >  EXTRA_OECONF += "sbindir=${base_sbindir}"
> > --
> > 2.1.4
> >
> > --
> > ___
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-filesystems][PATCH v3] fuse-exfat: fix multilib build

2019-01-04 Thread Athanasios Oikonomou
The PN in S causes issues when expanded in multilib build.
Using the default "S = "${WORKDIR}/${BP}" fixes the problem.

Signed-off-by: Athanasios Oikonomou 
---
 meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb 
b/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb
index 99bf2be..18fc9cd 100644
--- a/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb
+++ b/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb
@@ -17,5 +17,4 @@ inherit autotools pkgconfig
 SRC_URI[md5sum] = "fca71e6598f79d037a3c7c969cb5710c"
 SRC_URI[sha256sum] = 
"f2e06eba5a21c621aac1d6da21b12a5a324fdd1e20f9c8acd357dd463c2355d9"
 
-S = "${WORKDIR}/${PN}-${PV}"
 EXTRA_OECONF += "sbindir=${base_sbindir}"
-- 
2.1.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH V2] luajit: Disable for mips n64/n32 hosts

2019-01-04 Thread Khem Raj
- mips64 port does not exist
- Also convert aarch64 compatible host case to an override

Signed-off-by: Khem Raj 
---
 meta-oe/recipes-devtools/luajit/luajit_2.0.5.bb | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-devtools/luajit/luajit_2.0.5.bb 
b/meta-oe/recipes-devtools/luajit/luajit_2.0.5.bb
index 3052eb0484..f3a0f70ee2 100644
--- a/meta-oe/recipes-devtools/luajit/luajit_2.0.5.bb
+++ b/meta-oe/recipes-devtools/luajit/luajit_2.0.5.bb
@@ -90,5 +90,7 @@ FILES_${PN}-dev += "${libdir}/libluajit-5.1.a \
 "
 FILES_luajit-common = "${datadir}/${BPN}-${PV}"
 
-# Aarch64 is not supported in this release 
-COMPATIBLE_HOST = "^(?!aarch64).*"
+# Aarch64/mips64 is not supported in this release
+COMPATIBLE_HOST_aarch64 = "null"
+COMPATIBLE_HOST_mipsarchn32 = "null"
+COMPATIBLE_HOST_mipsarchn64 = "null"
-- 
2.20.1

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-filesystems][PATCH] fuse-exfat: fix multilib build

2019-01-04 Thread Khem Raj
On Fri, Jan 4, 2019 at 2:25 AM Athanasios Oikonomou  wrote:
>
> Replace the PN with BPN to fix the multilib build.
> ---
>  meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git 
> a/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb 
> b/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb
> index 99bf2be..ea00222 100644
> --- a/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb
> +++ b/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb
> @@ -17,5 +17,5 @@ inherit autotools pkgconfig
>  SRC_URI[md5sum] = "fca71e6598f79d037a3c7c969cb5710c"
>  SRC_URI[sha256sum] = 
> "f2e06eba5a21c621aac1d6da21b12a5a324fdd1e20f9c8acd357dd463c2355d9"
>
> -S = "${WORKDIR}/${PN}-${PV}"
> +S = "${WORKDIR}/${BPN}-${PV}"

Could you try using S = "${WORKDIR}/${BP}

>  EXTRA_OECONF += "sbindir=${base_sbindir}"
> --
> 2.1.4
>
> --
> ___
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-gnome][PATCH] fix networkmanager apppend

2019-01-04 Thread Thomas
From: thc 

Fix following warning:
  WARNING:
   networkmanager-1.14.4-r0 do_configure:
   QA Issue: networkmanager:
 invalid PACKAGECONFIG: bluez5glib [invalid-packageconfig]

  if conf/local.conf:
   PACKAGECONFIG_append_pn-networkmanager = " ifupdown wifi bluez5"
  bluez5 is not compiled into nm

  appending variable should use a prepending space, see
  https://www.yoctoproject.org/docs/2.0/ref-manual/ref-manual.html

Signed-off-by: Thomas Csovcsity 
---
 .../recipes-connectivity/networkmanager/networkmanager_%.bbappend   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/meta-gnome/recipes-connectivity/networkmanager/networkmanager_%.bbappend 
b/meta-gnome/recipes-connectivity/networkmanager/networkmanager_%.bbappend
index 291a61605..1abb5bbcd 100644
--- a/meta-gnome/recipes-connectivity/networkmanager/networkmanager_%.bbappend
+++ b/meta-gnome/recipes-connectivity/networkmanager/networkmanager_%.bbappend
@@ -1,3 +1,3 @@
 # networkmanager-applet requires glib support
-PACKAGECONFIG_append = "glib"
+PACKAGECONFIG_append = " glib"
 
-- 
2.11.0

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-filesystems][PATCH v2] fuse-exfat: fix multilib build

2019-01-04 Thread Athanasios Oikonomou
Replace the PN with BPN to fix the multilib build.

Signed-off-by: Athanasios Oikonomou 
---
 meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb 
b/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb
index 99bf2be..ea00222 100644
--- a/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb
+++ b/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb
@@ -17,5 +17,5 @@ inherit autotools pkgconfig
 SRC_URI[md5sum] = "fca71e6598f79d037a3c7c969cb5710c"
 SRC_URI[sha256sum] = 
"f2e06eba5a21c621aac1d6da21b12a5a324fdd1e20f9c8acd357dd463c2355d9"
 
-S = "${WORKDIR}/${PN}-${PV}"
+S = "${WORKDIR}/${BPN}-${PV}"
 EXTRA_OECONF += "sbindir=${base_sbindir}"
-- 
2.1.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-gnome][PATCH] fix networkmanager apppend

2019-01-04 Thread Andreas Müller
On Fri, Jan 4, 2019 at 5:42 PM thc  wrote:
>
> Fix following warning:
>   WARNING:
>networkmanager-1.14.4-r0 do_configure:
>QA Issue: networkmanager:
>  invalid PACKAGECONFIG: bluez5glib [invalid-packageconfig]
>
>   if conf/local.conf:
>PACKAGECONFIG_append_pn-networkmanager = " ifupdown wifi bluez5"
>   bluez5 is not compiled into nm
>
>   appending variable should use a prepending space, see
>   https://www.yoctoproject.org/docs/2.0/ref-manual/ref-manual.html
> ---
>  .../recipes-connectivity/networkmanager/networkmanager_%.bbappend   | 2 
> +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
Thanks (I was the one who introduced this bug...)

Please add "Signed-off-by" to your commit message

Andreas
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-gnome][PATCH] fix networkmanager apppend

2019-01-04 Thread thc
Fix following warning:
  WARNING:
   networkmanager-1.14.4-r0 do_configure:
   QA Issue: networkmanager:
 invalid PACKAGECONFIG: bluez5glib [invalid-packageconfig]

  if conf/local.conf:
   PACKAGECONFIG_append_pn-networkmanager = " ifupdown wifi bluez5"
  bluez5 is not compiled into nm

  appending variable should use a prepending space, see
  https://www.yoctoproject.org/docs/2.0/ref-manual/ref-manual.html
---
 .../recipes-connectivity/networkmanager/networkmanager_%.bbappend   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/meta-gnome/recipes-connectivity/networkmanager/networkmanager_%.bbappend 
b/meta-gnome/recipes-connectivity/networkmanager/networkmanager_%.bbappend
index 291a61605..1abb5bbcd 100644
--- a/meta-gnome/recipes-connectivity/networkmanager/networkmanager_%.bbappend
+++ b/meta-gnome/recipes-connectivity/networkmanager/networkmanager_%.bbappend
@@ -1,3 +1,3 @@
 # networkmanager-applet requires glib support
-PACKAGECONFIG_append = "glib"
+PACKAGECONFIG_append = " glib"
 
-- 
2.11.0

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [OE-core] [Openembedded-architecture] Dropping armv5 and armv5e tunes in 2.7

2019-01-04 Thread Andrea Adami
On Fri, Jan 4, 2019 at 12:21 AM Khem Raj  wrote:
>
> Thanks Adrian
>
> On Thu, Jan 3, 2019 at 2:59 PM Adrian Bunk  wrote:
> >
> > On Thu, Jan 03, 2019 at 02:01:42PM -0800, Khem Raj wrote:
> > > Hello All
> > >
> > > You might have noticed a recent commit in gcc trunk
> > >
> > > https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=b232e6b58e3766bc66fe08fdb7bcba1bdadda8a2
> > >
> > > Which removed support for deprecated -march=armv5 and armv5e, this
> > > will be released along with gcc-9 release which is upcoming and we
> > > might be able to add gcc9 to 2.7 release or 2.8 release for sure.
> > >
> > > We still have non-thumb tunes for armv5 and armv4 in our tune pack, I
> > > would like to propose a patch to remove them.
> > >...
> >
> > Note that gcc 9 does *not* remove non-thumb armv4 support.
> >
>
> yes that's right. However, I was taking this time to find out if we can drop 
> all
> the ones besides armv5te even if gcc supported it unless there were OE users
> who are still interested in supporting them and had devices running OE
> which need them
>
> > Non-thumb armv5/armv5e have been removed due to
> > "have no known implementations".
> >
> > Non-thumb armv4 support was deprecated in gcc 6 together with armv2/armv3,
> > but there are still people using recent gcc on StrongARM - which is
> > non-thumb armv4.
>
> OK, that's a fair point, however, in OE's case I only have reports from users
> with armv4t devices, but it we can keep the armv4 arm-only tunes around along
> with the arm-thumb v4 ones
>

Khem,

on the kernel side it looks like RMK will not let die amrv4 so easily...

I still have around that Zaurus collie sa1100 armv4 and I think OE is
the only toolchain offering EABI for armv4
My plans were to lead it up to the upcoming linux v.5.0 so it should
not take long.
But all this is for fun I higly doubt there are still 'users'.

So IMHO it is premature to remove armv4.
Cheers
Andrea
> >
> > > Thanks
> > > -Khem
> >
> > cu
> > Adrian
> >
> > --
> >
> >"Is there not promise of rain?" Ling Tan asked suddenly out
> > of the darkness. There had been need of rain for many days.
> >"Only a promise," Lao Er said.
> >Pearl S. Buck - Dragon Seed
> >
> --
> ___
> Openembedded-core mailing list
> openembedded-c...@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-filesystems][PATCH] fuse-exfat: fix multilib build

2019-01-04 Thread Athanasios Oikonomou
Replace the PN with BPN to fix the multilib build.
---
 meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb 
b/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb
index 99bf2be..ea00222 100644
--- a/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb
+++ b/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.2.3.bb
@@ -17,5 +17,5 @@ inherit autotools pkgconfig
 SRC_URI[md5sum] = "fca71e6598f79d037a3c7c969cb5710c"
 SRC_URI[sha256sum] = 
"f2e06eba5a21c621aac1d6da21b12a5a324fdd1e20f9c8acd357dd463c2355d9"
 
-S = "${WORKDIR}/${PN}-${PV}"
+S = "${WORKDIR}/${BPN}-${PV}"
 EXTRA_OECONF += "sbindir=${base_sbindir}"
-- 
2.1.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel