Re: [OE-core] [PATCH] slang: add ptest

2017-03-06 Thread Burton, Ross
On 2 March 2017 at 17:29, Stefan Strogin wrote: > + cp -r ${S}/src/test ${D}${PTEST_PATH}/ > + mkdir ${D}${PTEST_PATH}/objs > + cp ${S}/src/objs/libslang.a ${D}${PTEST_PATH}/objs/ > Why? If this is because the tests need sltest, that's already been built

Re: [OE-core] [PATCH] sstate.bbclass: update .siginfo atime

2017-03-06 Thread Burton, Ross
On 1 March 2017 at 14:28, Ed Bartosh wrote: > + [ -h ${SSTATE_PKG}.siginfo ] && touch -a ${SSTATE_PKG}.siginfo > I think you need to end this with || true to eat the failure if the test fails. Ross -- ___

Re: [OE-core] [RFC/PATCH] boost: Fix issue with python-numpy

2017-03-06 Thread Burton, Ross
On 4 March 2017 at 16:26, Moritz Fischer wrote: > Maybe making it another PACKAGECONFIG[numpy] option > would be desirable? > Making another option would definitely be desirable. Ross -- ___ Openembedded-core mailing list

Re: [OE-core] [PATCH v2] ghostscript: build and install libgs

2017-03-06 Thread Burton, Ross
On 6 March 2017 at 08:13, Andrew Shadura wrote: > Build and install libgs library, which is a build dependency > of a few other libraries, such as libspectre. > > We don't want to ship the executable binaries, only the library and its > headers, hence oe_runmake

Re: [OE-core] Fwd: [PATCH] busybox: conditional inclusion of login utilities

2017-03-06 Thread Burton, Ross
On 6 March 2017 at 08:31, David Vincent wrote: > + ${@["", "file://login-utilities.cfg"][(d.getVar('VIRTUAL- > RUNTIME_login_manager') == 'busybox')]} \ > VIRTUAL_RUNTIME can be set per-image, so you can't do this. Ross --

Re: [OE-core] Fwd: [PATCH] busybox: conditional inclusion of login utilities

2017-03-06 Thread David Vincent
On lundi 6 mars 2017 13:48:22 CET Burton, Ross wrote: > On 6 March 2017 at 08:31, David Vincent wrote: > > + ${@["", "file://login-utilities.cfg"][(d.getVar('VIRTUAL- > > RUNTIME_login_manager') == 'busybox')]} \ > > VIRTUAL_RUNTIME can be set per-image, so you

Re: [OE-core] libglu: dependency on x11

2017-03-06 Thread Burton, Ross
On 5 March 2017 at 18:35, Gabriel Huau wrote: > I thought it was possible to have an implementation of libGL.so without > X11, for example by using Wayland or any other Window System, I didn't know > that the libGL was tied to X11 (on Linux). Also, I didn't see any

Re: [OE-core] [PATCH] sstate.bbclass: update .siginfo atime

2017-03-06 Thread Ed Bartosh
On Mon, Mar 06, 2017 at 11:14:49AM +, Burton, Ross wrote: > On 1 March 2017 at 14:28, Ed Bartosh wrote: > > > + [ -h ${SSTATE_PKG}.siginfo ] && touch -a ${SSTATE_PKG}.siginfo > > > > I think you need to end this with || true to eat the failure if the test >

Re: [OE-core] [morty][PATCH] busybox: refresh the flock patch

2017-03-06 Thread John, Maxin
Hi Armin, It looks like this fell through the cracks. Please consider this for morty. -Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Maxin B. John Sent: Tuesday, January 17, 2017 6:21 PM

Re: [OE-core] [PATCH] wic: Prevent duplicate entries on fstab

2017-03-06 Thread Fabio Berton
Same error with poky-contrib:ed/wic/wip, we need to add --fstype= to part /boot line in all wks files. On 03/03/2017 10:49 AM, Burton, Ross wrote: On 3 March 2017 at 12:12, Fabio Berton > wrote: Sorry for delay. This

Re: [OE-core] [PATCH v2] busybox: 1.24.1 -> 1.26.2

2017-03-06 Thread Burton, Ross
On 9 February 2017 at 10:33, zhengrq wrote: > 1) Upgrade busybox from 1.24.1 to 1.26.2 > With busybox 1.24.1, the busybox package contains a /bin/sh -> busybox.nosuid symlink and update-alternatives knows about the /bin/sh -> busybox.nosuid alternative. With

[OE-core] [PATCH 2/5] targetcontrol: add image_fstype argument to commands.runqemu

2017-03-06 Thread Ed Bartosh
qemu runner picks up first fsimage type from the hard-coded list of supported types. This makes it impossible to test particular image type unless it's not ext4(first type in the hardcoded list of types). Added image_fstypes argument to commands.runqemu and QemuTarget __init__ to specify type of

[OE-core] [PATCH 4/5] qemurunner.py: ignore decode errors

2017-03-06 Thread Ed Bartosh
qemu output can contain control characters. This cause qemurunner API to crash when decoding the output to utf-8: Traceback (most recent call last): File "/usr/lib64/python3.4/threading.py", line 911, in _bootstrap_inner self.run() File "meta/lib/oeqa/utils/qemurunner.py", line 472, in

Re: [OE-core] [PATCH] pulseaudio: 9.0 -> 10.0

2017-03-06 Thread Burton, Ross
On 27 February 2017 at 11:40, Burton, Ross wrote: > Typical. :/ Thanks for trying, I must have something locally that > triggers it. > So I grabbed scanelf to look into this quickly: scanelf: scanelf_file_textrels(): ELF pulseaudio has TEXTREL markings but doesnt appear

[OE-core] [PATCH 5/5] selftest: remove extra backslashes from debug output

2017-03-06 Thread Ed Bartosh
Remove unneeded backslashes from the format strings that caused debug output to look confusing: 2017-03-06 16:52:42,428 - selftest.base - DEBUG - Removing from: ... \IMAGE_FSTYPES = "wic" WKS_FILE = "mkefidisk.wks" Signed-off-by: Ed Bartosh ---

[OE-core] [PATCH 3/5] selftest: test wic efi image in qemu

2017-03-06 Thread Ed Bartosh
Added test_qemu_efi test case to wic test suite. It uses ovmf qemu extention to test mkefidisk image. Signed-off-by: Ed Bartosh --- meta/lib/oeqa/selftest/wic.py | 14 ++ 1 file changed, 14 insertions(+) diff --git a/meta/lib/oeqa/selftest/wic.py

[OE-core] [PATCH v3 0/4] Make qemu.inc useful for generic use

2017-03-06 Thread Nathan Rossi
This series is intended to make the qemu.inc more generic and useful for other recipes to use. This is achieved by moving version specific patches, task steps and ptest support into the qemu_*.bb recipe, additionally improvements are made to the PACKAGECONFIG options and changes to the configure

[OE-core] [PATCH v3 2/4] qemu: Consolidate EXTRA_OECONF

2017-03-06 Thread Nathan Rossi
Consolidate the configure options into the EXTRA_OECONF variable, including merging any native(sdk) specific options. This consolidation also makes the use of 'system' pixman in the nativesdk case, this is desirable as the QEMU internal pixman may not be available (using QEMU git as opposed to

[OE-core] [PATCH v3 3/4] qemu: Convert KVMOPTS to PACKAGECONFIG

2017-03-06 Thread Nathan Rossi
Move the KVMOPTS configuration checks and option setting to a PACKAGECONFIG option. This also changes the checking of KVM support on the host build machine so that it is processed as a PACKAGECONFIG _remove for class-native only. The darwin/mingw32 overrides are kept and applied as _remove

[OE-core] [PATCH v3 4/4] qemu: Move recipe version specific patches and features to recipe

2017-03-06 Thread Nathan Rossi
Move all the version specific patches, overrides and configuration that are in qemu.inc to the versioned QEMU recipe. This includes moving patches that target the versioned recipe, ptest configuration (which is not available in QEMU by default) and the installing of the powerpc_rom.bin. All

[OE-core] [PATCH v3 1/4] qemu: Improve and add PACKAGECONFIG options

2017-03-06 Thread Nathan Rossi
Move the '--disable-bluez' and '--disable-iscsi' options to PACKAGECONFIG. And added the ${BLUEZ} dependency. Fix up the 'gcrypt' option to depend on 'libgcrypt' instead of gcrypt. This is the expected dependency as noted in the QEMU configure help. Handle the '--audio-drv-list' option inside

Re: [OE-core] [PATCH V7] go: Add recipes for golang compilers and tools

2017-03-06 Thread Leonardo Sandoval
For the moment, manually cutting & pasting patchtest results: * Issue Added patch file is missing Upstream-Status in the header [test_upstream_status_presence] Suggested fixAdd Upstream-Status: to the header of

[OE-core] [PATCH 0/5] test efi images in qemu

2017-03-06 Thread Ed Bartosh
Hi, This patchset adds testing of efi images in qemu to the wic test suite, related oe-selftest API changes and small improvements. The following changes since commit 4188e53f803aefdb26768abfad591283662cd27e: poky: make 4.10 the qemu* default (2017-03-04 23:19:03 +) are available in the

[OE-core] [PATCH 1/5] qemurunner: add runqemuparams argument to commands.runqemu

2017-03-06 Thread Ed Bartosh
Added possibility to pass additional runqemu parameters down the stack of APIs: commands.runqemu -> QemuTarget.start -> QemuRunner.start This will be used to pass ovmf parameter in testing of efi wic images under qemu. Signed-off-by: Ed Bartosh ---

Re: [OE-core] [PATCH 1/1] bash: 4.3.30 -> 4.4

2017-03-06 Thread Burton, Ross
The loadable package is empty when I do a build, do these have some floating build dependency? Ross On 22 February 2017 at 02:25, Hongxu Jia wrote: > From: Zheng Ruoqin > > 1) Upgrade bash from 4.3.30 to 4.4 > 2) Delete 1 patche below,

[OE-core] Yocto Project Status WW10’17

2017-03-06 Thread Jolley, Stephen K
Current Dev Position: YP 2.3 M3 Next Deadline: YP 2.3 M3 by Feb. 27, 2017 *** FEATURE FREEZE for 2.3 is now in effect. *** SWAT team rotation: Todor -> Tracy on Mar. 4, 2017. SWAT team rotation: Tracy -> Alejandro on Mar. 11, 2017.

[OE-core] [PATCH v2] sstate.bbclass: update .siginfo atime

2017-03-06 Thread Ed Bartosh
.siginfo files are not being accessed from local or NFS-mounted sstate mirrors when sstate package is installed, so their atime is not updated. If sstate mirror is cleaned based on access time, they get deleted, even though they are still being used. Updated atime of .siginfo symlinks with 'touch

Re: [OE-core] [PATCH v2] sstate.bbclass: update .siginfo atime

2017-03-06 Thread Burton, Ross
On 6 March 2017 at 15:31, Ed Bartosh wrote: > + [ -h ${SSTATE_PKG}.siginfo ] && touch -a ${SSTATE_PKG}.siginfo > $ ( [ -h / ] && echo something ); echo $? 1 If the -h fails then this is still going to cause sstate_unpack_package to trap. Ross --

Re: [OE-core] [jethro][PATCH] Forklift OpenSSL 1.0.k to Jethro

2017-03-06 Thread akuster808
On 03/05/2017 07:20 PM, Rebecca Chang Swee Fun wrote: From: "Chang, Rebecca Swee Fun" Hi all, This is an version upgrade for OpenSSL from 1.0.2h to 1.0.2k. The upgrade was forklifted from OE-Core master branch to Jethro branch and remove upstream

Re: [OE-core] [PATCH] wic: Prevent duplicate entries on fstab

2017-03-06 Thread Ed Bartosh
On Mon, Mar 06, 2017 at 03:48:00PM -0300, Fabio Berton wrote: > Hi Ed, > > The main motivation to my patch is prevent to duplicate entries. For > example, if I add to my fstab line: > > LABEL=data /dataauto defaults 0 1 > > and add to wsk file: > > part

Re: [OE-core] something seems to have happened to "gpgme" in latest oe-core

2017-03-06 Thread Mark Hatle
FYI, I'm experiencing the same issue on master. --Mark On 2/20/17 11:40 AM, Burton, Ross wrote: > > On 20 February 2017 at 11:54, Robert P. J. Day > wrote: >> gpgme config.log attached. > > cc1: warning: include location

[OE-core] [PATCH V7] go: Add recipes for golang compilers and tools

2017-03-06 Thread Khem Raj
* This is converging the recipes for go from meta-virtualization and oe-meta-go * Add recipes for go 1.7 * go.bbclass is added to ease out writing recipes for go packages * go-examples: Add an example, helloworld written in go This should serve as temlate for writing go recipes

Re: [OE-core] [PATCH v2] sstate.bbclass: update .siginfo atime

2017-03-06 Thread Ed Bartosh
On Mon, Mar 06, 2017 at 04:49:25PM +, Burton, Ross wrote: > On 6 March 2017 at 15:31, Ed Bartosh wrote: > > > + [ -h ${SSTATE_PKG}.siginfo ] && touch -a ${SSTATE_PKG}.siginfo > > > > $ ( [ -h / ] && echo something ); echo $? > 1 > > If the -h fails then

Re: [OE-core] [PATCH] wic: Prevent duplicate entries on fstab

2017-03-06 Thread Ed Bartosh
On Mon, Mar 06, 2017 at 11:00:59AM -0300, Fabio Berton wrote: > Same error with poky-contrib:ed/wic/wip, we need to add --fstype= to > part /boot line in all wks files. > Only if we want boot partitions to be added to fstab. Currently / and /boot partitions are not added. Why do we want to change

Re: [OE-core] [PATCH V7] go: Add recipes for golang compilers and tools

2017-03-06 Thread Khem Raj
On Mon, Mar 6, 2017 at 7:05 AM, Leonardo Sandoval wrote: > For the moment, manually cutting & pasting patchtest results: > > > * Issue Added patch file is missing Upstream-Status in the > header [test_upstream_status_presence] > Suggested

Re: [OE-core] [PATCH] wic: Prevent duplicate entries on fstab

2017-03-06 Thread Fabio Berton
Hi Ed, The main motivation to my patch is prevent to duplicate entries. For example, if I add to my fstab line: LABEL=data /dataauto defaults 0 1 and add to wsk file: part /data --ondisk mmcblk0 --fstype=ext4 --label data --align 8192 --size 500M

Re: [OE-core] [PATCH v2] sstate.bbclass: update .siginfo atime

2017-03-06 Thread Patrick Ohly
On Mon, 2017-03-06 at 19:50 +0200, Ed Bartosh wrote: > On Mon, Mar 06, 2017 at 04:49:25PM +, Burton, Ross wrote: > > On 6 March 2017 at 15:31, Ed Bartosh wrote: > > > > > + [ -h ${SSTATE_PKG}.siginfo ] && touch -a ${SSTATE_PKG}.siginfo > > > > > > > $ ( [

Re: [OE-core] [PATCH V7] go: Add recipes for golang compilers and tools

2017-03-06 Thread Matt Madison
On Fri, Mar 3, 2017 at 3:18 PM, Khem Raj wrote: > * This is converging the recipes for go from > meta-virtualization and oe-meta-go > > * Add recipes for go 1.7 > > * go.bbclass is added to ease out writing > recipes for go packages > > * go-examples: Add an example,

Re: [OE-core] [PATCH v2] sstate.bbclass: update .siginfo atime

2017-03-06 Thread Ed Bartosh
On Mon, Mar 06, 2017 at 08:31:55PM +0100, Patrick Ohly wrote: > On Mon, 2017-03-06 at 19:50 +0200, Ed Bartosh wrote: > > On Mon, Mar 06, 2017 at 04:49:25PM +, Burton, Ross wrote: > > > On 6 March 2017 at 15:31, Ed Bartosh wrote: > > > > > > > + [ -h

Re: [OE-core] [RFC/PATCH] boost: Fix issue with python-numpy

2017-03-06 Thread Moritz Fischer
Ross, On Mon, Mar 6, 2017 at 1:23 PM, Burton, Ross wrote: > Making another option would definitely be desirable. So would you apply the patch to remove it if not PACKAGECONFIG[numpy]? Cheers, Moritz -- ___ Openembedded-core

Re: [OE-core] [PATCH V7] go: Add recipes for golang compilers and tools

2017-03-06 Thread Burton, Ross
On 6 March 2017 at 18:46, Khem Raj wrote: > * This is converging the recipes for go from > meta-virtualization and oe-meta-go > In master-next, Richard has a patch to disable Go on musl. Can you incorporate that too (or fix Go)? In mut I've picked his musl fix on top on

Re: [OE-core] [PATCH v2] sstate.bbclass: update .siginfo atime

2017-03-06 Thread Burton, Ross
On 6 March 2017 at 17:50, Ed Bartosh wrote: > I don't think it will as '&&' and '||' lists are among other special cases > where > shell doesn't exits on error. > Ah, fair enough. Another quirk of sh I wasn't aware of :) Ross --

Re: [OE-core] [PATCH V7] go: Add recipes for golang compilers and tools

2017-03-06 Thread Khem Raj
On Mon, Mar 6, 2017 at 12:51 PM, Burton, Ross wrote: > > On 6 March 2017 at 18:46, Khem Raj wrote: >> >> * This is converging the recipes for go from >> meta-virtualization and oe-meta-go > > > In master-next, Richard has a patch to disable Go on

Re: [OE-core] [PATCH v2] sstate.bbclass: update .siginfo atime

2017-03-06 Thread Patrick Ohly
On Mon, 2017-03-06 at 21:58 +0200, Ed Bartosh wrote: > On Mon, Mar 06, 2017 at 08:31:55PM +0100, Patrick Ohly wrote: > > On Mon, 2017-03-06 at 19:50 +0200, Ed Bartosh wrote: > > > On Mon, Mar 06, 2017 at 04:49:25PM +, Burton, Ross wrote: > > > > On 6 March 2017 at 15:31, Ed Bartosh

[OE-core] [PATCH] conf/machine/include: enable hardfloat by default for ARMv6 and above

2017-03-06 Thread Andre McCurdy
Defaulting to softfp probably isn't the best choice anymore, especially as there are now ARM BSP layers which leave DEFAULTTUNE entirely up to the distro: https://lists.yoctoproject.org/pipermail/yocto/2017-February/034637.html Signed-off-by: Andre McCurdy ---

Re: [OE-core] [PATCH] conf/machine/include: enable hardfloat by default for ARMv6 and above

2017-03-06 Thread Andre McCurdy
On Mon, Mar 6, 2017 at 2:51 PM, Andre McCurdy wrote: > On Mon, Mar 6, 2017 at 2:37 PM, Khem Raj wrote: >> On Mon, Mar 6, 2017 at 1:47 PM, Andre McCurdy wrote: >>> Defaulting to softfp probably isn't the best choice anymore, >>>

[OE-core] [PATCH] sanity.bbclass: allow s3 protocol when sanity checking MIRRORS, etc

2017-03-06 Thread Andre McCurdy
Bitbake now supports an Amazon AWS S3 fetcher: http://git.openembedded.org/bitbake/commit/?id=6fe07ed25457dd7952b60f4b2153d56b15d5eea6 Signed-off-by: Andre McCurdy --- meta/classes/sanity.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [OE-core] [PATCH] sanity.bbclass: allow s3 protocol when sanity checking MIRRORS, etc

2017-03-06 Thread Burton, Ross
On 6 March 2017 at 22:34, Andre McCurdy wrote: > protocols = ['http', 'ftp', 'file', 'https', \ > 'git', 'gitsm', 'hg', 'osc', 'p4', 'svn', \ > - 'bzr', 'cvs', 'npm', 'sftp', 'ssh'] > + 'bzr', 'cvs', 'npm', 'sftp',

Re: [OE-core] [PATCH] conf/machine/include: enable hardfloat by default for ARMv6 and above

2017-03-06 Thread Khem Raj
On Mon, Mar 6, 2017 at 1:47 PM, Andre McCurdy wrote: > Defaulting to softfp probably isn't the best choice anymore, > especially as there are now ARM BSP layers which leave DEFAULTTUNE > entirely up to the distro: > >

Re: [OE-core] [PATCH] conf/machine/include: enable hardfloat by default for ARMv6 and above

2017-03-06 Thread Andre McCurdy
On Mon, Mar 6, 2017 at 2:37 PM, Khem Raj wrote: > On Mon, Mar 6, 2017 at 1:47 PM, Andre McCurdy wrote: >> Defaulting to softfp probably isn't the best choice anymore, >> especially as there are now ARM BSP layers which leave DEFAULTTUNE >> entirely up to

Re: [OE-core] [PATCH] sanity.bbclass: allow s3 protocol when sanity checking MIRRORS, etc

2017-03-06 Thread Andre McCurdy
On Mon, Mar 6, 2017 at 2:36 PM, Burton, Ross wrote: > > On 6 March 2017 at 22:34, Andre McCurdy wrote: >> >> protocols = ['http', 'ftp', 'file', 'https', \ >> 'git', 'gitsm', 'hg', 'osc', 'p4', 'svn', \ >> -

[OE-core] [PATCH v2] conf/machine/include: enable hardfloat by default for ARMv6 and above

2017-03-06 Thread Andre McCurdy
Defaulting to softfp probably isn't the best choice anymore, especially as there are now ARM BSP layers which leave DEFAULTTUNE entirely up to the distro: https://lists.yoctoproject.org/pipermail/yocto/2017-February/034637.html Also add 't' to the ARMv7 default DEFAULTTUNEs, since there's no

Re: [OE-core] [PATCH] conf/machine/include: enable hardfloat by default for ARMv6 and above

2017-03-06 Thread Khem Raj
On Mon, Mar 6, 2017 at 2:51 PM Andre McCurdy wrote: > On Mon, Mar 6, 2017 at 2:37 PM, Khem Raj wrote: > > On Mon, Mar 6, 2017 at 1:47 PM, Andre McCurdy > wrote: > >> Defaulting to softfp probably isn't the best choice anymore, > >>

[OE-core] [PATCH] dropbear: drop support for DSA host keys in dropbear init script

2017-03-06 Thread Andre McCurdy
Bring the dropbear init script into sync with the systemd service file (dropbearkey.service supports RSA host keys only) and with recent versions of openssh which deprecate DSA host keys. https://www.gentoo.org/support/news-items/2015-08-13-openssh-weak-keys.html Signed-off-by: Andre McCurdy

[OE-core] [PATCH] meta: start to ignore the largefile distro feature

2017-03-06 Thread Andre McCurdy
The largefile distro feature has been enabled by default in oe-core for a long time and, more recently, also in poky-tiny. Building without the largefile distro feature receives little or no testing. Many packages now enable LFS without exposing a configure option, so there should be very little

[OE-core] [PATCH v2] ghostscript: build and install libgs

2017-03-06 Thread Andrew Shadura
From: Joshua Lock Build and install libgs library, which is a build dependency of a few other libraries, such as libspectre. We don't want to ship the executable binaries, only the library and its headers, hence oe_runmake install-so + rm -rf, not e.g.

[OE-core] Fwd: [PATCH] busybox: conditional inclusion of login utilities

2017-03-06 Thread David Vincent
Ping -- Forwarded Message -- Subject: [PATCH] busybox: conditional inclusion of login utilities Date: jeudi 26 janvier 2017, 17:45:18 CET From: David Vincent To: openembedded-core@lists.openembedded.org CC: David Vincent If

[OE-core] [PATCH v4 0/3] openssh: Package server configuration

2017-03-06 Thread David Vincent
This serie of patches provides a way to package OpenSSH sshd configuration. This way, it should be easier to change the configuration either in distro and/or BSP layers. It also simplifies management of configuration for r/o rootfs. David Vincent (3): openssh: Package server configuration

[OE-core] Fwd: [PATCH] openssl: Fix symlink creation

2017-03-06 Thread David Vincent
Ping -- Forwarded Message -- Subject: [PATCH] openssl: Fix symlink creation Date: lundi 23 janvier 2017, 14:59:16 CET From: David Vincent To: openembedded-core@lists.openembedded.org CC: David Vincent Symlinking the openssl

[OE-core] [PATCH v4 1/3] openssh: Package server configuration

2017-03-06 Thread David Vincent
Split sshd configuration for read-write/read-only rootfs in two distinct packages. Also, add a package dependency between openssh-sshd package and a provider of sshd-config. Signed-off-by: David Vincent --- meta/recipes-connectivity/openssh/openssh_7.4p1.bb | 51

[OE-core] [PATCH v4 2/3] core-image: Set default sshd configuration

2017-03-06 Thread David Vincent
When selecting OpenSSH as ssh server provider instead of dropbear, also install the correct configuration depending on whether the final rootfs is read-only or not. Signed-off-by: David Vincent --- meta/classes/core-image.bbclass | 3 ++- 1 file changed, 2 insertions(+),

[OE-core] Fwd: [PATCH] initscripts: Populate volatile from existing file

2017-03-06 Thread David Vincent
Ping -- Forwarded Message -- Subject: [PATCH] initscripts: Populate volatile from existing file Date: mercredi 25 janvier 2017, 12:35:52 CET From: David Vincent To: openembedded-core@lists.openembedded.org CC: David Vincent In

[OE-core] [meta-networking][PATCH] wireshark: update to 2.2.5

2017-03-06 Thread Oleksandr Kravchuk
Signed-off-by: Oleksandr Kravchuk --- .../wireshark/{wireshark_2.2.4.bb => wireshark_2.2.5.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-networking/recipes-support/wireshark/{wireshark_2.2.4.bb => wireshark_2.2.5.bb}

Re: [OE-core] [meta-networking][PATCH] wireshark: update to 2.2.5

2017-03-06 Thread Oleksandr Kravchuk
Please ignore. Mistakenly sent to wrong mailing list. On 6 March 2017 at 10:22, Oleksandr Kravchuk < oleksandr.kravc...@pelagicore.com> wrote: > Signed-off-by: Oleksandr Kravchuk > --- > .../wireshark/{wireshark_2.2.4.bb => wireshark_2.2.5.bb} |

[OE-core] [PATCH] mesa: Upgrade 17.0.0 -> 17.0.1

2017-03-06 Thread Jussi Kukkonen
This is a bug fix release and first non-development release in 17.0 branch. There are ~50 bug fix commits (plus a few release script commits). Signed-off-by: Jussi Kukkonen --- meta/recipes-graphics/mesa/{mesa-gl_17.0.0.bb => mesa-gl_17.0.1.bb} | 0