Re: [yocto] SDK install w/ CMake

2019-02-06 Thread Bach, Pascal
Hi Eric I don't think your issue has something do to with CMake. > -Original Message- > From: yocto-boun...@yoctoproject.org > On Behalf Of Eric Schwarz > Sent: Freitag, 1. Februar 2019 09:51 > To: yocto@yoctoproject.org > Subject: [yocto] SDK install w/ CMake > > Hello, > > we have

[yocto] do_populate_lic fail from scratch build but succed after clean

2019-02-06 Thread Jonas Andersson
Hi I have an recipe based on serialport npm package created with devtool. I added some custom licenses in my layer with LICENSE_PATH: # Additional license directories. LICENSE_PATH += "${LAYERDIR}/files/common-licenses" After this I get some inconsistent build result (or i dont understand ).

Re: [yocto] CMake based recipes and defining CMAKE_BUILD_TYPE

2019-02-06 Thread Matt Schuckmann
Aright thank you for checking into this, you went farther then I expected. I will take the approach of setting it for the recipes I really care about and leave the rest alone. Matt S. From: Andreas Müller Sent: Wednesday, February 6, 2019 3:11 PM To:

Re: [yocto] CMake based recipes and defining CMAKE_BUILD_TYPE

2019-02-06 Thread Andreas Müller
On Wed, Feb 6, 2019 at 11:53 PM Andreas Müller wrote: > > On Wed, Feb 6, 2019 at 11:24 PM Andreas Müller > wrote: > > > > On Wed, Feb 6, 2019 at 11:05 PM Matt Schuckmann > > wrote: > > > > > > Hi Andreas, > > > > > > Thanks for the response, do you set build type in each recipe > > >

Re: [yocto] [PATCH 00/10] Misc fixes (cover letter only)

2019-02-06 Thread Paul Eggleton
Oops, yes, I forgot the [layerindex-web], my apologies. I can cc the oe-devel list if people really want to see it there as well; up to this point we've been using this list only. The other option would be a dedicated list but I suspect that would have a very limited subscription. Cheers, Paul

Re: [yocto] CMake based recipes and defining CMAKE_BUILD_TYPE

2019-02-06 Thread Andreas Müller
On Wed, Feb 6, 2019 at 11:24 PM Andreas Müller wrote: > > On Wed, Feb 6, 2019 at 11:05 PM Matt Schuckmann > wrote: > > > > Hi Andreas, > > > > Thanks for the response, do you set build type in each recipe individually > > or is there some central .conf file or other other location that you set

Re: [yocto] [PATCH 00/10] Misc fixes (cover letter only)

2019-02-06 Thread akuster
Hello Paul. On 2/6/19 2:00 PM, Paul Eggleton wrote: > The following changes since commit 61e9b048591adab88d1996646286e1d7df024bea: > > Fix drop-down alignment on duplicates page (2018-11-20 11:58:42 +1300) > > are available in the Git repository at: > >

Re: [yocto] CMake based recipes and defining CMAKE_BUILD_TYPE

2019-02-06 Thread Andreas Müller
On Wed, Feb 6, 2019 at 11:05 PM Matt Schuckmann wrote: > > Hi Andreas, > > Thanks for the response, do you set build type in each recipe individually or > is there some central .conf file or other other location that you set it? > > Matt S. Honestly: I do not set them yet because I thought

Re: [yocto] CMake based recipes and defining CMAKE_BUILD_TYPE

2019-02-06 Thread Matt Schuckmann
Hi Andreas, Thanks for the response, do you set build type in each recipe individually or is there some central .conf file or other other location that you set it? Matt S. From: Andreas Müller Sent: Wednesday, February 6, 2019 1:31 PM To: Matt

[yocto] [PATCH 00/10] Misc fixes (cover letter only)

2019-02-06 Thread Paul Eggleton
The following changes since commit 61e9b048591adab88d1996646286e1d7df024bea: Fix drop-down alignment on duplicates page (2018-11-20 11:58:42 +1300) are available in the Git repository at: git://git.yoctoproject.org/layerindex-web paule/fixes12

Re: [yocto] CMake based recipes and defining CMAKE_BUILD_TYPE

2019-02-06 Thread Andreas Müller
On Wed, Feb 6, 2019 at 7:39 PM Matt Schuckmann wrote: > > I'm trying to understand why the cmake.bbclass doesn't make any attempt to > set CMAKE_BUILD_TYPE and what the design philosophy behind that is? > > On the surface I would expect that the default build type would be Release > but I can

[yocto] CMake based recipes and defining CMAKE_BUILD_TYPE

2019-02-06 Thread Matt Schuckmann
I'm trying to understand why the cmake.bbclass doesn't make any attempt to set CMAKE_BUILD_TYPE and what the design philosophy behind that is? On the surface I would expect that the default build type would be Release but I can see how that might not always be the right choice. I'm really

Re: [yocto] Proper Use of KERNEL_MODULE_AUTOLOAD variable

2019-02-06 Thread Ulf Samuelsson
Maybe it would be good to have a working example in the tree. Best Regards, Ulf Samuelsson > 6 feb. 2019 kl. 02:22 skrev Khem Raj : > > > >> On Sat, Feb 2, 2019 at 7:17 PM Ken Sloat >> wrote: >> On Sat, Feb 2, 2019 at 10:03 PM Bruce Ashfield >> wrote: >> > >> > On 2019-02-02 9:59 p.m., Ken

[linux-yocto] [PATCH] don't check console device file on fs when booting with initrd/initramfs

2019-02-06 Thread Alexey Brodkin
In case of initrd/initramfs /dev/console might not exist that early as devtmpfs is mounted a bit later by /init process so disable this check in that case. Signed-off-by: Alexey Brodkin --- init/main.c | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/init/main.c