[OE-core] [meta-oe][PATCH v3] devtools: Add recipe for Chromium Embedded Controller utilities

2017-01-03 Thread Moritz Fischer
Add a recipe to build 'ectool' a utility to interact with the embedded controller on Google's chromebooks (and other platforms using it). Signed-off-by: Moritz Fischer --- Changes from v1: - Replaced DESCRIPTION with SUMMARY (Martin) - Use EXTRA_OEMAKE (Martin) - Removed FILESEXTRAPATHS (Martin)

Re: [OE-core] [PATCH 3/6] ksize.py: Python 3 fixes

2017-01-03 Thread Khem Raj
On Tue, Jan 3, 2017 at 2:30 PM, Alejandro Hernandez wrote: > From: Tom Zanussi > > String errors and partial __cmp__ fix. may be fold it into previous patch. > > Signed-off-by: Tom Zanussi > --- > scripts/tiny/ksize.py | 17 - > 1 file changed, 12 insertions(+), 5 deletions(-)

Re: [OE-core] [PATCH 4/6] scripts/tiny/ksum.py: New tool

2017-01-03 Thread Khem Raj
On Tue, Jan 3, 2017 at 2:30 PM, Alejandro Hernandez wrote: > From: Tom Zanussi > > 'ksum.py' generates a combined summary of vmlinux and module sizes for > a built kernel, as a quick tool for comparing the overall effects of > systemic tinification changes. Execute from the base directory of the

[OE-core] [PATCH 1/1] busybox: upgrade to 1.26.1

2017-01-03 Thread Chen Qi
Upgrade busybox to 1.26.1. Also upgrade the git version to the corresponding commit. Patches backported, merged or the problem it covers is solved in another way upstream are removed. Other patches are rebased. Signed-off-by: Chen Qi --- ...e-the-behaviour-of-c-parameter-to-match-u.patch | 73

[OE-core] [PATCH 0/1] busybox: upgrade to 1.26.1

2017-01-03 Thread Chen Qi
The following changes since commit dbb247cac5fbf7b037e4955f9793828451723924: bitbake: cookerdata: Convert multiconfig to use BB_CURRENT_MC (2016-12-22 12:36:40 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib ChenQi/busybox-1.26.1 http://git.pokylinux.or

Re: [OE-core] [PATCH 5/5] hdparm: 9.48 -> 9.50

2017-01-03 Thread Robert Yang
Thanks, updated in the repo: git://git.openembedded.org/openembedded-core-contrib rbt/pu http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/pu Robert Yang (5): debianutils: 4.8 -> 4.8.1 mklibs-native: 0.1.41 -> 0.1.43 quilt: 0.64 -> 0.65 guile: 2.0.12 -> 2.0.

Re: [OE-core] OpenEmbedded Stand at FOSDEM

2017-01-03 Thread Andreas Müller
On Tue, Jan 3, 2017 at 4:32 PM, Philip Balister wrote: > Every year since 2007, OpenEmbedded has a stand at FOSDEM > (http://www.fosdem.org) > > From the first year: > > https://www.flickr.com/photos/32615155@N00/405229708/in/album-72157594561002629/ > > Belen and I are sort of organizing this, bu

Re: [OE-core] [meta-oe][PATCH v2] devtools: Add recipe for Chromium Embedded Controller utilities

2017-01-03 Thread Martin Jansa
The PV still doesn't look right. On Wed, Jan 4, 2017 at 1:28 AM, Moritz Fischer wrote: > Hi all, > > I realized this might have gotten held up by me not being subscibed to the > list, > do you want me to resubmit? > > On Thu, Dec 29, 2016 at 10:01 AM, Moritz Fischer > wrote: > > Add a recipe to

Re: [OE-core] [meta-oe][PATCH v2] devtools: Add recipe for Chromium Embedded Controller utilities

2017-01-03 Thread Moritz Fischer
Hi all, I realized this might have gotten held up by me not being subscibed to the list, do you want me to resubmit? On Thu, Dec 29, 2016 at 10:01 AM, Moritz Fischer wrote: > Add a recipe to build 'ectool' a utility to interact with the embedded > controller on Google's chromebooks (and other pl

Re: [OE-core] [PATCH 1/6] image-live-artifacts: Add support for creating image artifacts only

2017-01-03 Thread Richard Purdie
On Tue, 2017-01-03 at 22:30 +, Alejandro Hernandez wrote: > From: Tom Zanussi > > Rather than create an actual image, just put the image artifacts in > an 'artifacts' directory that can then be picked up by wic. > > Signed-off-by: Tom Zanussi I think the idea here is good, the implementati

[OE-core] [PATCH 4/6] scripts/tiny/ksum.py: New tool

2017-01-03 Thread Alejandro Hernandez
From: Tom Zanussi 'ksum.py' generates a combined summary of vmlinux and module sizes for a built kernel, as a quick tool for comparing the overall effects of systemic tinification changes. Execute from the base directory of the kernel build you want to summarize. Setting the 'verbose' flag will

[OE-core] [PATCH 6/6] core-image-tiny-initramfs: Fix error message shown after a successful initrd boot

2017-01-03 Thread Alejandro Hernandez
When booting core-image-tiny-initramfs, since we want to live on initrd, on purpose, we never find a rootfs image to switch root to, this causes init to show an error as it would with other images, this patch replaces the message shown to the user, avoiding confusion when it was indeed a successful

[OE-core] [PATCH 3/6] ksize.py: Python 3 fixes

2017-01-03 Thread Alejandro Hernandez
From: Tom Zanussi String errors and partial __cmp__ fix. Signed-off-by: Tom Zanussi --- scripts/tiny/ksize.py | 17 - 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/scripts/tiny/ksize.py b/scripts/tiny/ksize.py index b9d2b19..ea1ca7f 100755 --- a/scripts/tiny/ks

[OE-core] [PATCH 2/6] core-image-tiny-initramfs: Add and image creating image artifacts only

2017-01-03 Thread Alejandro Hernandez
From: Tom Zanussi Add an image that simply creates image artifacts using image-live-artifacts support instead of creating an actual image. The image artifacts can then be subsequently assembled by an external tool such as wic to create an actual image. This eliminates redundant image creation w

[OE-core] [PATCH 1/6] image-live-artifacts: Add support for creating image artifacts only

2017-01-03 Thread Alejandro Hernandez
From: Tom Zanussi Rather than create an actual image, just put the image artifacts in an 'artifacts' directory that can then be picked up by wic. Signed-off-by: Tom Zanussi --- meta/classes/image-live-artifacts.bbclass | 64 +++ meta/classes/image.bbclass

[OE-core] [PATCH 5/6] bootimg-efi: Look for image artifacts in a common location

2017-01-03 Thread Alejandro Hernandez
From: Tom Zanussi Rather than have each image type look for artifacts in image-specific locations, move towards having them look for artifacts in a common location, in this case DEPLOY_DIR_IMAGE/artifacts. This currently only applies to bootimg-efi images, and only if the oe-core image classes h

[OE-core] [PATCH 0/6] poky-tiny improvements

2017-01-03 Thread Alejandro Hernandez
This is the first set of patches meant to improve some of the characteristics of poky-tiny, these patches are from or based on Tom Zanussi's work; includes a new image recipe to be able to boot poky-tiny from initrd, along with changes to be able to create it using bootimg-efi, make it compatible

Re: [OE-core] questions on patching

2017-01-03 Thread Khem Raj
On Tue, Jan 3, 2017 at 7:21 AM, Ola Redell wrote: > Hi all, > > I am a bit new to sending in patches to a list like this and specifically to > OE-core, so I need a bit of guidance. > > I have a fix for a bug I found in Jethro in the kernel.bbclass and I have > tested my fix there (update-alternati

[OE-core] [V2][PATCH] sysklogd: do more to properly work with systemd

2017-01-03 Thread Mark Asselstine
It was noticed that syslogd and klogd were no longer running on system startup, meaning no /var/log/messages etc.. It appears as though sysklogd has never been updated to follow the expected logging requirement for systemd as described here: https://www.freedesktop.org/wiki/Software/systemd/syslog/

Re: [OE-core] Yocto Project Status WW01

2017-01-03 Thread Richard Purdie
On Tue, 2017-01-03 at 15:51 +, Jolley, Stephen K wrote: > Current Dev Position: YP 2.3 M2 -> M3 > Next Deadline: YP 2.3 M2 by Jan 23, 2017 >   > SWAT team rotation: Maxin -> Joshua > https://wiki.yoctoproject.org/wiki/Yocto_Build_Failure_Swat_Team >   > Key Status/Updates: > ·    M1 is havi

[OE-core] Yocto Project Status WW01

2017-01-03 Thread Jolley, Stephen K
Current Dev Position: YP 2.3 M2 -> M3 Next Deadline: YP 2.3 M2 by Jan 23, 2017 SWAT team rotation: Maxin -> Joshua https://wiki.yoctoproject.org/wiki/Yocto_Build_Failure_Swat_Team Key Status/Updates: *M1 is having some QA difficulties due to some kind of bad interaction between the

[OE-core] Yocto Project Status WW01

2017-01-03 Thread Jolley, Stephen K
Current Dev Position: YP 2.3 M2 -> M3 Next Deadline: YP 2.3 M2 by Jan 23, 2017 SWAT team rotation: Maxin -> Joshua https://wiki.yoctoproject.org/wiki/Yocto_Build_Failure_Swat_Team Key Status/Updates: *M1 is having some QA difficulties due to some kind of bad interaction between the

[OE-core] OpenEmbedded Stand at FOSDEM

2017-01-03 Thread Philip Balister
Every year since 2007, OpenEmbedded has a stand at FOSDEM (http://www.fosdem.org) >From the first year: https://www.flickr.com/photos/32615155@N00/405229708/in/album-72157594561002629/ Belen and I are sort of organizing this, but both of us are also involved in devrooms, so we will need a lot of

[OE-core] questions on patching

2017-01-03 Thread Ola Redell
Hi all, I am a bit new to sending in patches to a list like this and specifically to OE-core, so I need a bit of guidance. I have a fix for a bug I found in Jethro in the kernel.bbclass and I have tested my fix there (update-alternatives needs a full path also when removing an alternative).

[OE-core] [PATCH v2] Append KERNEL_VERSION string to kernel module package names

2017-01-03 Thread ola . redell
From: Ola Redell The KERNEL_VERSION string is added to kernel module package names in order to make the kernel modules for different kernel versions distinct packages instead of different versions of the same package. With this change, when a new kernel is installed together with its kernel modul

Re: [OE-core] [PATCH] Append KERNEL_VERSION string to kernel module package names

2017-01-03 Thread Ola Redell
Thanks, that was a mistake. I did this change in Jethro originally where the prefix does not appear. I will prepare a v2. Ola On 2017-01-03 14:56, Mats Karrman wrote: -module_pattern = module_pattern_prefix + 'kernel-module-%s' +module_pattern = 'kernel-module-%s-' + d.getVar("KERNEL

Re: [OE-core] [PATCH] Append KERNEL_VERSION string to kernel module package names

2017-01-03 Thread Mats Karrman
Hi, On 01/03/2017 02:42 PM, ola.red...@gmail.com wrote: From: Ola Redell The KERNEL_VERSION string is added to kernel module package names in order to make the kernel modules for different kernel versions distinct packages instead of different versions of the same package. With this change, wh

[OE-core] [PATCH] Append KERNEL_VERSION string to kernel module package names

2017-01-03 Thread ola . redell
From: Ola Redell The KERNEL_VERSION string is added to kernel module package names in order to make the kernel modules for different kernel versions distinct packages instead of different versions of the same package. With this change, when a new kernel is installed together with its kernel modul

[OE-core] Kernel module package naming

2017-01-03 Thread ola . redell
From: Ola Redell Hi, I have been working on a problem with safe kernel and kernel-module upgrade on a system using .deb packages and apt-get as package manager. My problem has been that I need to be able to fall back to an earlier kernel if a newly installed kernel fails to boot for some reaso

Re: [OE-core] [PATCH 1/1] image.bbclass: reactivate do_fetch, do_unpack and do_patch

2017-01-03 Thread Geoffrey Levillain
On 03/01/2017 12:49, Richard Purdie wrote : On Tue, 2017-01-03 at 12:12 +0100, Geoffrey Levillain wrote: Running fetch/unpack/patch can be used to get some image-specific configurations files to apply with a function in the ROOTFS_POSTPROCESS_COMMAND variable. Hence delete the "noexec" line cor

Re: [OE-core] [PATCH v2 1/2] grub_git: extend recipe for proper target deployment

2017-01-03 Thread Belal, Awais
ping! BR, Awais From: openembedded-core-boun...@lists.openembedded.org on behalf of Belal, Awais Sent: Tuesday, December 27, 2016 5:15 PM To: openembedded-core@lists.openembedded.org Subject: Re: [OE-core] [PATCH v2 1/2] grub_git: extend recipe for prope

Re: [OE-core] [PATCH v2 2/2] grub-efi/live-vm-common: allow grub as EFI_PROVIDER

2017-01-03 Thread Belal, Awais
ping! BR, Awais From: openembedded-core-boun...@lists.openembedded.org on behalf of Belal, Awais Sent: Tuesday, December 27, 2016 5:15 PM To: openembedded-core@lists.openembedded.org Subject: Re: [OE-core] [PATCH v2 2/2] grub-efi/live-vm-common: allow gr

Re: [OE-core] [PATCH 1/1] image.bbclass: reactivate do_fetch, do_unpack and do_patch

2017-01-03 Thread Richard Purdie
On Tue, 2017-01-03 at 12:12 +0100, Geoffrey Levillain wrote: > Running fetch/unpack/patch can be used to get some image-specific > configurations files to apply with a function in the > ROOTFS_POSTPROCESS_COMMAND variable. > > Hence delete the "noexec" line corresponding to these tasks so we can >

[OE-core] [PATCH 1/1] image.bbclass: reactivate do_fetch, do_unpack and do_patch

2017-01-03 Thread Geoffrey Levillain
Running fetch/unpack/patch can be used to get some image-specific configurations files to apply with a function in the ROOTFS_POSTPROCESS_COMMAND variable. Hence delete the "noexec" line corresponding to these tasks so we can run them when needed. Signed-off-by: Geoffrey Levillain --- meta/clas

Re: [OE-core] [PATCH 0/1] busybox: upgrade to 1.25.1

2017-01-03 Thread Maxin B. John
Hi, On Tue, Jan 03, 2017 at 05:16:05PM +0800, Chen Qi wrote: > The following changes since commit dbb247cac5fbf7b037e4955f9793828451723924: > > bitbake: cookerdata: Convert multiconfig to use BB_CURRENT_MC (2016-12-22 > 12:36:40 +) > > are available in the git repository at: > > git://

[OE-core] [PATCH 0/1] busybox: upgrade to 1.25.1

2017-01-03 Thread Chen Qi
The following changes since commit dbb247cac5fbf7b037e4955f9793828451723924: bitbake: cookerdata: Convert multiconfig to use BB_CURRENT_MC (2016-12-22 12:36:40 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib ChenQi/busybox-1.25.1 http://git.pokylinux.or

[OE-core] [PATCH 1/1] busybox: upgrade to 1.25.1

2017-01-03 Thread Chen Qi
Upgrade busybox to 1.25.1. Also upgrade the git version to the corresponding commit. Patches backported, merged or the problem it covers is solved in another way upstream are removed. Other patches are rebased. Signed-off-by: Chen Qi --- ...e-the-behaviour-of-c-parameter-to-match-u.patch | 73

[OE-core] [PATCH] kexec: ARM: fix align issue of add_buffer_phys_virt() for LPAE kernel.

2017-01-03 Thread Haiqing Bai
If LPAE is enabled, 3 level page table is used and the 'SECTION_SIZE' is (1<<21), so add_buffer_phys_virt() should align to (1 << 21). Signed-off-by: Haiqing Bai --- ...-ARM-fix-add_buffer_phys_virt-align-issue.patch | 52 ++ meta/recipes-kernel/kexec/kexec-tools_2.0.12.bb