Re: [OE-core] [PATCH] glibc: Help compile with -Os

2015-03-04 Thread Robert Yang
Hello, I get errors when: MACHINE = "qemux86" DEBUG_BUILD = "1" $ bitbake glibc ../include/inline-hashtab.h: In function '_dl_make_tlsdesc_dynamic': ./tlsdeschtab.h:28:1: error: inlining failed in call to 'hash_tlsdesc': indirect function call with a yet undetermined callee [-Werror=inline]

[OE-core] [PATCH] bootchart2: add dependency for bootchartd

2015-03-04 Thread Jian Liu
bootchartd use the command lsb_release and pidof during running, and also the two commands are not installed defaultly. So add sysvinit-pidof and lsb in the RDEPENDS. Signed-off-by: Jian Liu --- meta/recipes-devtools/bootchart2/bootchart2_git.bb | 5 + 1 file changed, 5 insertions(+) diff

Re: [OE-core] [PATCH] sanity.bbclass: Add syntax check on MACHINE variable

2015-03-04 Thread Michael Gloff
Why? Uppercase letters should be allowed and work fine for the most part. Below are a few excerpts from last year: On Wed, Mar 5, 2014 at 11:45 AM, Paul Eggleton < paul.eggle...@linux.intel.com> wrote: On Wednesday 05 March 2014 11:00:31 Michael Gloff wrote: > On Mon, Mar 3, 2014 at 12:52 PM, Paul

Re: [OE-core] [PATCH 2/3] msmtp: add link file in /usr/lib

2015-03-04 Thread Kang Kai
On 2015年03月05日 09:20, Kai Kang wrote: Link file /usr/lib/sendmail points to /usr/sbin/sendmail is required by LSB core test according to Linux FHS. Refs: 1 http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/normativerefs.html#STD.LSB 2 http://www.pathname.com/fhs/pu

[OE-core] [PATCH 1/3] lsb: update init-functions and remove sendmail

2015-03-04 Thread Kai Kang
According to LSB specification Ref1, LSB checks file /lib/lsb/init-functions. But for 64 bits system it is installed in /lib64. Install init-functions to /lib/lsb to conform with LSB specification. Link file /usr/lib/sendmail which points to /usr/sbin/sendmail is required by LSB according to Linux

[OE-core] [PATCH 2/3] msmtp: add link file in /usr/lib

2015-03-04 Thread Kai Kang
Link file /usr/lib/sendmail points to /usr/sbin/sendmail is required by LSB core test according to Linux FHS. Refs: 1 http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/normativerefs.html#STD.LSB 2 http://www.pathname.com/fhs/pub/fhs-2.3.html#SPECIFICOPTIONS13 Signed

[OE-core] [PATCH 0/3] Some fixes for LSB test

2015-03-04 Thread Kai Kang
The following changes since commit bef8558f0e1a73107743417d8b2b772744ed9c28: README: expand the Where To Send Patches section (2015-03-04 17:07:37 +) are available in the git repository at: git://git.yoctoproject.org/poky-contrib kangkai/lsb-20150305 http://git.yoctoproject.org/cgit.cg

[OE-core] [PATCH 3/3] systemd: correct permission mode of /var/volatile/tmp

2015-03-04 Thread Kai Kang
Permission mode of directory /var/volatile/tmp should be 1777, correct it. Signed-off-by: Kai Kang --- meta/recipes-core/systemd/systemd/00-create-volatile.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/systemd/systemd/00-create-volatile.conf b/meta/r

[OE-core] [PATCH 2/2] systemd: Create packageconfig for ldconfig support

2015-03-04 Thread Khem Raj
Useful when we disable ldconfig in glibc, we need to be able to turn it off in systemd too, otherwise systemd tries to launch the service and it fails Change-Id: I170307f809a13def0cafc282e88d4eafa0313c31 Signed-off-by: Khem Raj --- meta/recipes-core/systemd/systemd_219.bb | 3 ++- 1 file changed

[OE-core] [PATCH 1/2] tcmode-default: Define one gdb version

2015-03-04 Thread Khem Raj
Sometimes we need to override the gdb from third party tool SDKs, this helps out, moreover it also makes it consistent with in OE-Core too to have multiple versions of gdb if we ever needed to Change-Id: Ibe1ae59175984bbc661c243764c81cd99fef54d1 Signed-off-by: Khem Raj --- meta/conf/distro/inclu

[OE-core] [PATCH] image_types: Fix MIN_BTRFS_SIZE to be 1024 blocks to match ROOTFS_SIZE

2015-03-04 Thread Saul Wold
[YOCTO #7392] Signed-off-by: Saul Wold --- meta/classes/image_types.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass index 4983e98..98a08bf 100644 --- a/meta/classes/image_types.bbclass +++ b/meta/clas

[OE-core] [PATCH] maintainers.inc: Became maintainer of python2 and python3

2015-03-04 Thread Alejandro Hernandez
Signed-off-by: Alejandro Hernandez --- meta-yocto/conf/distro/include/maintainers.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-yocto/conf/distro/include/maintainers.inc b/meta-yocto/conf/distro/include/maintainers.inc index 3a55d1e..b3b5dc2 100644 --- a/meta-y

Re: [OE-core] [dizzy] [PATCH 1/1] python: Add support for aarch64 for ctypes module

2015-03-04 Thread Tudor Florea
On 3/4/2015 22:25, Burton, Ross wrote: On 4 March 2015 at 15:04, Tudor Florea > wrote: Python have its own version of libffi used for ctypes module. libffi 3.0.10 contained in original source of Python-2.7.3 does not have support for aarch64 archi

[OE-core] [PATCH 0/3] systemd and dbus split into packages

2015-03-04 Thread Bruno Bottazzini
In this patchset we include the following: 1- dbus: split tools package Most tools are not required if one is launching a simple daemon. So, we split it into two packages dbus and dbus-tools which the user will be to exclude it from the image if he wants to. 2- systemd: verify if files t

[OE-core] [PATCH 2/3] systemd: verify if files test-udev and systemd-journal-flush exists

2015-03-04 Thread Bruno Bottazzini
If we compile using EXTRA_OECONF with '--disable-tests' option, the files test-udev and systemd-journal-flush will not be created and the systemd install phase will fail. --- meta/recipes-core/systemd/systemd_219.bb | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/meta/r

[OE-core] [PATCH 3/3] systemd: split modules into packages

2015-03-04 Thread Bruno Bottazzini
if one wants to launch a simple deamon, most modules are not required. He will be able to save space and exclude unwanted packages from the final image. --- meta/recipes-core/systemd/systemd_219.bb | 1071 ++ 1 file changed, 942 insertions(+), 129 deletions(-) diff --g

[OE-core] [PATCH 1/3] dbus: split tools package.

2015-03-04 Thread Bruno Bottazzini
From: Gustavo Sverzut Barbieri Most tools are not required if one is launching a simple daemon. The user will be able to exclude dbus-tool and save some space in his build Signed-off-by: Bruno Bottazzini --- meta/recipes-core/dbus/dbus.inc | 10 -- 1 file changed, 8 insertions(+), 2 de

[OE-core] [daisy][PATCH] qt4: add patch for BMP denial-of-service vulnerability

2015-03-04 Thread Jonathan Liu
For further details, see: https://bugreports.qt.io/browse/QTBUG-44547 Signed-off-by: Jonathan Liu --- meta/recipes-qt/qt4/qt4-4.8.5.inc | 1 + ...ion-by-zero-when-processing-malformed-BMP.patch | 44 ++ 2 files changed, 45 insertions(+) create mode 100644

Re: [OE-core] [OE-core Yocto PATCH 3/4] bootimg: Skip build iso image for aarch64

2015-03-04 Thread Burton, Ross
Hi Naresh, On 3 March 2015 at 15:46, Naresh Bhat wrote: > +if [ "${TARGET_ARCH}" == "aarch64" ]: > + return > +else: > +bb.build.exec_func('build_iso', d) > As Bernhard says, that isn't valid Python. Were these patches actually tested? Ross --

Re: [OE-core] [OE-core Yocto PATCH 4/4] grub: Update grub git recipe

2015-03-04 Thread Burton, Ross
On 4 March 2015 at 07:46, Naresh Bhat wrote: > As far as I understand, when autotools is inherited, it jumps to ${B} > to build, and B is assigned with ${WORKDIR}/build > Thats right, but if the recipe fails to work with B!=S then please inherit autotools-brokensep instead of autotools, so broke

Re: [OE-core] [dizzy] [PATCH 1/1] python: Add support for aarch64 for ctypes module

2015-03-04 Thread Burton, Ross
On 4 March 2015 at 15:04, Tudor Florea wrote: > Python have its own version of libffi used for ctypes module. > libffi 3.0.10 contained in original source of Python-2.7.3 does not have > support for aarch64 architecture. > This is patch is backport support for aarch64 from libffi 3.1 > Can you c

Re: [OE-core] [PATCH] kernel-devsrc: avoid splitting debug info

2015-03-04 Thread Jonathan Liu
Hi Richard, On 5/03/2015 3:49 AM, Richard Purdie wrote: On Wed, 2015-03-04 at 00:31 +1100, Jonathan Liu wrote: This fixes "QA Issue: non debug package contains .debug directory" for some kernels. Signed-off-by: Jonathan Liu --- meta/recipes-kernel/linux/kernel-devsrc.bb | 1 + 1 file chang

[OE-core] [PATCH] openssl: Upgrade to 1.0.2

2015-03-04 Thread Saul Wold
Rebased numerous patches removed aarch64 initial work since it's part of upstream now Imported a few additional patches from Debian to support the version-script and blacklist additional bad certificates. Signed-off-by: Saul Wold --- .../openssl/openssl/Makefiles-ptest.patch | 36 +--

[OE-core] Final call for Daisy (1.6.3) patches

2015-03-04 Thread Saul Wold
Folks, As we are coming up on the year for Daisy support, I would like to get any final issues that people deem important and want in the 1.6.3 release. Please send pull requests marked with [Daisy] to this list and I will see that they are merged. Thanks -- Sau! Saul Wold Yocto Comp

Re: [OE-core] [PATCH] kernel-devsrc: avoid splitting debug info

2015-03-04 Thread Richard Purdie
On Wed, 2015-03-04 at 00:31 +1100, Jonathan Liu wrote: > This fixes "QA Issue: non debug package contains .debug directory" > for some kernels. > > Signed-off-by: Jonathan Liu > --- > meta/recipes-kernel/linux/kernel-devsrc.bb | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/meta/recipe

[OE-core] [PATCH v2] systemd: fix systemd-tmpfiles ACL issues

2015-03-04 Thread Dan McGregor
From: Dan McGregor On systems where /var/log is not a volatile systemd-tmpfiles creates duplicate ACL entries. This causes systemd-tmpfiles service to fail. Also quietly ignore ACL settings on filesystems that don't support ACLs. Backport the fixes from systemd master to fix these issues. Signe

[OE-core] [PATCH] systemd: don't create duplicate ACL entries

2015-03-04 Thread Dan McGregor
From: Dan McGregor On systems where /var/log is not a volatile systemd-tmpfiles creates duplicate ACL entries. This causes systemd-tmpfiles service to fail. Backport the fix from systemd master to fix this. Signed-off-by: Dan McGregor --- ...iles-avoid-creating-duplicate-acl-entries.patch | 1

Re: [OE-core] Feature Freeze

2015-03-04 Thread Burton, Ross
On 16 February 2015 at 17:36, Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > I have to admit I've lost track of time a bit however the calender says > Milestone 3 (M3) finishes this week and that marks "feature freeze" for > the release. Beyond this point we have M4 which which is t

[OE-core] [dizzy] [PATCH 1/1] python: Add support for aarch64 for ctypes module

2015-03-04 Thread Tudor Florea
Python have its own version of libffi used for ctypes module. libffi 3.0.10 contained in original source of Python-2.7.3 does not have support for aarch64 architecture. This is patch is backport support for aarch64 from libffi 3.1 --- .../python/python/ctypes-libffi-aarch64.patch | 22 + ..

Re: [OE-core] [oe-commits] Bruce Ashfield : kern-tools: improve patch application performance

2015-03-04 Thread Richard Purdie
On Wed, 2015-03-04 at 13:58 +0100, Martin Jansa wrote: > And another one from restarted qemux86 build: > > ERROR: Function failed: do_kernel_configme (log file is located at > /home/jenkins/oe/world/shr-core/tmp-glibc/work/qemux86-oe-linux/linux-yocto/3.19+gitAUTOINC+f7a81274b4_43b9eced9b-r0/temp

[OE-core] [PATCH 2/2] pkg-config: strip system library paths reliably

2015-03-04 Thread Ross Burton
pkg-config was skipping every other link flag due to a list manipulation bug, backport a commit from git to fix this. This will stop users of zlib.pc from inserting the sysroot directory indirectly into builds. Signed-off-by: Ross Burton --- ...Strip-system-library-directories-reliably.patch |

[OE-core] [PATCH 1/2] rpm: don't put LDFLAGS into the .pc file

2015-03-04 Thread Ross Burton
The LDFLAGS are not generally useful with pkg-config and mean that the .pc file contains references to the sysroot directory, so remove it. Signed-off-by: Ross Burton --- .../rpm/rpm/no-ldflags-in-pkgconfig.patch| 14 ++ meta/recipes-devtools/rpm/rpm_5.4.14.bb

Re: [OE-core] [oe-commits] Bruce Ashfield : kern-tools: improve patch application performance

2015-03-04 Thread Martin Jansa
On Tue, Mar 03, 2015 at 10:40:45PM -0500, Bruce Ashfield wrote: > On 2015-03-03 9:23 PM, Martin Jansa wrote: > > On Mon, Mar 02, 2015 at 10:05:50PM +, g...@git.openembedded.org wrote: > >> Module: openembedded-core.git > >> Branch: master > >> Commit: 148c78e0f5de2689de3ad9beaa9f6de618d87758 >

Re: [OE-core] [PATCH 2/2] logrotate: Identify CONFFILES

2015-03-04 Thread Burton, Ross
On 3 March 2015 at 21:32, Rob Woolley wrote: > +CONFFILES_${PN} += "/var/lib/logrotate.status /etc/logrotate.conf" > ${localstatedir} and ${sysconfdir}, please. Ross -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http:

[OE-core] [PATCH 1/1] create-pull-request: fix git GIT_VERSION

2015-03-04 Thread Robert Yang
If the git version is 1.7.9.5, then 1795 is bigger than 210 which causes errors like: fatal: No such ref: :rbt/bash fatal: Needed a single revision ERROR: git request-pull reported an error Use the first 3 numbers to fix the problem. Signed-off-by: Robert Yang --- scripts/create-pull-request |

[OE-core] [PATCH 0/1] create-pull-request: fix git GIT_VERSION

2015-03-04 Thread Robert Yang
The following changes since commit 3c78468f12296abd02abce6eeac0f69bc7509958: build-appliance-image: Update to master head revision (2015-03-03 13:12:50 +) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rbt/fix_git http://cgit.openembedded

[OE-core] [PATCH 0/2] Upgrade wget and git

2015-03-04 Thread Robert Yang
The following changes since commit 3c78468f12296abd02abce6eeac0f69bc7509958: build-appliance-image: Update to master head revision (2015-03-03 13:12:50 +) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rbt/pu http://cgit.openembedded.org/c

[OE-core] [PATCH 2/2] git: 2.3.0 -> 2.3.1

2015-03-04 Thread Robert Yang
Signed-off-by: Robert Yang --- .../git/{git_2.3.0.bb => git_2.3.1.bb} |8 1 file changed, 4 insertions(+), 4 deletions(-) rename meta/recipes-devtools/git/{git_2.3.0.bb => git_2.3.1.bb} (41%) diff --git a/meta/recipes-devtools/git/git_2.3.0.bb b/meta/recipes-devtools/g

[OE-core] [PATCH 1/2] wget: 1.16.1 -> 1.16.2

2015-03-04 Thread Robert Yang
Update fix_makefile.patch: * The patch for po/Makefile.in.in is not needed any more since fixed. * Update the patch for configure.ac Signed-off-by: Robert Yang --- meta/recipes-extended/wget/wget/fix_makefile.patch | 17 + .../wget/{wget_1.16.1.bb => wget_1.16.2.bb}|

[OE-core] [PATCH 0/1] bash 3.2.48: disable parallel build

2015-03-04 Thread Robert Yang
The following changes since commit 3c78468f12296abd02abce6eeac0f69bc7509958: build-appliance-image: Update to master head revision (2015-03-03 13:12:50 +) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rbt/bash http://cgit.openembedded.or

[OE-core] [PATCH 1/1] bash 3.2.48: disable parallel build

2015-03-04 Thread Robert Yang
It's Makefile has the two rules: $(BUILTINS_LIBRARY): $(BUILTIN_DEFS) $(BUILTIN_C_SRC) config.h ${BASHINCDIR}/memalloc.h version.h @(cd $(DEFDIR) && $(MAKE) $(MFLAGS) DEBUG=${DEBUG} libbuiltins.a ) || exit 1 ${DEFDIR}/builtext.h: $(BUILTIN_DEFS) @(cd $(DEFDIR) && $(MAKE) $(MFLAGS) builtex

Re: [OE-core] [PATCH v2 2/2] systemd: split modules into packages

2015-03-04 Thread Anders Darander
* Bottazzini, Bruno [150302 21:22]: > The problem is understanding that although systemd is a single repository > it contains multiple services and daemons in it that can run even without the > core PID1, udev or the many helpers used to configure the system such as > resolved, > timedated, l

Re: [OE-core] [PATCH] bootchart2: /sbin/bootchartd referencing wrong libdir

2015-03-04 Thread Liu Jian
Please ignore this patch. Someone sent it previously // Jian 于 2015年03月04日 15:15, Jian Liu 写道: - During do_compile(), LIBDIR is set with default vaule which is /lib. bootchartd will use LIBDIR to comprise the path of bootchart-collector when compiling. But during do_install(), LIBDIR is

Re: [OE-core] [oe-commits] Bruce Ashfield : kern-tools: improve patch application performance

2015-03-04 Thread Martin Jansa
On Tue, Mar 03, 2015 at 10:40:45PM -0500, Bruce Ashfield wrote: > On 2015-03-03 9:23 PM, Martin Jansa wrote: > > On Mon, Mar 02, 2015 at 10:05:50PM +, g...@git.openembedded.org wrote: > >> Module: openembedded-core.git > >> Branch: master > >> Commit: 148c78e0f5de2689de3ad9beaa9f6de618d87758 >