As suggested, add exception message to warning in
sanity.bbclass when chmod fails on TMPDIR.
[YOCTO #7669]
Signed-off-by: Alex Franco
---
meta/classes/sanity.bbclass | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
bb.utils.remove, bb.utils.movefile and bb.utils.mkdirhier can throw
exceptions that need handling and proper error messages
more work is required for these methods to handle properly the
exceptions that can be raised within the various OS calls they make
but this is a start to at least not hide the
On Thu, 2015-10-15 at 19:15 -0700, Christopher Larson wrote:
>
> On Thu, Oct 15, 2015 at 10:27 AM, Benjamin Esquivel <
> benjamin.esqui...@linux.intel.com> wrote:
> > +def movefile(self, sourcefile, destdir):
> > +try:
> > +# FIXME: this check of movefile's return code to N
Hello Mike, comments below:
On Fri, 2015-10-16 at 09:00 +0200, Mike Looijmans wrote:
> On 15-10-15 19:27, Benjamin Esquivel wrote:
> > bb.utils.remove, bb.utils.movefile and bb.utils.mkdirhier can throw
> > exceptions that need handling and proper error messages.
> >
> > [YOCTO#8213]
> ...
> > +
On Fri, 2015-10-16 at 11:01 +0100, Richard Purdie wrote:
> On Thu, 2015-10-15 at 12:27 -0500, Benjamin Esquivel wrote:
> > +if (bb.utils.movefile(sourcefile, destdir) == None):
> > +raise Exception("moving {} to {} failed".format(
> > +
this test does a one way check from the .manifest to the pkgdata dir.
This test is looking for entries in the manifest that do not exist in
the pkgdata dir. The bug you mention is the other way around, things
that are installed in the rootfs but not listed in the manifest. I
believe a test for this
Hello all,
Are there any plans on tagging the autobuilder and any other sources
used to create and test the 2.0 release? It would be nice to try to
avoid the issues we ran into earlier this year with a Dizzy release that
has repressions.
regards,
Armin
--
Signed-off-by: Otavio Salvador
---
meta/recipes-graphics/wayland/weston_1.8.0.bb | 5 -
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/meta/recipes-graphics/wayland/weston_1.8.0.bb
b/meta/recipes-graphics/wayland/weston_1.8.0.bb
index 342c604..a265b34 100644
--- a/meta/recipes
On 7 October 2015 at 20:41, Benjamin Esquivel <
benjamin.esqui...@linux.intel.com> wrote:
> tests added:
> - manifest.VerifyManifest.test_image_manifest_entries
>
This test case isn't exposing a known bug in the manifests, where the
installed package list and the manifest don't match, specifical
There is no ability at the moment for situations where users would like
to keep section in combo-layer.conf but don't update it, unless explicitly
specified.
Now, by adding "update = no" to desired section would exclude
that repository from "combo-layer update" command.
It is still possible to ex
The SecurityPolicy hasn't been included since 2007[1] and the
last remnants were removed from the code base in 2010[2].
1.
http://cgit.freedesktop.org/xorg/xserver/commit/?id=9d03cad1446c27b397c198cf6247e71e46bc9e6d
2.
http://cgit.freedesktop.org/xorg/xserver/commit/?id=19d03d4f49e08442f58cf0224
The following series are some tidy ups and changes made whilst
porting a distro with systemd and a Weston + Xwayland userland to
Jethro.
Please consider them for inclusion.
Regards,
Joshua
The following changes since commit 10e5df3503632a6e1c54612055b19f7258c3ae2f:
lib/oe/image.py: Fix depe
Automatically enable this support for distributions which have
systemd in DISTRO_FEATURES.
Signed-off-by: Joshua Lock
---
meta/recipes-graphics/wayland/weston_1.8.0.bb | 3 +++
1 file changed, 3 insertions(+)
diff --git a/meta/recipes-graphics/wayland/weston_1.8.0.bb
b/meta/recipes-graphics/wa
Xwayland has the same runtime dependencies as the standard
xserver so set RRECOMMENDS the same way.
Signed-off-by: Joshua Lock
---
meta/recipes-graphics/xorg-xserver/xserver-xorg.inc | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/meta/recipes-graphics/xorg-xserver/xserver
The dbus buildtime dependency is only required in order to build
dbus related tests in modern systemd, make this a PACKAGECONFIG
option.
Signed-off-by: Joshua Lock
---
meta/recipes-core/systemd/systemd_225.bb | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/meta/recipes-core
Signed-off-by: Joshua Lock
---
meta/recipes-graphics/wayland/weston_1.8.0.bb | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/meta/recipes-graphics/wayland/weston_1.8.0.bb
b/meta/recipes-graphics/wayland/weston_1.8.0.bb
index 9e057c5..7829c53 100644
--- a/meta/recipes-graphi
There are recipes in the Core metadata that have optional systemd
support but expect the old, separate, libsystemd-foo pkg-config files
(not the newer unified libsystemd).
Add a PACKAGECONFIG option to build systemd with the compatibility
pc files and default to enabling this option so that we can
On Fri, Oct 16, 2015 at 8:34 AM, Pushpal Sidhu wrote:
> On Thu, Oct 15, 2015 at 7:18 PM, Christopher Larson
> wrote:
>> On Thu, Oct 15, 2015 at 5:57 PM, Pushpal Sidhu wrote:
>>>
>>> The source get's checked out into ${PN}-${PV}, not 'build'. Currently,
>>> building
>>> iw is broken because none
On Fri, Oct 16, 2015 at 12:41 PM, Gary Thomas wrote:
> On 2015-10-16 09:29, Otavio Salvador wrote:
>>
>> On Fri, Oct 16, 2015 at 12:21 PM, Gary Thomas wrote:
>>>
>>> On 2015-10-16 08:44, Martin Jansa wrote:
On Fri, Oct 16, 2015 at 08:40:10AM -0600, Gary Thomas wrote:
>
>
>>
There isn't any required ordering of tests, and the numbers meant that the tests
didn't appear in oe-selftest --list-classes.
Signed-off-by: Ross Burton
---
meta/lib/oeqa/selftest/wic.py | 46 +--
1 file changed, 23 insertions(+), 23 deletions(-)
diff --g
Test cases may want to do call bitbake in setUpClass() but at that point the
previous selftest.inc is still present which could change the build
configuration and result in any built artifacts being removed in the next
bitbake invocation as part of the sysroot clean up.
Resolve this by cleaning se
In some situations the native tools built in setUpClass() are wiped from the
sysroot by the time the tests are executed, likely due to the cleanup performed
in the base setUp() method.
Avoid this by doing all of the preparatory building in setUpLocal.
Signed-off-by: Ross Burton
---
meta/lib/oeq
On 2015-10-16 09:29, Otavio Salvador wrote:
On Fri, Oct 16, 2015 at 12:21 PM, Gary Thomas wrote:
On 2015-10-16 08:44, Martin Jansa wrote:
On Fri, Oct 16, 2015 at 08:40:10AM -0600, Gary Thomas wrote:
On 2015-10-16 08:25, Ioan-Adrian Ratiu wrote:
x11vnc can be configured with --use-system-l
On Thu, Oct 15, 2015 at 7:18 PM, Christopher Larson
wrote:
> On Thu, Oct 15, 2015 at 5:57 PM, Pushpal Sidhu wrote:
>>
>> The source get's checked out into ${PN}-${PV}, not 'build'. Currently,
>> building
>> iw is broken because none of the source files are found.
>
>
> First, this message doesn't
Current Dev Position: YP 2.0 Final (rc2 to be built soon)
Next Deadline: YP 2.0 Final Release Target: Before Oct. 30, 2015
SWAT team rotation: Randy -> Benjamin
https://wiki.yoctoproject.org/wiki/Yocto_Build_Failure_Swat_Team
Top Bugs to be tackled (2.0 release blockers):
* systemd t
On Fri, Oct 16, 2015 at 12:21 PM, Gary Thomas wrote:
> On 2015-10-16 08:44, Martin Jansa wrote:
>>
>> On Fri, Oct 16, 2015 at 08:40:10AM -0600, Gary Thomas wrote:
>>>
>>> On 2015-10-16 08:25, Ioan-Adrian Ratiu wrote:
x11vnc can be configured with --use-system-libvncserver to use an
Changelog since 2015-10-04 until 2015-10-11. Projects included in this report:
bitbake: git://git.openembedded.org/bitbake
openembedded-core: git://git.openembedded.org/openembedded-core
meta-openembedded: git://git.openembedded.org/meta-openembedded
meta-angstrom: git://github.com/Angstrom-distr
On 2015-10-16 08:44, Martin Jansa wrote:
On Fri, Oct 16, 2015 at 08:40:10AM -0600, Gary Thomas wrote:
On 2015-10-16 08:25, Ioan-Adrian Ratiu wrote:
x11vnc can be configured with --use-system-libvncserver to use an
external libvncserver which will be added to meta-oe. Since oe-core
should not de
[YOCTO # 8134] This test verifies features introduced in bug 8134.
It requires as resources the files from meta-selftest/files/signing:
For 'gpg --gen-key' the used input was:
key: RSA
key-size: 2048
key-valid: 0
realname: testuser
email: testu...@email.com
comment: nocomment
passphrase: test123
On Fri, Oct 16, 2015 at 08:40:10AM -0600, Gary Thomas wrote:
> On 2015-10-16 08:25, Ioan-Adrian Ratiu wrote:
> > x11vnc can be configured with --use-system-libvncserver to use an
> > external libvncserver which will be added to meta-oe. Since oe-core
> > should not depend on meta-oe, we move x11vnc
On 2015-10-16 08:25, Ioan-Adrian Ratiu wrote:
x11vnc can be configured with --use-system-libvncserver to use an
external libvncserver which will be added to meta-oe. Since oe-core
should not depend on meta-oe, we move x11vnc there.
Signed-off-by: Ioan-Adrian Ratiu
Just curious why not the oth
x11vnc can be configured with --use-system-libvncserver to use an
external libvncserver which will be added to meta-oe. Since oe-core
should not depend on meta-oe, we move x11vnc there.
Signed-off-by: Ioan-Adrian Ratiu
---
.../recipes-graphics/x11vnc/files/endian-fix.patch | 24 -
On Fri, Oct 16, 2015 at 10:32 AM, Jussi Kukkonen
wrote:
> On 15 October 2015 at 20:26, Andreas Müller
> wrote:
>>
>> On Fri, Oct 9, 2015 at 2:20 PM, Jussi Kukkonen
>> wrote:
>> >
>> > Recap of the situation as I understand it:
>> > * Gtk+3 works fine without any OpenGL, if GtkGLArea is not used
Automatically export public key(s) of the signing key(s) from the gpg
keyring. Adds a new simple recipe that does the actual task of exporting
the keys. This patch makes the RPM_GPG_PUBKEY and PACKAGE_FEED_GPG
PUBKEY settings obsolete.
Signed-off-by: Markus Lehtonen
---
meta/classes/sign_packag
Simplifies the configuration. Makes way for the removal of
RPM_GPG_PUBKEY setting and possible future implementation of a separate
signing server support. Also, moves the configuration sanity checking
into a separate function.
Signed-off-by: Markus Lehtonen
---
meta/classes/sign_rpm.bbclass | 30
After this change signed package feeds should be enabled by adding
INERIT += "sign_package_feed"
instead of definining PACKAGE_FEED_SIGN="1".
Signed-off-by: Markus Lehtonen
---
meta/classes/sign_package_feed.bbclass | 24
1 file changed, 24 insertions(+)
create mode 100
Signed package feeds are not yet implemented for these package formats.
Signed-off-by: Markus Lehtonen
---
meta/lib/oe/package_manager.py | 4
1 file changed, 4 insertions(+)
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py
index 5c2130b..964fddc 100644
--- a/me
Automatically export public key(s) from the gpg keyring. Adds a new
simple recipe that does the actual task of exporting the keys. This
patch makes the RPM_GPG_PUBKEY and PACKAGE_FEED_GPG PUBKEY settings
obsolete.
Signed-off-by: Markus Lehtonen
---
meta/classes/sign_package_feed.bbclass |
Additionl patches on top of my previous "Implement GPG_PATH variable" patchset.
Slightly rework the rpm and package feed signing feature. The user-visible
changes are that the RPM_GPG_PUBKEY and PACKAGE_FEED_GPG PUBKEY configuration
variables are not needed anymore, and, package feed signing shoul
Signed-off-by: Markus Lehtonen
---
meta/classes/sign_rpm.bbclass | 5 -
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/meta/classes/sign_rpm.bbclass b/meta/classes/sign_rpm.bbclass
index 23aea42..39f877a 100644
--- a/meta/classes/sign_rpm.bbclass
+++ b/meta/classes/sign_rpm.bbcl
As part of populating the sstate-cache with an artifact (.tgz file) we
create a temp file and then atomically move it to the final name. Due to
the glob used in this script such temp files were being matched, and
between the time they were matched and the time the script started
copying files, the
The following changes since commit 10e5df3503632a6e1c54612055b19f7258c3ae2f:
lib/oe/image.py: Fix dependency handling for compressed types (2015-10-14
18:08:22 +0300)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib paule/extsdk-sstate-race
htt
On Thu, 2015-10-15 at 12:27 -0500, Benjamin Esquivel wrote:
> +if (bb.utils.movefile(sourcefile, destdir) == None):
> +raise Exception("moving {} to {} failed".format(
> +sourcefile, destdir))
Its a minor issue, however rightly or
On 10/16/2015 04:28 PM, Phil Blundell wrote:
On Fri, 2015-10-16 at 15:14 +0800, Chen Qi wrote:
A patch more than two years ago moves libcrypto from libdir to base_libdir
for the reason of /usr split. And I don't think this reason still stands.
Why not?
p.
1) There are a bunch of /usr spl
On 15-10-15 19:27, Benjamin Esquivel wrote:
bb.utils.remove, bb.utils.movefile and bb.utils.mkdirhier can throw
exceptions that need handling and proper error messages.
[YOCTO#8213]
...
+def mkdirhier(self, dirpath):
+try:
+bb.utils.mkdirhier(dirpath)
+except O
On 15 October 2015 at 20:26, Andreas Müller
wrote:
> On Fri, Oct 9, 2015 at 2:20 PM, Jussi Kukkonen
> wrote:
> >
> > Recap of the situation as I understand it:
> > * Gtk+3 works fine without any OpenGL, if GtkGLArea is not used
> > * When GtkGLArea is used, Gtk+ uses libepoxy which is supposed
On Fri, 2015-10-16 at 15:14 +0800, Chen Qi wrote:
> A patch more than two years ago moves libcrypto from libdir to base_libdir
> for the reason of /usr split. And I don't think this reason still stands.
Why not?
p.
--
___
Openembedded-core mailing li
needed for systemd 225 to compile with uclibc
Change-Id: Id5f990edf4a773de49742f9f9ea5139e55e21f69
Signed-off-by: Khem Raj
---
meta/recipes-core/uclibc/uclibc-git.inc| 2 +
...-AT_EMPTY_PATH-for-all-and-O_PATH-for-arm.patch | 42 +++
.../uclibc/uclibc-git/0001-wire-i
225 needs additional patches for cater for new APIs used
in systemd
Change-Id: Idb66c2c6bb65c94b52ba35b276ca12cc868b043e
Signed-off-by: Khem Raj
---
.../systemd/0001-fix-build-on-uClibc-exp10.patch | 22
...nv-when-secure-versions-are-not-available.patch | 39 +
helps configure QA pass when building for uclibc
Change-Id: I42e9542829bc3678ee777d0a8768aecdf77eaead
Signed-off-by: Khem Raj
---
.../recipes-core/coreutils/coreutils-6.9/loadavg.patch | 18 ++
meta/recipes-core/coreutils/coreutils_6.9.bb | 1 +
2 files changed, 19 ins
patch fails to apply otherwise
Change-Id: Ic16912e6e0e8ba75253a4aa0b357b91cabefbf5c
Signed-off-by: Khem Raj
---
.../libtirpc/libtirpc/remove-des-uclibc.patch | 22 +++---
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/meta/recipes-extended/libtirpc/libtirpc/
The 0001-uclibc-nss.patch has been applied upstream
in a bit different way but solves the issue at hand
Change-Id: I7312d109d01c08338d4673383e2eaccee219b7bd
Signed-off-by: Khem Raj
---
.../rpcbind/rpcbind/0001-uclibc-nss.patch | 30 --
meta/recipes-extended/rpcbind/r
to have va_list we need to include stdarg.h no matter what
but it was latent since with glibc it was getting pull in silently
via other headers
Change-Id: Ie5f1af4c1374fa525647fcb3ae936ec525a99da1
Signed-off-by: Khem Raj
---
meta/recipes-extended/libtirpc/libtirpc/va_list.patch | 18
libpam needs to adjust for posix utmpx
uclibc now disables utmp
Change-Id: Ibcb7cb621527f318eb8b6e2741647ccb4c6bb39c
Signed-off-by: Khem Raj
---
meta/recipes-extended/pam/libpam/use-utmpx.patch | 233 +++
meta/recipes-extended/pam/libpam_1.2.1.bb| 4 +-
2 files chan
An agressive optimization in gcc5 meant that we get linking errors
with uclibc build, this patch fixes the issue by letting gcc know
that these funcitons are used.
Change-Id: I8ecf3999a0855b3bbf4bc2df576be5351f9be5b0
Signed-off-by: Khem Raj
---
meta/recipes-core/uclibc/uclibc-git.inc
These are fixes to uclibc and other packages to rebuild them on uclibc
this patchset will be useful on jethro as well, so this is a pull request for
both master and jethro
The following changes since commit d294da632a11024de69f091be71b71a1b2acacd9:
kern-tools: temp. test patch resume fix (2015-
Surfaces on uclibc where libiconv is not coming from libc but from
separate package.
Change-Id: I8eef52a69d2b6830deff94531631ca098bce2a89
Signed-off-by: Khem Raj
---
meta/recipes-core/coreutils/coreutils_6.9.bb | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/recipes-core/coreutils/coreu
For now, if 'openssl' is enabled for ntp, ntp would still be built
without openssl & libcrypto. This is because that ntp thinks openssl
and libcrypto locates under the same directory.
A patch more than two years ago moves libcrypto from libdir to base_libdir
for the reason of /usr split. And I don
The following changes since commit e42d8eff9eed7d1454b4f331d96dcee6dea232df:
bash: Disable custom memory allocator (2015-10-12 14:35:42 +0100)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib ChenQi/openssl-libcrypto
http://cgit.openembedded.org
59 matches
Mail list logo