Re: [OE-core] [PATCH] makedevs: don't restrict device node paths to 40 characters

2016-10-02 Thread Andre McCurdy
On Sun, Oct 2, 2016 at 1:37 PM, Khem Raj wrote: > >> On Sep 12, 2016, at 1:14 PM, Andre McCurdy wrote: >> >> 40 character paths work OK for device nodes in /dev but not for >> device nodes created in a chroot, LXC container, etc. >> >> Since the 'path' array is already a 4k buffer, the sscanf 40

[OE-core] [PATCH 2/7] linux-yocto/4.1: update to 4.1.33

2016-10-02 Thread Bruce Ashfield
Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto-rt_4.1.bb | 6 +++--- meta/recipes-kernel/linux/linux-yocto-tiny_4.1.bb | 6 +++--- meta/recipes-kernel/linux/linux-yocto_4.1.bb | 20 ++-- 3 files changed, 16 insertions(+), 16 deletions(-) diff --g

[OE-core] [PATCH 3/7] linux-yocto/4.4: update to v4.4.22

2016-10-02 Thread Bruce Ashfield
Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto-rt_4.4.bb | 6 +++--- meta/recipes-kernel/linux/linux-yocto-tiny_4.4.bb | 6 +++--- meta/recipes-kernel/linux/linux-yocto_4.4.bb | 20 ++-- 3 files changed, 16 insertions(+), 16 deletions(-) diff --g

[OE-core] [PATCH 6/7] linux-yocto/4.8: update to 4.8 -final release

2016-10-02 Thread Bruce Ashfield
Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto-rt_4.8.bb | 6 +++--- meta/recipes-kernel/linux/linux-yocto-tiny_4.8.bb | 6 +++--- meta/recipes-kernel/linux/linux-yocto_4.8.bb | 20 ++-- 3 files changed, 16 insertions(+), 16 deletions(-) diff --g

[OE-core] [PATCH 7/7] linux-libc-headers: fix in/if.h includes

2016-10-02 Thread Bruce Ashfield
The following kernel commits broke the compilation of ppp, due to redefined structures. Nothing else breaks in userspace with or without these uapi changes, so we revert them to keep everything building. commit 05ee5de7451796cf9a8aeb2f05a57790d4fd2336 Author: Mikko Rapeli Date: Mon Au

[OE-core] [PATCH 5/7] linux-libc-headers: update to 4.8 final

2016-10-02 Thread Bruce Ashfield
We've been using a -rc4 variant of the libc-headers, now that 4.8 has been released, we switch to the final tgz of the headers. Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux-libc-headers/linux-libc-headers_4.8.bb | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --

[OE-core] [PATCH 0/7] linux-yocto: consolidated (and hopefully final) pull request

2016-10-02 Thread Bruce Ashfield
Hi all, Linus released 4.8 a few hours ago, so I triggered my final round of updates. Along with the bump to 4.8-final, I've also included pending -stable updates to 4.1 and 4.4. We also have a fix for one -rt issue from Paul Gortmaker and hence a minor update to the preempt-rt branches. There a

[OE-core] [PATCH 4/7] linux-yocto/4.1/4.4: remove innappropriate standard/base patches

2016-10-02 Thread Bruce Ashfield
Before standard/intel/* was created in the 4.1 and 4.4 kernel trees, some patches were merged to standard/base to add features/support for intel platforms. While this isn't entirely bad, there have been some compile issues reported in some configurations. Since we don't need these commits on stand

[OE-core] [PATCH 1/7] linux-yocto/4.8: mmc configuration for x86*

2016-10-02 Thread Bruce Ashfield
Updating the common-pc* configuration to have the following mmc configs available by default: meta/common-pc-64: use mmc-sdhci feature meta/common-pc: use mmc-sdhci feature meta: add mmc/mmc-sdhci feature meta: add mmc/mmc-block feature meta: add mmc/base feature Signed-off-by: Bruce As

[OE-core] [PATCH] alsa-lib: allow building ARM thumb again

2016-10-02 Thread Andreas Müller
The directive mentioned in the comment was removed in: commit 326c6802e49e5499e16cf141e1cdb0360fce14aa Author: Riku Voipio Date: Fri Feb 7 15:38:58 2014 +0200 alsa-lib: heavy pcm atomics cleanup The following patch comes from the realization that at least ARM code for atomics is q

Re: [OE-core] Taskhash mismatch?

2016-10-02 Thread Gary Thomas
On 2016-10-02 15:38, Changhyeok Bae wrote: Please update meta-raspberrypi layer to http://git.yoctoproject.org/cgit/cgit.cgi/meta-raspberrypi/commit/?id=4c02c7ce07121c2f5367204445f93199d828bb10 I am using the latest master (as of 2016-10-02) which includes that revision. 2016-10-02 20:51 GMT

[OE-core] [PATCH V2] sanity: add function to check for git config user

2016-10-02 Thread Stephano Cetola
If attempting to patch a git repo without a proper git config setup, an error will occur saying user.name/user.email are needed by git am/apply. After some code was removed from kernel-yocto, it was simple enough to reproduce this error by creating a kernel patch and using a container to build. Th

[OE-core] [PATCH V2] add function to check for git config user

2016-10-02 Thread Stephano Cetola
Changed since V1: forgot to add Yocto bug #, also cleaned up commit message Stephano Cetola (1): sanity: add function to check for git config user meta/classes/buildhistory.bbclass | 13 - meta/classes/kernel-yocto.bbclass | 2 ++ meta/classes/sanity.bbclass | 15 +++

[OE-core] [PATCH V2] devtool: modify command fails to ignore source files

2016-10-02 Thread Stephano Cetola
With recent changes to recipeutils, the list of local files returned by get_recipe_local_files could possibly include source files. This only happens when the recipe contains a SRC_URI using subdir= to put files in the source tree. These files should be ignored when populating the list of local fil

Re: [OE-core] [PATCH] devtool: modify command fails to ignore source files

2016-10-02 Thread Stephano Cetola
On 10/03, Paul Eggleton wrote: > Hi Stephano, > > Thanks for looking into this, a few things: > > On Sun, 02 Oct 2016 13:55:06 Stephano Cetola wrote: > > With recent changes to recipeutils, the list of local files returned > > by get_recipe_local_files could possibly include source files. This >

Re: [OE-core] [PATCH 0/1] Avoid unnecessary dependency on awk in devtool deploy-target

2016-10-02 Thread Khem Raj
> On Sep 30, 2016, at 12:53 PM, Peter Kjellerstedt > wrote: > > After updating to Krogoth, our developers were faced with the > following error message when using devtool deploy-target: > > /tmp/devtool_deploy.sh: line 23: awk: not found > > This is of course due to the fact that we do not ha

Re: [OE-core] Psplash on Systemd with progress bar

2016-10-02 Thread Khem Raj
> On Sep 28, 2016, at 10:38 PM, srikanth krishnakar > wrote: > > Hi All, > > Yocto version: yocto-2.1 > Target: ARM imx6 > Graphics: X11 (core-image-sato) > > I am trying to use psplash with systemd and have come across the service > files prepared by Eric: > > http://lists.busybox.net/pipe

Re: [OE-core] [PATCH] sanity: add function to check for git config user

2016-10-02 Thread Paul Eggleton
Hi Stephano, On Sun, 02 Oct 2016 15:17:31 Stephano Cetola wrote: > If attempting to patch a git repo without a proper git config setup, > an error will occur saying user.name/user.email are needed by git > am/apply. After 0f698dfd1c8bbc0d53ae7977e26685a7a3df52a3, it was > simple enough to reproduc

Re: [OE-core] [PATCH] devtool: modify command fails to ignore source files

2016-10-02 Thread Paul Eggleton
Hi Stephano, Thanks for looking into this, a few things: On Sun, 02 Oct 2016 13:55:06 Stephano Cetola wrote: > With recent changes to recipeutils, the list of local files returned > by get_recipe_local_files could possibly include source files. This > only happens when the recipe contains a SRC_U

[OE-core] [PATCH] sanity: add function to check for git config user

2016-10-02 Thread Stephano Cetola
If attempting to patch a git repo without a proper git config setup, an error will occur saying user.name/user.email are needed by git am/apply. After 0f698dfd1c8bbc0d53ae7977e26685a7a3df52a3, it was simple enough to reproduce this error by creating a kernel patch and using a container to build. T

[OE-core] [PATCH] devtool: modify command fails to ignore source files

2016-10-02 Thread Stephano Cetola
With recent changes to recipeutils, the list of local files returned by get_recipe_local_files could possibly include source files. This only happens when the recipe contains a SRC_URI using subdir= to put files in the source tree. These files should be ignored when populating the list of local fil

Re: [OE-core] [wic][PATCH] mkefidisk.wks: use partition UUID and GPT partition table

2016-10-02 Thread Saul Wold
On Fri, 2016-09-30 at 18:36 +0300, Ed Bartosh wrote: > This is a preparation to use mkefidisk as a default wks for > genericx86* BSPs. This change enables usage of partition UUID > instead of device name to specify root partition in kernel > command line. It should make images to boot on devices wi

Re: [OE-core] [PATCH] makedevs: don't restrict device node paths to 40 characters

2016-10-02 Thread Khem Raj
> On Sep 12, 2016, at 1:14 PM, Andre McCurdy wrote: > > 40 character paths work OK for device nodes in /dev but not for > device nodes created in a chroot, LXC container, etc. > > Since the 'path' array is already a 4k buffer, the sscanf 40 > character limit seems to be a typo or historical mis

Re: [OE-core] [RFC] iptables: add systemd helper unit to load/restore rules

2016-10-02 Thread Khem Raj
> On Sep 8, 2016, at 4:29 AM, Jack Mitchell wrote: > > From: Jack Mitchell > > there is currently no way to automatically load iptable rules > in OE. Add a systemd unit file to automatically load rules on > network connection. This is cribbed from the way ArchLinux > handles iptables with some

Re: [OE-core] [PATCH v2] scripts: add new script 'native'

2016-10-02 Thread Paul Eggleton
On Sun, 02 Oct 2016 16:44:01 Ulf Magnusson wrote: > On Sun, Oct 2, 2016 at 4:30 PM, Ulf Magnusson wrote: > > On Sun, Oct 2, 2016 at 4:15 PM, Jérémy Rosen wrote: > >> "native" might be a bit too generic... > >> > >> could I suggest oe_native-run or bitbake-native ? > >> > >> something that says

Re: [OE-core] [PATCH v2] scripts: add new script 'native'

2016-10-02 Thread Ulf Magnusson
On Sun, Oct 2, 2016 at 4:30 PM, Ulf Magnusson wrote: > On Sun, Oct 2, 2016 at 4:15 PM, Jérémy Rosen wrote: >> "native" might be a bit too generic... >> >> could I suggest oe_native-run or bitbake-native ? >> >> something that says it's yocto-galaxy specific and can be autocompleted with >> a reas

Re: [OE-core] [PATCH v2] scripts: add new script 'native'

2016-10-02 Thread Ulf Magnusson
On Sun, Oct 2, 2016 at 4:15 PM, Jérémy Rosen wrote: > "native" might be a bit too generic... > > could I suggest oe_native-run or bitbake-native ? > > something that says it's yocto-galaxy specific and can be autocompleted with > a reasonable prefix... > > > Jérémy Rosen I think overly namespacin

Re: [OE-core] [PATCH v2] scripts: add new script 'native'

2016-10-02 Thread Jérémy Rosen
"native" might be a bit too generic... could I suggest oe_native-run or bitbake-native ? something that says it's yocto-galaxy specific and can be autocompleted with a reasonable prefix... Jérémy Rosen On 30/09/2016 17:02, Ed Bartosh wrote: Added 'native' convenience shell script to run n

Re: [OE-core] Taskhash mismatch?

2016-10-02 Thread Changhyeok Bae
Please update meta-raspberrypi layer to http://git.yoctoproject.org/cgit/cgit.cgi/meta-raspberrypi/commit/?id=4c02c7ce07121c2f5367204445f93199d828bb10 Thanks Changhyeok 2016-10-02 20:51 GMT+09:00 Jonathan Liu : > On 2 October 2016 at 18:28, Gary Thomas wrote: > > Can someone explain this error?

Re: [OE-core] Taskhash mismatch?

2016-10-02 Thread Jonathan Liu
On 2 October 2016 at 18:28, Gary Thomas wrote: > Can someone explain this error? > > ERROR: video-demo-image-1.0-r0 do_image_rpi_sdimg: Taskhash mismatch > 7b8eab500890bd7cd6a00b70740800f1 versus 9471c988c4adee881554263bd10f7196 for > /local/poky-cutting-edge/meta-rpi/packages/images/video-demo-im

[OE-core] Taskhash mismatch?

2016-10-02 Thread Gary Thomas
Can someone explain this error? ERROR: video-demo-image-1.0-r0 do_image_rpi_sdimg: Taskhash mismatch 7b8eab500890bd7cd6a00b70740800f1 versus 9471c988c4adee881554263bd10f7196 for /local/poky-cutting-edge/meta-rpi/packages/images/video-demo-image.bb.do_image_rpi_sdimg ERROR: Taskhash mismatch 7b8