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

2017-01-05 Thread Bai, Haiqing
Hi, Ross: I clone the branch (poky-contrib:ross/mut) and did’t find the fix in 2.0.14, so this fix is still required. Thanks B,R Haiqing Bai From: Burton, Ross [mailto:ross.bur...@intel.com] Sent: 2017年1月4日 22:32 To: Bai, Haiqing Cc: OE-core Subject: Re: [OE-core] [PATCH] kexec: ARM:

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

2017-01-05 Thread ChenQi
On 01/05/2017 06:21 PM, Burton, Ross wrote: On 4 January 2017 at 03:22, Chen Qi > wrote: Upgrade busybox to 1.26.1. Also upgrade the git version to the corresponding commit. Did you examine the changes that this introduces?

[OE-core] [PATCH 2/2] image_types.bbclass: IMAGE_TYPEDEP_ now adds deps for conversion types

2017-01-05 Thread Randy Witt
Previously if IMAGE_TYPEDEP_* contained a conversion type of the form, "foo.bar", the dependency on CONVERSION_DEPENDS_bar would not get added to the task depends for do_rootfs. [YOCTO #10883] Signed-off-by: Randy Witt --- meta/classes/image_types.bbclass | 14

[OE-core] [PATCH 1/2] image_typedep.py: Add a test that ensures conversion type deps get added

2017-01-05 Thread Randy Witt
Add a test that ensures if IMAGE_TYPEDEP_* contains a conversion type, that the corresponding CONVERSION_DEPENDS_ for that type gets added to the dependency tree for do_rootfs. Signed-off-by: Randy Witt --- meta/lib/oeqa/selftest/image_typedep.py | 51

[OE-core] [PATCH 0/2] Fix depends for conversion types in IMAGE_TYPEDEP_*

2017-01-05 Thread Randy Witt
Fix conversion type dependencies missing when set in IMAGE_TYPEDEP_*. This also adds a test. The following changes since commit 9f6a1043f68580ed9604e750fd0f993f933bb66e: bitbake: prserv/serv: Tweak stdout manipulation to be stream safe (2017-01-05 13:54:07 +) are available in the git

Re: [OE-core] [PATCH 09/16] boost: drop flags bits, fix for x32

2017-01-05 Thread Christopher Larson
On Thu, Jan 5, 2017 at 1:29 PM, Burton, Ross wrote: > On 5 January 2017 at 19:46, Christopher Larson wrote: > >> +Upstream-Status: Pending >> > > I think Inappropriate is more fitting here, but you're brave for daring to > look into bjam. :) > That’s a

Re: [OE-core] [PATCH 09/16] boost: drop flags bits, fix for x32

2017-01-05 Thread Burton, Ross
On 5 January 2017 at 19:46, Christopher Larson wrote: > +Upstream-Status: Pending > I think Inappropriate is more fitting here, but you're brave for daring to look into bjam. :) Ross -- ___ Openembedded-core mailing list

Re: [OE-core] [PATCH] linux-dtb: strip DTB extension properly in postinst/postrm

2017-01-05 Thread Denys Dmytriyenko
Ping. On Wed, Dec 21, 2016 at 03:20:17PM -0500, Denys Dmytriyenko wrote: > From: Denys Dmytriyenko > > The use of awk -F "." in do_install/do_deploy to strip filename extension > was deprecated long time ago in 72980d5bb465f0640ed451d1ebb9c5d2a210ad0c. > > Make a similar change

[OE-core] [PATCH 14/16] libunwind: apply a patch to fix x32

2017-01-05 Thread Christopher Larson
From: Christopher Larson Apply patch to fix the X32 build from https://github.com/sjnewbury/x32 Signed-off-by: Christopher Larson --- .../libunwind/libunwind/libunwind-1.1-x32.patch| 31 ++

[OE-core] [PATCH 12/16] x264: for x32, disable asm and pass -mx32

2017-01-05 Thread Christopher Larson
From: Christopher Larson We should probably patch it to stop adding the -m argument to CFLAGS/LDFLAGS in the first place, since we pass it in via CC, but this will do for now. Signed-off-by: Christopher Larson ---

[OE-core] [PATCH 15/16] gnome-desktop3: fix for x32

2017-01-05 Thread Christopher Larson
From: Christopher Larson Explicitly use strftime+strptime rather than snprintf+atol. This fixes the build for X32, where long's size doesn't match that of time_t. Signed-off-by: Christopher Larson ---

[OE-core] [PATCH 13/16] nss: fix for x32

2017-01-05 Thread Christopher Larson
From: Christopher Larson This was casting to a pointer, and the pointer sizes are 32-bit on X32, not 64-bit. Adjust as appropriate. Signed-off-by: Christopher Larson --- .../nss/nss/Fix-compilation-for-X32.patch | 31

[OE-core] [PATCH 16/16] webkitgtk: patch & disable JIT for x32

2017-01-05 Thread Christopher Larson
From: Christopher Larson It might not be speedy, but it does build now. Signed-off-by: Christopher Larson --- .../webkit/webkitgtk/x32_support.patch | 22 ++ meta/recipes-sato/webkit/webkitgtk_2.14.2.bb |

[OE-core] [PATCH 11/16] ffmpeg: disable asm for x32

2017-01-05 Thread Christopher Larson
From: Christopher Larson This is the usual way this is handled in desktop distros (see debian, gentoo). I wasn't able to track down a patch to add proper x32 support to ffmpeg. There was, however, a libav patch series which may be worth investigating. Signed-off-by:

[OE-core] [PATCH 03/16] grub-efi: ignore arch mismatch for x32

2017-01-05 Thread Christopher Larson
From: Christopher Larson Ordinary 64-bit binaries are expected for the bootloader. Signed-off-by: Christopher Larson --- meta/recipes-bsp/grub/grub-efi_2.00.bb | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git

[OE-core] [PATCH 10/16] gstreamer1.0-libav: disable asm for x32

2017-01-05 Thread Christopher Larson
From: Christopher Larson The included libav lacks support for x32, so disable the assembly optimizations. Signed-off-by: Christopher Larson --- meta/recipes-multimedia/gstreamer/gstreamer1.0-libav.inc | 4 1 file changed, 4 insertions(+)

[OE-core] [PATCH 09/16] boost: drop flags bits, fix for x32

2017-01-05 Thread Christopher Larson
From: Christopher Larson boost was adding -march/-mcpu itself, and adding -m32/-m64 itself as well. Patch that behavior out, apply another similar patch from elsewhere, and adjust BJAM_OPTS to fix the x32 build. Signed-off-by: Christopher Larson

[OE-core] [PATCH 08/16] ltp: fix build for x32

2017-01-05 Thread Christopher Larson
From: Christopher Larson We need to use the correct time() definition with time_t rather than a long, since long is 32-bit on x32. Signed-off-by: Christopher Larson --- .../ltp/fcntl-fix-the-time-def-to-use-time_t.patch | 28

[OE-core] [PATCH 05/16] gnu-efi: build 64-bit for x32

2017-01-05 Thread Christopher Larson
From: Christopher Larson We're targeting the x86_64 EFI ABI. Signed-off-by: Christopher Larson --- meta/recipes-bsp/gnu-efi/gnu-efi_3.0.4.bb | 9 + 1 file changed, 9 insertions(+) diff --git a/meta/recipes-bsp/gnu-efi/gnu-efi_3.0.4.bb

[OE-core] [PATCH 01/16] valgrind: skip for linux-gnux32

2017-01-05 Thread Christopher Larson
From: Christopher Larson valgrind doesn't support x32 at this time, so skip it for that host. Signed-off-by: Christopher Larson --- meta/recipes-devtools/valgrind/valgrind_3.12.0.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git

[OE-core] [PATCH 06/16] gnu-efi: ignore arch mismatch for x32

2017-01-05 Thread Christopher Larson
From: Christopher Larson Signed-off-by: Christopher Larson --- meta/recipes-bsp/gnu-efi/gnu-efi_3.0.4.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-bsp/gnu-efi/gnu-efi_3.0.4.bb

[OE-core] [PATCH 04/16] lttng-tools: fix for x32

2017-01-05 Thread Christopher Larson
From: Christopher Larson Signed-off-by: Christopher Larson --- meta/recipes-kernel/lttng/lttng-tools/x32.patch | 16 meta/recipes-kernel/lttng/lttng-tools_git.bb| 1 + 2 files changed, 17 insertions(+) create mode 100644

[OE-core] [PATCH 07/16] gummiboot: fix for x32 from systemd-boot

2017-01-05 Thread Christopher Larson
From: Christopher Larson Signed-off-by: Christopher Larson --- .../gummiboot/configure-allow-setting-EFI_CC.patch | 28 ++ meta/recipes-bsp/gummiboot/gummiboot_git.bb| 1 + 2 files changed, 29 insertions(+) create

[OE-core] [PATCH 02/16] packagegroup-core-tools-profile: exclude valgrind for x32

2017-01-05 Thread Christopher Larson
From: Christopher Larson valgrind doesn't seem to support x32 at this time, even in current upstream. Signed-off-by: Christopher Larson --- meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb | 1 + 1 file changed, 1

[OE-core] [PATCH 00/16] Various fixes for x32

2017-01-05 Thread Christopher Larson
From: Christopher Larson Tested both qemux86-64 and intel-corei7-64 (plus the meta-intel fix) with: DEFAULTTUNE_intel-corei7-64 = "corei7-64-x32" DEFAULTTUNE_qemux86-64 = "core2-64-x32" The following changes since commit

[OE-core] [PATCH] webkitgtk: add missing python-native dep

2017-01-05 Thread Christopher Larson
From: Christopher Larson Since we can't inherit pythonnative, we need this dep explicitly. Signed-off-by: Christopher Larson --- meta/recipes-sato/webkit/webkitgtk_2.14.2.bb | 1 + 1 file changed, 1 insertion(+) diff --git

Re: [OE-core] [PATCH] attr/ea-acl: pass --disable-gettext when USE_NLS=no

2017-01-05 Thread Denys Dmytriyenko
Ping. On Fri, Dec 23, 2016 at 02:34:31PM -0500, Denys Dmytriyenko wrote: > From: Denys Dmytriyenko > > Fixes following error in configure: > FATAL ERROR: msgfmt does not seem to be installed. > attr cannot be built without a working gettext installation. > > Signed-off-by:

Re: [OE-core] [morty][PATCH] systemtap: remove explicit msgfmt check

2017-01-05 Thread Denys Dmytriyenko
Ping. On Thu, Dec 22, 2016 at 03:19:00PM -0500, Denys Dmytriyenko wrote: > From: Ross Burton > > Passing --disable-nls should be enough to disable the requirement for a full > gettext to be present, but the upstream configure explicitly checks for msgfmt > even if it

Re: [OE-core] [PATCH 2/2] linux-firmware: Modify firmware installation path

2017-01-05 Thread Denys Dmytriyenko
> - > Intel Finland Oy > Registered Address: PL 281, 00181 Helsinki > Business Identity Code: 0357606 - 4 > Domiciled in Helsinki > > This e-mail and any attachments may contain confidential material for > the sole use of the

[OE-core] [PATCH] zlib: update SRC_URI to fix fetching

2017-01-05 Thread Joshua Lock
Upstream have removed the file from zlib.net as a new version has been released, switch to fetching from the official sourceforge mirror. [YOCTO #10879] Signed-off-by: Joshua Lock --- meta/recipes-core/zlib/zlib_1.2.8.bb | 2 +- 1 file changed, 1 insertion(+), 1

Re: [OE-core] [PATCH 1/2] kernel: Modify kernel modules installation path.

2017-01-05 Thread Burton, Ross
On 4 January 2017 at 11:58, Amarnath Valluri wrote: > Use ${base_libdir}/modules inplace of /lib/modules for kernel modules > installation path. > Does the kernel actually respect ${base_libdir}? Ross -- ___

[OE-core] [PATCH 1/1] rootfs-postcommands.bbclass: sort passwd entries

2017-01-05 Thread Patrick Ohly
The /etc passwd files in a rootfs consist of the default entries from base-passwd plus anything that gets added by preinst scripts or extrausers.bbclass. The execution order of preinst scripts is not perfectly deterministic, or at least unrelated changes caused it to change in a non-deterministic

Re: [OE-core] OpenEmbedded Stand at FOSDEM

2017-01-05 Thread Philip Balister
On 01/03/2017 08:13 PM, Andreas Müller wrote: > 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: >> >>

Re: [OE-core] [PATCH] oe-selftest: Improve BUILDDIR environment handling

2017-01-05 Thread Ed Bartosh
On Thu, Jan 05, 2017 at 10:10:50AM +, Richard Purdie wrote: > On Thu, 2017-01-05 at 11:40 +0200, Ed Bartosh wrote: > > On Wed, Jan 04, 2017 at 11:48:53PM +, Richard Purdie wrote: > > > > > > Its possible something (like bitbake/tinfoil2) may mess around with > > > the > > > environment

Re: [OE-core] [morty][PATCH 0/1] Fix building apache2 on morty branch

2017-01-05 Thread Burton, Ross
On 5 January 2017 at 10:35, Piotr Lewicki wrote: > Patch from master that fixes building of apache2 on morty. > Wrong list, you want openembedded-devel@. Ross -- ___ Openembedded-core mailing list

[OE-core] [morty][PATCH 1/1] apache2: always use the archive.apache.org to ensure older releases are always available

2017-01-05 Thread Piotr Lewicki
From: Derek Straka Signed-off-by: Derek Straka Signed-off-by: Martin Jansa Signed-off-by: Piotr Lewicki --- meta-webserver/recipes-httpd/apache2/apache2-native_2.4.23.bb | 2 +-

Re: [OE-core] [PATCH 0/6] Add opengl to REQUIRED_DISTRO_FEATURES for some recipes

2017-01-05 Thread Patrick Ohly
On Thu, 2017-01-05 at 08:51 +, Richard Purdie wrote: > On Thu, 2017-01-05 at 08:32 +0100, Patrick Ohly wrote: > > On Wed, 2017-01-04 at 23:49 +, Burton, Ross wrote: > > > > > > > > > On 4 January 2017 at 22:57, Christopher Larson > > > wrote: > > > These

[OE-core] [morty][PATCH 0/1] Fix building apache2 on morty branch

2017-01-05 Thread Piotr Lewicki
Patch from master that fixes building of apache2 on morty. Derek Straka (1): apache2: always use the archive.apache.org to ensure older releases are always available meta-webserver/recipes-httpd/apache2/apache2-native_2.4.23.bb | 2 +-

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

2017-01-05 Thread Burton, Ross
On 4 January 2017 at 03:22, Chen Qi wrote: > Upgrade busybox to 1.26.1. Also upgrade the git version to the > corresponding > commit. > Did you examine the changes that this introduces? The packages grow a fairly large amount, and a number of new symlinks are introduced.

Re: [OE-core] [PATCH v2] wic/isoimage-isohybrid: check for grub-mkimage

2017-01-05 Thread Ioan-Adrian Ratiu
Hi On Wed, 04 Jan 2017, Ed Bartosh wrote: > On Wed, Jan 04, 2017 at 10:12:55PM +0200, Ed Bartosh wrote: >> On Wed, Jan 04, 2017 at 09:04:43PM +0200, Ioan-Adrian Ratiu wrote: >> > The isohybrid plugin uses grub-mkimage but doesn't make sure it gets built. >> > Add a

Re: [OE-core] [PATCH] oe-selftest: Improve BUILDDIR environment handling

2017-01-05 Thread Richard Purdie
On Thu, 2017-01-05 at 11:40 +0200, Ed Bartosh wrote: > On Wed, Jan 04, 2017 at 11:48:53PM +, Richard Purdie wrote: > > > > Its possible something (like bitbake/tinfoil2) may mess around with > > the > > environment and using the enviroment as a global variable store > > isn't > > particularly

Re: [OE-core] [PATCH] oe-selftest: Improve BUILDDIR environment handling

2017-01-05 Thread Ed Bartosh
On Wed, Jan 04, 2017 at 11:48:53PM +, Richard Purdie wrote: > Its possible something (like bitbake/tinfoil2) may mess around with the > environment and using the enviroment as a global variable store isn't > particularly nice anyway. > > This patch changes the BUILDDIR usages so that the

Re: [OE-core] [PATCH 8/8] oeqa.utils.metadata: add bitbake revision information

2017-01-05 Thread Markus Lehtonen
On 04/01/2017, 17.45, "Mariano Lopez" wrote: >On 28/12/16 07:02, Markus Lehtonen wrote: >> [YOCTO #10590] >> >> Signed-off-by: Markus Lehtonen >> --- >> meta/lib/oeqa/utils/metadata.py | 32 +++- >> 1

Re: [OE-core] [PATCH 7/8] oeqa.utils.metadata: have layer name as an attribute in xml

2017-01-05 Thread Markus Lehtonen
On 04/01/2017, 17.43, "Mariano Lopez" wrote: > >On 28/12/16 07:02, Markus Lehtonen wrote: >> -def dict_to_XML(tag, dictionary): >> +def dict_to_XML(tag, dictionary, **kwargs): >> """ Return XML element converting dicts recursively. """ >> >> -elem =

Re: [OE-core] [PATCH 3/8] oeqa.utils.metadata: drop 'unknown' git data elements

2017-01-05 Thread Markus Lehtonen
On 04/01/2017, 17.30, "Mariano Lopez" wrote: >On 28/12/16 07:02, Markus Lehtonen wrote: >> It's better just to not have the xml elements than to have elements with >> faux data. One could have git branch named 'unknown', for example. >> >> > >I don't think is a good

Re: [OE-core] [PATCH 0/6] Add opengl to REQUIRED_DISTRO_FEATURES for some recipes

2017-01-05 Thread Richard Purdie
On Wed, 2017-01-04 at 23:49 +, Burton, Ross wrote: > > On 4 January 2017 at 22:57, Christopher Larson > wrote: > > These aren't buildable without it, and adding it fixes oe-core > > world builds > > with nodistro (which does not have the opengl feature by default). > > >

Re: [OE-core] [PATCH 0/6] Add opengl to REQUIRED_DISTRO_FEATURES for some recipes

2017-01-05 Thread Richard Purdie
On Thu, 2017-01-05 at 08:32 +0100, Patrick Ohly wrote: > On Wed, 2017-01-04 at 23:49 +, Burton, Ross wrote: > > > > > > On 4 January 2017 at 22:57, Christopher Larson > > wrote: > > These aren't buildable without it, and adding it fixes oe- > > core > >