[OE-core] [PATCH 00/18] Proposed changes for fido

2015-07-08 Thread Joshua Lock
Please merge the changes on my joshuagl/fido-next branch into fido. Most of the patches are for CVE fixes or fixes for gcc 5 related issues. Cheers, Joshua The following changes since commit 7d445547df528aa9e5bfb85568a7270e27f633ef: subversion: Fix subversion-native on Fedora22 (2015-06-28

Re: [OE-core] [PATCH 1/1] subversion: improve the regex of sed command of SVN_SERF_INCLUDES macro

2015-07-08 Thread Martin Jansa
On Wed, Jul 08, 2015 at 05:03:40PM +0800, Kai Kang wrote: [Yocto #7474] The regex of sed command is too simple, which mangles any -D in strings, for example, a project name is My-Demo, it will be removed from the path by the sed regex, which causes a build failure. Improving it to only

Re: [OE-core] [PATCH 0/4] Fix builds for MIPS64 N32

2015-07-08 Thread Dmitry Eremin-Solenikov
Hello, 2015-07-01 17:02 GMT+03:00 Dmitry Eremin-Solenikov dbarysh...@gmail.com: Quite simple configuration (MIPS64 N32 image) fails to build (see below). I have verified these patches in both single lib and in multilib cases. Tri-lib images and SDK for MIPS build fine with these patches. Any

Re: [OE-core] [PATCH 0/4] Fix builds for MIPS64 N32

2015-07-08 Thread Mark Hatle
On 7/8/15 7:00 AM, Dmitry Eremin-Solenikov wrote: Hello, 2015-07-01 17:02 GMT+03:00 Dmitry Eremin-Solenikov dbarysh...@gmail.com: Quite simple configuration (MIPS64 N32 image) fails to build (see below). I have verified these patches in both single lib and in multilib cases. Tri-lib images

[OE-core] [PATCH] pseudo: Exclude SITEINFO_BITS from checksums

2015-07-08 Thread Richard Purdie
We really want the same sstate checksums for pseudo-native on 32 and 64 bit platforms but the use of SITEINFO_BITS prevents this. Since other things would change if the bit size changes, we can safely exclude this variable and rely on others (e.g. BUILD_ARCH included in WORKDIR) to handle this.

[OE-core] [PATCH] bitbake.conf: Add BUILD_ARCH and SSTATE_PKGARCH to HASHBASE whitelist

2015-07-08 Thread Richard Purdie
As Chris Larson points out in the bug, BUILD_ARCH changing doesn't change native/cross sstate checksums, because its calculated in ${@}, so just its unexpanded form is in the signature. But BUILD_ARCH ends up included in the sstate filenames, so changes to BUILD_ARCH will result in rebuilds of

Re: [OE-core] [PATCH] libdrm: remove git recipe, merge inc

2015-07-08 Thread Burton, Ross
Hi Khem, On 8 July 2015 at 05:16, Khem Raj raj.k...@gmail.com wrote: There might be recipes in other layers which might be using .inc file, drm is sometimes specific to some SOCs. layer index shows that atleast meta-ti assumes .inc to be available and there might be more unlisted or closed

[OE-core] [PATCH] oeqa/bbtests: Fix to ensure DL_DIR is set

2015-07-08 Thread Richard Purdie
write_config overwrites the config rather than appends to it, so ensure we write both variables in one go. Signed-off-by: Richard Purdie richard.pur...@linuxfoundation.org diff --git a/meta/lib/oeqa/selftest/bbtests.py b/meta/lib/oeqa/selftest/bbtests.py index ffe0ea5..7df6b2f 100644 ---

[OE-core] [PATCH 0/2] combo-layer pull changes

2015-07-08 Thread Markus Lehtonen
These patches are an effort to make combo-layer pull operation a bit more predictable. The first patch avoids unwanted merge commits in local component repositories by requiring fast-forward when pulling. The second patch adds a --hard-reset command line option to make sure that the local

[OE-core] [PATCH 1/2] combo-layer: only allow fast-forward when pulling

2015-07-08 Thread Markus Lehtonen
Only allow fast-forward merges in the component repositories when doing git-pull. This makes it possible to spot problems (i.e. rewriting of history) in the component upstream . Also, this change prevents the creation of local-only merge commits in the component repositories. These merges cause

[OE-core] [PATCH] report-error: expand all variables

2015-07-08 Thread Ross Burton
BUILDNAME is now composed from ${DATE} and ${TIME} so needs to be expanded to useful. Whilst fixing this some other variables were explicitly not expanded for no clear reason, so expand those too. Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/classes/report-error.bbclass | 8

[OE-core] [PATCH 2/2] combo-layer: implement --hard-reset option

2015-07-08 Thread Markus Lehtonen
This option causes combo-layer to do git fetch and hard reset instead of git pull in the component repositories. This makes sure that the local component repositories are always in sync with the remote - tolerating force pushes and overriding any locally made changes. Signed-off-by: Markus

Re: [OE-core] [PATCH] python-io: Add runtime dependency on contextlib

2015-07-08 Thread Burton, Ross
On 7 July 2015 at 22:22, Ash Charles ashchar...@gmail.com wrote: This applied to Python 2.7.9 but not 3.3. Do you mean this isn't applicable to python 3.3 or you haven't checked with 3.3? Ross -- ___ Openembedded-core mailing list

[OE-core] [PATCH] oeqa/sstatetests: Add test for comparing 32 and 64 bit sstate checksums

2015-07-08 Thread Richard Purdie
The sstate checksums for both native and target should not vary whether they're built on a 32 or 64 bit system. Rather than requiring two different build machines and running a builds, override the variables calling uname() manually and check using bitbake -S. [YOCTO #5970] Signed-off-by:

Re: [OE-core] [PATCH 0/4] Fix builds for MIPS64 N32

2015-07-08 Thread Richard Purdie
On Wed, 2015-07-08 at 15:00 +0300, Dmitry Eremin-Solenikov wrote: Hello, 2015-07-01 17:02 GMT+03:00 Dmitry Eremin-Solenikov dbarysh...@gmail.com: Quite simple configuration (MIPS64 N32 image) fails to build (see below). I have verified these patches in both single lib and in multilib

[OE-core] [PATCH] ltp: Add inhibit of split

2015-07-08 Thread wenzong.fan
From: Yue Tao yue@windriver.com With the recent change to allow strip and split of packages to be controlled seperately, ltp will sometimes fail to build properly. So in addition to the existing inhibit strip, we also want to inhibit split. Signed-off-by: Yue Tao yue@windriver.com ---

Re: [OE-core] FW: [oe] [meta-oe][PATCH] parted_1.8.6.bb: add parted that not GPLv3

2015-07-08 Thread Lei, Maohui
Hi Otavio Who's going to provide ongoing maintenance for all that? I would like Lei to establish himself as the maintainer (through the maintainers.inc file). Agreed; 2007 I was still one of developers of it IIRC and since then, Jim has improved it quite a lot. Thank you. To be

[OE-core] [PATCH V2 1/1] nfs-utils: fix to start nfs-server correctly in systemd

2015-07-08 Thread Chen Qi
Add /etc/modules-load.d/nfsd.conf so that the system loads nfsd at start-up. Add proc-fs-nfsd.mount systemd unit file because it's needed for nfs server to start correctly. After this change, in a systemd based image, we can use `systemctl start nfs-server' to start the nfs server and things

[OE-core] [PATCH V2 0/1] nfs-utils: fix to start nfs-server correctly in systemd

2015-07-08 Thread Chen Qi
The following changes since commit df6ddc4bf9795212fda87f9d401893eb254074da: file: fix long-options (2015-07-07 23:57:14 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib ChenQi/nfs-utils-systemd

[OE-core] [PATCH 1/1] nfs-utils: fix to start nfs-server correctly in systemd

2015-07-08 Thread Chen Qi
1. Change RRECOMMENDS to RDEPENDS for kernel-module-nfsd because this kernel module is a necessity for nfs server. 2. Add proc-fs-nfsd.mount systemd unit file because it's needed for nfs server to start correctly. After this change, in a systemd based image, we can use `systemctl start

[OE-core] [PATCH 0/1] nfs-utils: fix to start nfs-server correctly in systemd images

2015-07-08 Thread Chen Qi
The following changes since commit df6ddc4bf9795212fda87f9d401893eb254074da: file: fix long-options (2015-07-07 23:57:14 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib ChenQi/nfs-utils-systemd

Re: [OE-core] [PATCH 1/1] nfs-utils: fix to start nfs-server correctly in systemd

2015-07-08 Thread Mike Looijmans
On 08-07-15 10:07, Chen Qi wrote: 1. Change RRECOMMENDS to RDEPENDS for kernel-module-nfsd because this kernel module is a necessity for nfs server. No it is not! Like any kernel module, it can be built in, and then there will be no such package, and the package becomes uninstallable.

[OE-core] [PATCH 1/1] subversion: improve the regex of sed command of SVN_SERF_INCLUDES macro

2015-07-08 Thread Kai Kang
[Yocto #7474] The regex of sed command is too simple, which mangles any -D in strings, for example, a project name is My-Demo, it will be removed from the path by the sed regex, which causes a build failure. Improving it to only delete the -D behind of a space or the -D at start of a string.

[OE-core] [PATCH 0/1] Improve the regex of sed command of SVN_SERF_INCLUDES macro of subversion

2015-07-08 Thread Kai Kang
The following changes since commit 8ad9a434c9fd0300cf5c38c368b181b78421e95a: bitbake: tests/data: Add new data tests (2015-07-01 15:40:21 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib kangkai/subversion

Re: [OE-core] FW: [oe] [meta-oe][PATCH] parted_1.8.6.bb: add parted that not GPLv3

2015-07-08 Thread Lei, Maohui
Hi Ross There's a good argument for this, so send a tested patch and it can be reviewed. OK. I will add some comments in the eight patches of recipe, and send the patch later. Cheers Lei From: Burton, Ross [mailto:ross.bur...@intel.com] Sent: Tuesday, July 07, 2015 4:19 PM To: Lei,

[OE-core] [PATCH v2] apr: Fix packet discards HTTP redirect

2015-07-08 Thread wenzong.fan
From: Li Wang li.w...@windriver.com Disconnect the connection by poll() timeout. If timeout=0 and apr_wait_for_io_or_timeout()=APR_TIMEUP then apr_socket_recv() returns EAGAIN. Signed-off-by: Noriaki Yoshitane yoshitane@cnt.ncos.nec.co.jp Signed-off-by: Li Wang li.w...@windriver.com ---

[OE-core] [PATCH 1/1] systemd: fix immediate unmount of mountpoints not in fstab

2015-07-08 Thread Joshua Lock
Systemd 219 immediately unmounts any mounts which don't exist in fstab. See FDo bug #89383: https://bugs.freedesktop.org/show_bug.cgi?id=89383 Patch from Fedora: http://pkgs.fedoraproject.org/cgit/systemd.git/commit/?h=f22id=9bbe0e92dc59d5a42258c729b105a7d9901eb35e Signed-off-by: Joshua Lock

[OE-core] [PATCH 0/1] Fix mount when using systemd

2015-07-08 Thread Joshua Lock
This series imports a fix for mount when using systemd from Fedora. The following changes since commit df6ddc4bf9795212fda87f9d401893eb254074da: file: fix long-options (2015-07-07 23:57:14 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib

Re: [OE-core] [PATCH] python-io: Add runtime dependency on contextlib

2015-07-08 Thread Ash Charles
On Jul 8, 2015 4:20 AM, Burton, Ross ross.bur...@intel.com wrote: On 7 July 2015 at 22:22, Ash Charles ashchar...@gmail.com wrote: This applied to Python 2.7.9 but not 3.3. Do you mean this isn't applicable to python 3.3 or you haven't checked with 3.3? It is not applicable to 3.3. Ash --

Re: [OE-core] [PATCH] Fix packet discards HTTP redirect.

2015-07-08 Thread Burton, Ross
As per our commit guidelines, the commit message needs to start with the name of the recipe that was modified. Ross On 8 July 2015 at 08:32, wenzong@windriver.com wrote: From: Li Wang li.w...@windriver.com Disconnect the connection by poll() timeout. If timeout=0 and

Re: [OE-core] [PATCH 1/2] testimage: Support full TC path such oeqa.runtime.pnp.get_memory_size in TEST_SUITES

2015-07-08 Thread Richard Purdie
On Thu, 2015-07-02 at 01:52 +, Shen, Cathy wrote: Are we OK with this patch? To be honest, I was a bit confused as it said 1/2 and there never was a 2/2 until a week later and I didn't connect the two. For future reference, the correct way to reference bugzilla in the commit message is:

[OE-core] [PATCH] oeqa/runtime: Added 4 new runtime test cases

2015-07-08 Thread Daniel Istrate
bash:(240) check bash in image connman: (223) Only one connmand in background (963) test connmand file rpm: (195) Check rpm install/removal log file size Signed-off-by: Daniel Istrate daniel.alexandrux.istr...@intel.com --- meta/lib/oeqa/runtime/bash.py| 23

Re: [OE-core] [PATCH 0/2] Add UEFI firmware for qemux86*

2015-07-08 Thread Leonardo Sandoval
Feedback was related to the one of the commit's log (I used the word Poky instead of OE-Core). I will send a V2 patch and send it. Leo On 07/08/2015 09:36 AM, Richard Purdie wrote: On Tue, 2015-07-07 at 10:24 -0500, Leonardo Sandoval wrote: ping There was a piece of feedback on the series

[OE-core] [PATCH V2 0/2] Add UEFI firmware for qemux86*

2015-07-08 Thread leonardo . sandoval . gonzalez
From: Leonardo Sandoval leonardo.sandoval.gonza...@linux.intel.com These two patches include: 1. Recipe: Including the OVMF recipe (taken from luv-yocto repository) into OE-Core 2. Boot script: Instrumenting runqemu to include OECORE_MACHINE_SYSROOT, so the OVMF BIOS can be found.

[OE-core] [PATCH V2 2/2] runqemu: Define OECORE_MACHINE_SYSROOT on setup_sysroot

2015-07-08 Thread leonardo . sandoval . gonzalez
From: Leonardo Sandoval leonardo.sandoval.gonza...@linux.intel.com At least the OVFM (UEFI Firmware for Qemu and KVM) recipe stores the BIOS under $OE_TMPDIR/sysroots/$MACHINE, now defined as OECORE_MACHINE_SYSROOT. The latter is used when searching BIOS, VGA BIOS and keymaps. As a example, to

[OE-core] [PATCH] Fix packet discards HTTP redirect.

2015-07-08 Thread wenzong.fan
From: Li Wang li.w...@windriver.com Disconnect the connection by poll() timeout. If timeout=0 and apr_wait_for_io_or_timeout()=APR_TIMEUP then apr_socket_recv() returns EAGAIN. Signed-off-by: Noriaki Yoshitane yoshitane@cnt.ncos.nec.co.jp Signed-off-by: Li Wang li.w...@windriver.com ---

Re: [OE-core] [PATCH V2 1/2] ovmf: Recipe taken from luv-yocto repository

2015-07-08 Thread Leonardo Sandoval
The new set of patches are failing so I will send a V3! The reason is that the ovmf source code has ^M line endings and the .patch I send does not, so when bitbake is trying to patch, there are patch errors. On 07/08/2015 11:46 AM, Neri, Ricardo wrote: On Wed, 2015-07-08 at 17:34 +0100,

[OE-core] [PATCH 0/1] harfbuzz: upgrade to 0.9.41

2015-07-08 Thread Cristian Iorga
The following changes since commit 0aaa67a790ab211b35eed58173efa115ceb6e243: oeqa/bbtests: Fix to ensure DL_DIR is set (2015-07-08 13:09:28 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib ciorga/PUs

[OE-core] [PATCH 1/1] harfbuzz: upgrade to 0.9.41

2015-07-08 Thread Cristian Iorga
Fix hb-coretext with trailing whitespace in right-to-left. New API: hb_buffer_reverse_range(). Allow implementing atomic ops in config.h. Fix hb_language_t in language bindings. Misc fixes. Signed-off-by: Cristian Iorga cristian.io...@intel.com --- .../harfbuzz/{harfbuzz_0.9.40.bb =

[OE-core] [PATCH] gnome-icon-theme: inherit allarch

2015-07-08 Thread Ross Burton
The intltool 0.51 doesn't do compile tests in the autoconf macros, so this recipe can be allarch again. Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH][V2] intltool: Upgrade 0.50.2 - 0.51.0

2015-07-08 Thread Ross Burton
From: Jussi Kukkonen jussi.kukko...@intel.com * Remove uclibc.patch as the whole localedir guessing code has been removed upstream. * Add patch to fix deprecation warnings (and the resulting broken install paths) when using Perl 5.22 (RB) Signed-off-by: Jussi Kukkonen

Re: [OE-core] [PATCH] gnome-icon-theme: inherit allarch

2015-07-08 Thread Martin Jansa
How can it be allarch when it depends on TUNE_PKGARCH glib-2.0? On Wed, Jul 8, 2015 at 10:02 PM, Ross Burton ross.bur...@intel.com wrote: The intltool 0.51 doesn't do compile tests in the autoconf macros, so this recipe can be allarch again. Signed-off-by: Ross Burton ross.bur...@intel.com

[OE-core] [PATCH][V2] gnome-icon-theme: inherit allarch

2015-07-08 Thread Ross Burton
The intltool 0.51 doesn't do compile tests in the autoconf macros, so this recipe can be allarch again. Remove dependency on target glib-2.0, it doesn't appear to be required. Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | 4 ++-- 1

Re: [OE-core] [PATCH] gnome-icon-theme: inherit allarch

2015-07-08 Thread Burton, Ross
On 8 July 2015 at 22:15, Martin Jansa martin.ja...@gmail.com wrote: How can it be allarch when it depends on TUNE_PKGARCH glib-2.0? Spurious dependency, locally removed. Will send a V2. Ross -- ___ Openembedded-core mailing list

[OE-core] [PATCH 3/3] python-smartpm: 1.4.1 - 1.5

2015-07-08 Thread Robert Yang
* Remove the following patches since the are already in the source: smart-config-ignore-all-recommends.patch smart-conflict-provider.patch smart-dflags.patch smart-filename-NAME_MAX.patch smart-flag-exclude-packages.patch smart-flag-ignore-recommends.patch smart-metadata-match.patch

[OE-core] [PATCH 1/3] less: 471 - 478

2015-07-08 Thread Robert Yang
* Remove backport patch 0001-Fix-possible-buffer-overrun-with-invalid-UTF-8.patch. * The LICENSE's checksum changed because of year changed, the contents are the same. Signed-off-by: Robert Yang liezhi.y...@windriver.com --- ...ossible-buffer-overrun-with-invalid-UTF-8.patch | 49

[OE-core] [PATCH 2/3] elfutils: 0.162 - 0.163

2015-07-08 Thread Robert Yang
Signed-off-by: Robert Yang liezhi.y...@windriver.com --- ...m-Silence-Werror-maybe-uninitialized-fals.patch |0 .../0001-remove-the-unneed-checking.patch |0 .../arm_backend.diff |0 .../arm_func_value.patch |0

[OE-core] [PATCH 0/3 V2] Upgrade smartpm, less and elfutils

2015-07-08 Thread Robert Yang
* V2: Sent the correct patches * V1: Tested world core-image-sato core-image-sato-sdk build on: qemux86 qemux86-64 qemuarm qemuarm64 qemuppc qemumpis Also tested core-image-sato on rpm_4.11.2. // Robert The following changes since commit df6ddc4bf9795212fda87f9d401893eb254074da: file:

[OE-core] [PATCH 2/2] systemd: add PACKAGECONFIG selinux

2015-07-08 Thread Kai Kang
Add PACKAGECONFIG 'selinux' for systemd. debug-shell.service starts different shell according whether selinux is enabled. Signed-off-by: Kai Kang kai.k...@windriver.com --- meta/recipes-core/systemd/systemd_219.bb | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git

[OE-core] [PATCH 1/2] initscripts: add /sbin/sushell for systemd service debug-shell

2015-07-08 Thread Kai Kang
Add file /sbin/sushell for systemd service debug-shell which starts with /bin/sushell when SELinux is enabled. Copy and add sushell file from Fedora 22. Add runtime dependency bash as well when systemd is enabled to eliminate QA warning: WARNING: QA Issue: /sbin/sushell_initscripts contained in

[OE-core] [PATCH 0/2] V2: Add /sbin/sushell when SELinux is enabled

2015-07-08 Thread Kai Kang
debug-shell.service from systemd starts different shell according to whether selinux is enabled. If selinux is enabled, it starts /sbin/sushell. Add /sbin/sushell from fedora. Tested with and without layer meta-selinux for x86-64. The following changes since commit

[OE-core] [PATCH 3/3] python-smartpm: 1.4.1 - 1.5

2015-07-08 Thread Robert Yang
Signed-off-by: Robert Yang liezhi.y...@windriver.com --- .../python/python-smartpm/smart-attempt.patch | 164 ++- .../smart-config-ignore-all-recommends.patch | 24 - .../python-smartpm/smart-conflict-provider.patch | 196 .../python/python-smartpm/smart-dflags.patch |

[OE-core] [PATCH 2/3] elfutils: 0.162 - 0.163

2015-07-08 Thread Robert Yang
Signed-off-by: Robert Yang liezhi.y...@windriver.com --- ...m-Silence-Werror-maybe-uninitialized-fals.patch |0 .../0001-remove-the-unneed-checking.patch |0 .../arm_backend.diff |0 .../arm_func_value.patch |0

[OE-core] [PATCH 1/3] less: 471 - 478

2015-07-08 Thread Robert Yang
* Remove backport patch 0001-Fix-possible-buffer-overrun-with-invalid-UTF-8.patch. * The LICENSE's checksum changed because of year changed, the contents are the same. Signed-off-by: Robert Yang liezhi.y...@windriver.com --- ...ossible-buffer-overrun-with-invalid-UTF-8.patch | 49

[OE-core] [PATCH 0/3] Upgrade smartpm, less and elfutils

2015-07-08 Thread Robert Yang
Tested world core-image-sato core-image-sato-sdk build on: qemux86 qemux86-64 qemuarm qemuarm64 qemuppc qemumpis Also tested core-image-sato on rpm_4.11.2. // Robert The following changes since commit df6ddc4bf9795212fda87f9d401893eb254074da: file: fix long-options (2015-07-07 23:57:14

[OE-core] [PATCH] i2c-tools: uprev to 3.1.2

2015-07-08 Thread Randy MacLeod
The only changes based on the CHANGES file are: decode-dimms: Fix DDR3 extended temp range refresh rate decoding py-smbus: Add support for python 3 The python3 changes use python3 as the default and 2 as the fallback. py-smbus is not currently built so no python changes have been made. The

Re: [OE-core] [PATCH] Fix packet discards HTTP redirect.

2015-07-08 Thread wenzong fan
On 07/08/2015 10:12 PM, Burton, Ross wrote: As per our commit guidelines, the commit message needs to start with the name of the recipe that was modified. Fixed it, please refer to: [OE-core] [PATCH v2] apr: Fix packet discards HTTP redirect Thanks Wenzong Ross On 8 July 2015 at 08:32,

Re: [OE-core] [PATCH 0/1] Fix build path in expect-dev pkg

2015-07-08 Thread Kang Kai
On 2015年07月01日 11:24, Kai Kang wrote: The following changes since commit 410a6377493ebf3fa21045c390693f021149c241: bitbake: tests/data: Add new data tests (2015-06-30 09:06:35 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib kangkai/expect

[OE-core] [PATCH 0/2] [master][dizzy] Enable Marvel 8897 Wifi feature

2015-07-08 Thread wei . tee . ng
From: Ng Wei Tee wei.tee...@intel.com Hi all, I would like to add hostapd and iw configuration for enabling Marvell 8897 Wifi feature. Hostapd and iw configuration were created in the recipes-connectivity layer to enable Marvell 8897 module function in AP mode and STA mode. Please review and

[OE-core] [PATCH 1/2] recipes-connectivity: Add hostapd configuration for enabling Marvell 8897 WiFi feature

2015-07-08 Thread wei . tee . ng
From: Ng Shui Lei shui.lei...@intel.com Hostapd features was created in the recipes-connectivity layer to enable Marvell 8897 module in AP mode and STA mode. Signed-off-by: Ng Shui Lei shui.lei...@intel.com Signed-off-by: Ng Wei Tee wei.tee...@intel.com --- .../hostapd/hostapd-2.2/defconfig

[OE-core] [PATCH 2/2] recipes-connectivity: Add iw configuration for enabling Marvell 8897 WiFi feature

2015-07-08 Thread wei . tee . ng
From: Ng Shui Lei shui.lei...@intel.com iw features was created in the recipes-connectivity layer to enable Marvell 8897 module in AP mode and STA mode. iw is a new nl80211 based CLI configuration utility for wireless devices. Signed-off-by: Ng Shui Lei shui.lei...@intel.com Signed-off-by: Ng

Re: [OE-core] [PATCH 1/1] subversion: improve the regex of sed command of SVN_SERF_INCLUDES macro

2015-07-08 Thread Kang Kai
On 2015年07月08日 18:36, Martin Jansa wrote: On Wed, Jul 08, 2015 at 05:03:40PM +0800, Kai Kang wrote: [Yocto #7474] The regex of sed command is too simple, which mangles any -D in strings, for example, a project name is My-Demo, it will be removed from the path by the sed regex, which causes a

Re: [OE-core] FW: [oe] [meta-oe][PATCH] parted_1.8.6.bb: add parted that not GPLv3

2015-07-08 Thread Lei, Maohui
Hi Alex Who's going to provide ongoing maintenance for all that? I would like Lei to establish himself as the maintainer (through the maintainers.inc file). Thank you. I'm very glad to do that. Cheers Lei -Original Message- From:

Re: [OE-core] [PATCH V2 1/2] ovmf: Recipe taken from luv-yocto repository

2015-07-08 Thread Richard Purdie
On Wed, 2015-07-08 at 12:09 -0500, Leonardo Sandoval wrote: The new set of patches are failing so I will send a V3! The reason is that the ovmf source code has ^M line endings and the .patch I send does not, so when bitbake is trying to patch, there are patch errors. You probably need to

[OE-core] [PATCH 0/1] kernel-yocto: fix machine_srcrev check in do_patch

2015-07-08 Thread Petter Mabäcker
The following changes since commit 0aaa67a790ab211b35eed58173efa115ceb6e243: oeqa/bbtests: Fix to ensure DL_DIR is set (2015-07-08 13:09:28 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib petmab/fix_faulty_srcrev_check

[OE-core] [PATCH 1/1] kernel-yocto: fix machine_srcrev check in do_patch

2015-07-08 Thread Petter Mabäcker
do_patch is currently doing checks with machine_srcrev without initiate it which leads to below (additional debug added): DEBUG: Executing shell function do_patch . . . + [ 0 -ne 0 ] + [ != AUTOINC ] + git rev-parse --verify ~0 fatal: Needed a single revision + git merge-base HEAD