Re: [OE-core] [PATCH] udev: fix /var/volatile/tmp permissions

2014-08-26 Thread Fathi Boudra
On 18 August 2014 10:46, Riku Voipio wrote: > Hi, > > Any updates on this one? it's in master-next since 4 days. ~10 days after you posted the patch. > Riku > > On 14 August 2014 12:03, Riku Voipio wrote: >> Mariadb postinstall will fail with: >> >> ERROR: 1 Can't create/write to file '/tmp/#s

[OE-core] [PATCH] shadow: add Qualcomm and STMicroelectronics SoCs

2014-08-26 Thread Fathi Boudra
Reported-by: Nicolas Dechesne Reported-by: Peter Griffin Signed-off-by: Fathi Boudra --- meta/recipes-extended/shadow/files/securetty | 15 +++ 1 file changed, 15 insertions(+) diff --git a/meta/recipes-extended/shadow/files/securetty b/meta/recipes-extended/shadow/files/securetty

[OE-core] [PATCH] linux-dummy: bundle_initramfs should not be nostamp any more

2014-08-26 Thread Ming Liu
The same change has already been applied to kernel.bbclass in commit 55989cb5: [ kernel.bbclass: Stop bundle_initramfs thwarting sstate cache and fix race ] The dummy kernel should comply with it. Signed-off-by: Ming Liu --- meta/recipes-kernel/linux/linux-dummy.bb | 3 +-- 1 file changed, 1 in

Re: [OE-core] own-mirrors broken

2014-08-26 Thread Gary Thomas
On 2014-08-26 15:44, Martin Jansa wrote: On Tue, Aug 26, 2014 at 02:03:47PM -0600, Gary Thomas wrote: This commit breaks "own-mirrors" commit 0ae7b58060f1ee7914dd45d462e48d4b8a3751ad (Poky/Yocto) Author: Robert Yang Date: Fri Aug 22 01:31:27 2014 -0700 sanity.bbclass: check the forma

Re: [OE-core] own-mirrors broken

2014-08-26 Thread Martin Jansa
On Tue, Aug 26, 2014 at 02:03:47PM -0600, Gary Thomas wrote: > This commit breaks "own-mirrors" > > commit 0ae7b58060f1ee7914dd45d462e48d4b8a3751ad (Poky/Yocto) > Author: Robert Yang > Date: Fri Aug 22 01:31:27 2014 -0700 > > sanity.bbclass: check the format of MIRRORS > > Since this ch

Re: [OE-core] own-mirrors broken

2014-08-26 Thread Christopher Larson
On Tue, Aug 26, 2014 at 1:03 PM, Gary Thomas wrote: > This commit breaks "own-mirrors" > > commit 0ae7b58060f1ee7914dd45d462e48d4b8a3751ad (Poky/Yocto) > Author: Robert Yang > Date: Fri Aug 22 01:31:27 2014 -0700 > > sanity.bbclass: check the format of MIRRORS > > Since this change, use o

[OE-core] own-mirrors broken

2014-08-26 Thread Gary Thomas
This commit breaks "own-mirrors" commit 0ae7b58060f1ee7914dd45d462e48d4b8a3751ad (Poky/Yocto) Author: Robert Yang Date: Fri Aug 22 01:31:27 2014 -0700 sanity.bbclass: check the format of MIRRORS Since this change, use of "own-mirrors" produces this error: WARNING: Invalid PREMIRRORS: c

Re: [OE-core] [PATCH] rootfs_ipk.bbclass: Ensure bad recommendations persist in the status file

2014-08-26 Thread Richard Purdie
On Tue, 2014-08-26 at 02:51 +0200, Andreas Oberritter wrote: > Hello Richard, > > sorry for digging out such an old message, but please see below. > > On 12.11.2011 09:36, Richard Purdie wrote: > > Currently bad recommendations are added to the status file with status > > "ok". After a single opk

Re: [OE-core] is INITRAMFS_TASK still useful, or can it be tossed?

2014-08-26 Thread Robert P. J. Day
On Tue, 26 Aug 2014, Bruce Ashfield wrote: > On Tue, Aug 26, 2014 at 3:14 PM, Robert P. J. Day > wrote: > > > > just noticed the following -- here's snippets from kernel.bbclass: > > > > ... snip ... > > INITRAMFS_TASK ?= "" > > ... snip ... > > # NOTE: setting INITRAMFS_TASK is for backwa

Re: [OE-core] is INITRAMFS_TASK still useful, or can it be tossed?

2014-08-26 Thread Bruce Ashfield
On Tue, Aug 26, 2014 at 3:14 PM, Robert P. J. Day wrote: > > just noticed the following -- here's snippets from kernel.bbclass: > > ... snip ... > INITRAMFS_TASK ?= "" > ... snip ... > # NOTE: setting INITRAMFS_TASK is for backward compatibility > # The preferred method is to set I

[OE-core] is INITRAMFS_TASK still useful, or can it be tossed?

2014-08-26 Thread Robert P. J. Day
just noticed the following -- here's snippets from kernel.bbclass: ... snip ... INITRAMFS_TASK ?= "" ... snip ... # NOTE: setting INITRAMFS_TASK is for backward compatibility # The preferred method is to set INITRAMFS_IMAGE, because # this INITRAMFS_TASK has circular dep

[OE-core] [PATCH 3/5] qemux86: support X11 when QEMU is emulating a different GPU than vmware

2014-08-26 Thread Max Eliaser
QEMU is capable of emulating four different VGA adapters: cirrus, std, vmware, and QXL. By adding the cirrus and fbdev X.Org drivers to the qemux86 image, the image can be made to launch an X server on when cirrus and std are chosen, in addition to just vmware. (The build of QEMU in OE-Core appears

[OE-core] [PATCH 1/5] xorg-drivers: xf86-video-cirrus: add a recipe for the Cirrus Logic X.Org driver

2014-08-26 Thread Max Eliaser
This driver allows X.Org to use the Cirrus Logic family of VGA adapters. Since QEMU can emulate a Cirrus VGA adapter, this driver will be of use for images that are expected to run under QEMU, if QEMU's other VGA adapters are unavailable. Signed-off-by: Max Eliaser --- .../recipes-graphics/xorg-

[OE-core] [PATCH 0/5] Add xf86-video-fbdev and xf86-video-cirrus to qemux86 and qemux86-64 [v4]

2014-08-26 Thread Max Eliaser
Hello list, This series adds additional x.org drivers to the qemux86 and qemux86-64 machines. Now, instead of just including the "vmware" driver, GUI images for these machines will also include "cirrus" and "fbdev" drivers. Rationale: now that the runqemu script allows users to select which VGA ad

[OE-core] [PATCH 5/5] qemux86-64: support X11 when QEMU is emulating a different GPU than vmware

2014-08-26 Thread Max Eliaser
QEMU is capable of emulating four different VGA adapters: cirrus, std, vmware, and QXL. By adding the cirrus and fbdev X.Org drivers to the qemux86-64 image, the image can be made to launch an X server on when cirrus and std are chosen, in addition to just vmware. (The build of QEMU in OE-Core appe

[OE-core] [PATCH 2/5] qemux86: xorg.conf: allow X.Org driver to be selected automatically.

2014-08-26 Thread Max Eliaser
A section specifying the driver to use is deleted from the image's xorg.conf, allowing the X server to automatically select the most appropriate driver. Testing shows that it does always pick the correct one. Signed-off-by: Max Eliaser --- .../xorg-xserver/xserver-xf86-config/qemux86/xorg.conf

[OE-core] [PATCH 4/5] qemux86-64: xorg.conf: allow X.Org driver to be selected automatically.

2014-08-26 Thread Max Eliaser
A section specifying the driver to use is deleted from the image's xorg.conf, allowing the X server to automatically select the most appropriate driver. Testing shows that it does always pick the correct one. Signed-off-by: Max Eliaser --- .../xorg-xserver/xserver-xf86-config/qemux86-64/xorg.con

[OE-core] [[v2][PATCH 0/1] archiver.bbclass

2014-08-26 Thread Joe Slater
Do not accidently undo commit a5393823... Joe Slater (1): archiver.bbclass: add revision to git tarfile name meta/classes/archiver.bbclass |7 ++- 1 files changed, 6 insertions(+), 1 deletions(-) -- 1.7.3.4 -- ___ Openembedded-core mailin

[OE-core] [[v2][PATCH 1/1] archiver.bbclass: add revision to git tarfile name

2014-08-26 Thread Joe Slater
When archiving original source, insert the first 10 characters of srcrev, after stripping off any AUTOINC+, into the filename for tarfiles created from directories. Signed-off-by: Joe Slater --- meta/classes/archiver.bbclass |7 ++- 1 files changed, 6 insertions(+), 1 deletions(-) diff

[OE-core] [PATCH 1/1] archiver.bbclass: add revision to git tarfile name

2014-08-26 Thread Joe Slater
When archiving original source, insert the first 10 characters of srcrev, after stripping off any AUTOINC+, into the filename for tarfiles created from directories. Signed-off-by: Joe Slater --- meta/classes/archiver.bbclass |9 +++-- 1 files changed, 7 insertions(+), 2 deletions(-) dif

[OE-core] [PATCH 0/1] Upgrade pixman

2014-08-26 Thread Ciobanu Roxana
The following changes since commit 34436672f3ef4915e7526770a0fa8dcff328f93d: bitbake: runqueue.py: Fix typoes/grammar in comments. (2014-08-19 20:41:26 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib roxana/pixman http://git.yoctoproject.org/cgit.cgi

[OE-core] [PATCH 1/1] pixman: upgrade to 0.32.6 

2014-08-26 Thread Ciobanu Roxana
From: Roxana Ciobanu Signed-off-by: Roxana Ciobanu --- meta/recipes-graphics/xorg-lib/{pixman_0.32.4.bb => pixman_0.32.6.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-lib/{pixman_0.32.4.bb => pixman_0.32.6.bb} (89%) diff --git a/meta/recipes-

[OE-core] [PATCH 1/1] gdb: Upgrade gdb 7.7.1 -> 7.8

2014-08-26 Thread Ciobanu Roxana
From: Roxana Ciobanu Signed-off-by: Roxana Ciobanu --- meta/recipes-devtools/gdb/{gdb-7.7.1.inc => gdb-7.8.inc} | 4 ++-- .../gdb/{gdb-cross-canadian_7.7.1.bb => gdb-cross-canadian_7.8.bb}| 0 meta/recipes-devtools/gdb/{gdb-cross_7.7.1.bb => gdb-cross_7.8.bb}| 0 meta/recip

[OE-core] [PATCH 0/1] Upgrade gdb

2014-08-26 Thread Ciobanu Roxana
The following changes since commit 34436672f3ef4915e7526770a0fa8dcff328f93d: bitbake: runqueue.py: Fix typoes/grammar in comments. (2014-08-19 20:41:26 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib roxana/gdb http://git.yoctoproject.org/cgit.cgi/po

[OE-core] [PATCH 1/1] hicolor-icon-theme: Upgrade to 0.13

2014-08-26 Thread Ciobanu Roxana
From: Roxana Ciobanu Signed-off-by: Roxana Ciobanu --- .../{hicolor-icon-theme_0.12.bb => hicolor-icon-theme_0.13.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-gnome/hicolor-icon-theme/{hicolor-icon-theme_0.12.bb => hicolor-icon-theme_0.13.bb} (80%)

[OE-core] [PATCH 0/1] Upgrade hicolor-icon-theme

2014-08-26 Thread Ciobanu Roxana
The following changes since commit 34436672f3ef4915e7526770a0fa8dcff328f93d: bitbake: runqueue.py: Fix typoes/grammar in comments. (2014-08-19 20:41:26 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib roxana/hicolor-icon-theme http://git.yoctoproject

[OE-core] [PATCH 1/1] xkeyboard-config: upgrade to 2.12

2014-08-26 Thread Ciobanu Roxana
From: Roxana Ciobanu Signed-off-by: Roxana Ciobanu --- .../xorg-lib/{xkeyboard-config_2.11.bb => xkeyboard-config_2.12.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-lib/{xkeyboard-config_2.11.bb => xkeyboard-config_2.12.bb} (88%) diff --git

[OE-core] [PATCH 0/1] Upgrade xkeyboard-config

2014-08-26 Thread Ciobanu Roxana
The following changes since commit 34436672f3ef4915e7526770a0fa8dcff328f93d: bitbake: runqueue.py: Fix typoes/grammar in comments. (2014-08-19 20:41:26 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib roxana/xkeyboard-config http://git.yoctoproject.o

[OE-core] [PATCH 1/1] xf86-input-mouse: upgrade to 1.9.1

2014-08-26 Thread Ciobanu Roxana
From: Roxana Ciobanu Signed-off-by: Roxana Ciobanu --- .../{xf86-input-mouse_1.9.0.bb => xf86-input-mouse_1.9.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-driver/{xf86-input-mouse_1.9.0.bb => xf86-input-mouse_1.9.1.bb} (76%) diff

[OE-core] [PATCH 0/1] Upgrade xf86-input-mouse

2014-08-26 Thread Ciobanu Roxana
The following changes since commit 34436672f3ef4915e7526770a0fa8dcff328f93d: bitbake: runqueue.py: Fix typoes/grammar in comments. (2014-08-19 20:41:26 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib roxana/xf86-input-mouse http://git.yoctoproject.o

[OE-core] [PATCH 0/1] upgrade xf86-input-synaptics

2014-08-26 Thread Ciobanu Roxana
The following changes since commit 34436672f3ef4915e7526770a0fa8dcff328f93d: bitbake: runqueue.py: Fix typoes/grammar in comments. (2014-08-19 20:41:26 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib roxana/xf86-input-synaptics http://git.yoctoproje

[OE-core] [PATCH 1/1] xf86-input-synaptics: upgrade to 1.8.0

2014-08-26 Thread Ciobanu Roxana
The two main changes in this release: - the eventcomm backend uses libevdev, we recommend libevdev 1.2 or newer - support for a secondary software button area for the Lenovo *40 series (T440, T540, X240, Helix, Yoga, ...). Signed-off-by: Ciobanu Roxana --- ...{xf86-input-synaptic

[OE-core] [PATCH] psmisc: Update patch status

2014-08-26 Thread Paul Barker
The patch "Include for PATH_MAX" was accepted into the master branch of psmisc by the maintainer. It should be included in the next release. Signed-off-by: Paul Barker --- .../psmisc/files/0002-Include-limits.h-for-PATH_MAX.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(

Re: [OE-core] [PATCHv2 1/3] sanity: handle both \n and \\n in mirror vars

2014-08-26 Thread Martin Jansa
On Tue, Aug 26, 2014 at 12:51:49PM +0200, Martin Jansa wrote: > On Mon, Aug 25, 2014 at 03:57:42PM -0700, Christopher Larson wrote: > > From: Christopher Larson > > > > Signed-off-by: Christopher Larson > > --- > > meta/classes/sanity.bbclass | 2 +- > > 1 file changed, 1 insertion(+), 1 deleti

Re: [OE-core] [PATCHv2 1/3] sanity: handle both \n and \\n in mirror vars

2014-08-26 Thread Martin Jansa
On Mon, Aug 25, 2014 at 03:57:42PM -0700, Christopher Larson wrote: > From: Christopher Larson > > Signed-off-by: Christopher Larson > --- > meta/classes/sanity.bbclass | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bb

[OE-core] [PATCH] nss: CVE-2014-1544

2014-08-26 Thread Li Wang
the patch comes from: https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2014-1544 https://hg.mozilla.org/projects/nss/rev/204f22c527f8 author Robert Relyea https://bugzilla.mozilla.org/show_bug.cgi?id=963150 Bug 963150: Add nssCertificate_AddRef and nssCertificate_Destroy calls to PK11_ImportCert

[OE-core] [PATCH v2 1/2] logrotate: obey our flags

2014-08-26 Thread Fahad Usman
Needed to quiet GNU_HASH warnings, and some minor fixes. Signed-off-by: Fahad Usman Signed-off-by: Christopher Larson --- meta/recipes-extended/logrotate/logrotate_3.8.7.bb | 18 -- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/logrotate/

[OE-core] [PATCH v2 2/2] logrotate: add packageconfigs

2014-08-26 Thread Fahad Usman
add packageconfigs for acl and selinux. Signed-off-by: Fahad Usman Signed-off-by: Christopher Larson --- meta/recipes-extended/logrotate/logrotate_3.8.7.bb |8 1 file changed, 8 insertions(+) diff --git a/meta/recipes-extended/logrotate/logrotate_3.8.7.bb b/meta/recipes-extended/

[OE-core] [PATCH 2/4] classes/testimage.bbclass: add more fields to the sdk TestContext

2014-08-26 Thread Corneliu Stoicescu
In order to use hasFeature and hasPackage methods in sdk test modules, we need specific fields to be set in the TestContext object. Adding pkgmanifest, imagefeatures and distrofeatures to the TestContext. Signed-off-by: Corneliu Stoicescu --- meta/classes/testimage.bbclass | 8 1 file

[OE-core] [PATCH 0/4] Create target sdk manifest file and use it for automated sdk testing

2014-08-26 Thread Corneliu Stoicescu
In order to automatically determine what packages are present in the target sdk, we needed a target sdk manifest file, similar to the one created for machine images rootfs. Also, in order to enable the testsdk task to skip modules, some changes and additions had to be made. Corneliu Stoicescu

[OE-core] [PATCH 1/4] classes/populate_sdk_base.bbclass: add a manifest for target sdk

2014-08-26 Thread Corneliu Stoicescu
Similar to the way BSP images have rootfs a manifest, the toolchain now also has a manifest file created alongside the sdk image. Signed-off-by: Corneliu Stoicescu --- meta/classes/populate_sdk_base.bbclass | 12 1 file changed, 12 insertions(+) diff --git a/meta/classes/populate_

[OE-core] [PATCH 4/4] oeqa/sdk/buildsudoku.py: add setUpModule method to run only when gtk+ in installed.

2014-08-26 Thread Corneliu Stoicescu
Adding setUpModule in order to skip the module when gtk+ is not installed in the toolchain. Signed-off-by: Corneliu Stoicescu --- meta/lib/oeqa/sdk/buildsudoku.py | 4 1 file changed, 4 insertions(+) diff --git a/meta/lib/oeqa/sdk/buildsudoku.py b/meta/lib/oeqa/sdk/buildsudoku.py index 6a

[OE-core] [PATCH 3/4] oeqa/oetest.py: enable sdk tests to use hasFeature and hasPackage methods.

2014-08-26 Thread Corneliu Stoicescu
In order to use the hasFeature and hasPackage methods, we need to make oeSDKTest extend oeTest and also set the test context (tc) attribute in the oeTest class when loading the tests. Signed-off-by: Corneliu Stoicescu --- meta/lib/oeqa/oetest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 del

Re: [OE-core] [PATCH 1/2] logrotate: obey our flags

2014-08-26 Thread Usman, Fahad
On 08/25/2014 10:51 PM, Khem Raj wrote: +LFS= \ > > >+OS_NAME='${OS_NAME}' \ > > >+\ > > >+'CC=${CC}' \ > > > >hmmm CC may have spaces in it so you might need 'CC="${CC}"' or somesuch > > >Nope, the whole CC=${CC} argument is already quoted, note the single quotes >around it. Th