[OE-core] [PATCH 0/1] bitbake-diffsigs: consider the situation where sigdata and siginfo files having the same hash values

2015-03-09 Thread Chen Qi
The following changes since commit 8ce2f2c3549248b2aa1259ceb28ed03be166ac6f: maintainers.inc: Became maintainer of python2 and python3 (2015-03-09 16:01:08 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib ChenQi/bitbake-diffsigs-duplicates http://git.po

[OE-core] [PATCH 1/1] bitbake-diffsigs: consider the situation where sigdata and siginfo files having the same hash values

2015-03-09 Thread Chen Qi
For now, `bitbake-diffsigs -t ' doesn't work. It always outputs nothing. The problem is that bitbake-diffsigs are comparing sigdata and siginfo files that have the same hash value. This is not what we want. These two files are actually duplicates considering the purpose of bitbake-diffsigs. So we

Re: [OE-core] [PATCH] lttng: Add tracing group when building lttng-tools

2015-03-09 Thread Mehaffey, John
From: Burton, Ross [ross.bur...@intel.com] Sent: Monday, March 09, 2015 1:57 PM To: Mehaffey, John Cc: openembedded-core@lists.openembedded.org; me...@gedanken.com Subject: Re: [OE-core] [PATCH] lttng: Add tracing group when building lttng-tools > On 27 February 2015 at 02:17, Mehaffey, John wro

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

2015-03-09 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 3/3] msmtp: add link file /usr/lib/sendmail

2015-03-09 Thread Kai Kang
Link file /usr/lib/sendmail points to /usr/sbin/sendmail is required by LSB core test according to Linux FHS: "For historical reasons, /usr/lib/sendmail must be a symbolic link to /usr/sbin/sendmail if the latter exists." Create the link file /usr/lib/sendmail if it doesn't exist. Refs: 1 http:/

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

2015-03-09 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 0/3] V2: Some fixes for LSB tests

2015-03-09 Thread Kai Kang
V2 doesn't use alternative to handle /usr/lib/sendmail either. Because the link target is alway ${sbindir}/sendmail, update-alternative can't handle this kind of case. So check whether /usr/lib/sendmail exists and is a link file, otherwise create it during pkg_postinst of packages such as msmtp

[OE-core] [PATCH] systemd: fix /var/log/journal ownership

2015-03-09 Thread Jonathan Liu
The ownership needs to be explicitly set otherwise it inherits the user and group id of the build user. Signed-off-by: Jonathan Liu --- meta/recipes-core/systemd/systemd_219.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-core/systemd/systemd_219.bb b/meta/recipes-core/sys

Re: [OE-core] [PATCH 1/6] xinetd: fixe HOMEPAGE and SRC_URI

2015-03-09 Thread Robert Yang
On 03/09/2015 11:59 PM, Khem Raj wrote: On Mar 9, 2015, at 12:15 AM, Robert Yang wrote: The www.xinetd.org is not available, use github as the HOMEPAGE and pkgs.fedoraproject.org as the SRC_URI. Signed-off-by: Robert Yang --- meta/recipes-extended/xinetd/xinetd_2.3.15.bb |4 ++-- 1 fil

Re: [OE-core] [PATCH 5/6] net-tools: fix SRC_URI

2015-03-09 Thread Robert Yang
On 03/10/2015 12:06 AM, Burton, Ross wrote: On 9 March 2015 at 16:03, Khem Raj mailto:raj.k...@gmail.com>> wrote: it would be nicer to use http://archive.debian.org/debian/pool/main/n/net-tools/ instead of snapshot.debian.org through out this series

[OE-core] [PATCH] kernel-devsrc: fix file ownership

2015-03-09 Thread Jonathan Liu
The file ownership needs to be explicitly set otherwise it inherits the user and group id of the build user. Signed-off-by: Jonathan Liu --- meta/recipes-kernel/linux/kernel-devsrc.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-kernel/linux/kernel-devsrc.bb b/meta/recipes

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

2015-03-09 Thread Tudor Florea
Ping. > -Original Message- > From: Tudor Florea [mailto:tudor.flo...@enea.com] > Sent: Wednesday, March 04, 2015 17:04 > To: openembedded-core@lists.openembedded.org > Cc: Tudor Florea > Subject: [dizzy] [PATCH 1/1] python: Add support for aarch64 for ctypes > module > > Python have its o

Re: [OE-core] [PATCH] liberation-fonts: inherit allarch as fonts are arch-independent

2015-03-09 Thread Jonathan Liu
Hi Ross, On 10 March 2015 at 03:38, Ross Burton wrote: > Signed-off-by: Ross Burton > --- > meta/recipes-graphics/ttf-fonts/liberation-fonts_1.04.bb |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Should probably do the same for ttf-bitstream-vera. Regards, Jonathan -- ___

[OE-core] [PATCH v2 3/3] logrotate: Identify CONFFILES

2015-03-09 Thread Rob Woolley
Some package formats explicitly track which files are configuration files so that they are not overwritten on updates. We must use an explicit list instead of a wildcard as logrotate also provides files under ${sysconfdir} that are not configuration files. Signed-off by: Rob Woolley diff --git a/

[OE-core] [PATCH v2 1/3] nfs-utils: Install nfsmount.conf

2015-03-09 Thread Rob Woolley
The file nfsmount.conf is present in nfs-utils but not installed to the filesystem. It has been added to nfs-utils-client as it seemed to be missing accidentally rather than being removed intentionally. The binary files in nfs-utils-client have a hard-coded reference to it and we already provi

[OE-core] [PATCH v2 2/3] nfs-utils: Identify CONFFILES

2015-03-09 Thread Rob Woolley
Some package formats explicitly track which files are configuration files so that they are not overwritten on updates. We must use an explicit list instead of a wildcard as nfs-utils-client provides files under ${localstatedir}/lib/nfs that are not configuration files. Signed-off by: Rob Woolley

[OE-core] [PATCH v2 0/3] Identify existing configuration files

2015-03-09 Thread Rob Woolley
Some package formats explicitly track which files are configuration files so that they are not overwritten on updates. This series explicitly identifies files that were already being packaged, but not known as configuration files. I built the RPM packages and compared the output of rpm -qp --fil

[OE-core] [PATCH v2 4/4] systemd: v219 with stable fixes

2015-03-09 Thread Bruno Bottazzini
Adding patches that fix bugs for 219 version. This will get the same consistency of the stable systemd 219 version. More details: http://cgit.freedesktop.org/systemd/systemd-stable/log/?h=v219-stable --- ...remote-fix-certificate-status-memory-leak.patch | 31 + ...ournal-remote-fix-client_cert-

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

2015-03-09 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 V2 0/4] systemd and dbus split into packages

2015-03-09 Thread Bruno Bottazzini
Differences from v1: dbus: Adding change that Andreas Oberritter recommended. -Setting RRECOMMENDS_${PN}_class-native instead RPROVIDES dbus-native-tools-native. systemd: Adding change that Anders Darander and Khem Raj recommended -Modifying PACKAGECONFIG as requested to use it with bbutils. s

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

2015-03-09 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 | 1073 ++ 1 file changed, 942 insertions(+), 131 deletions(-) diff --g

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

2015-03-09 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 | 9 - 1 file changed, 8 insertions(+), 1 dele

Re: [OE-core] [PATCH] lttng: Add tracing group when building lttng-tools

2015-03-09 Thread Burton, Ross
On 27 February 2015 at 02:17, Mehaffey, John wrote: > +inherit autotools-brokensep ptest pkgconfig adduser > Did you mean useradd? Or is adduser something Mentor-specific? Ross -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedd

[OE-core] [dylan][PATCH 1/2] dtc: remove unnecessary 'protocol=git'

2015-03-09 Thread krzysztof . m . sywula
From: Krzysztof Sywula backporting change from master 88c5e10d6296efb175f05c3aae6e308972854cb1 Signed-off-by: Krzysztof Sywula --- meta/recipes-kernel/dtc/dtc.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-kernel/dtc/dtc.inc b/meta/recipes-kernel/dtc/dtc.i

[OE-core] [dylan][PATCH 2/2] dtc: old SRC_URI died, changing to new working one

2015-03-09 Thread krzysztof . m . sywula
From: Krzysztof Sywula (From OE-Core rev: 131a17f014e6373dae526cc927588ccc0fedc38d) Signed-off-by: Krzysztof Sywula Signed-off-by: Richard Purdie --- meta/recipes-kernel/dtc/dtc.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-kernel/dtc/dtc.inc b/meta/reci

[OE-core] [PATCH] lib/oeqa/runtime/systemd: Add a basic runtime test for the journal

2015-03-09 Thread Randy Witt
The test_systemd_journal() test will fail if journalctl exits with a non-zero exit status. The exit status is non-zero even if there are no journal files, which is what drove the creation of this test. [Yocto #7388] Signed-off-by: Randy Witt --- meta/lib/oeqa/runtime/systemd.py | 6 ++ 1 fi

Re: [OE-core] gst-ffmpeg is broken since the libav-9 introduction

2015-03-09 Thread Burton, Ross
On 9 March 2015 at 18:18, Mike Looijmans wrote: > It works, and we're stuck with vendors providing no support for 1.x, and > we've been trying to get the 1.x version integrated but that's a rather big > task and the total lack of decent "how to migrate from 0.1 to 1.x" guides > isn't doing much t

[OE-core] [OE-core v1 PATCH 5/5] grub-efi: Add support to install grubaa64 efi

2015-03-09 Thread Naresh Bhat
Add support to install grubaa64.efi image. By default GRUB_IMAGE contains the bootia32.efi image. Depending on the architecture type the variable is being updated to either bootia64.efi or grubaa64.efi Signed-off-by: Naresh Bhat --- meta/classes/grub-efi.bbclass | 17 +++-- 1 fil

[OE-core] [OE-core v1 PATCH 3/5] bootimg: Skip iso image build for aarch64

2015-03-09 Thread Naresh Bhat
To generate bootable ISO image the x86 architecture uses syslinux package (syslinux/isolinux.bin). We have already skip the syslinux package for aarch64. Hence skip the iso image build for aarch64. Signed-off-by: Naresh Bhat --- meta/classes/bootimg.bbclass |6 +- 1 file changed, 5 in

[OE-core] [OE-core v1 PATCH 4/5] grub: Update grub git recipe

2015-03-09 Thread Naresh Bhat
Update the grub git recipe with the following actions for native and target - Base class extend to native - do_configure_prepend - do_install_append - do_mkimage native - do_deploy Signed-off-by: Naresh Bhat --- meta/recipes-bsp/grub/grub_git.bb | 48 +++-- 1 fi

[OE-core] [OE-core v1 PATCH 2/5] syslinux: Remove bootimg dependency for aarch64

2015-03-09 Thread Naresh Bhat
Remove the bootimg dependency as syslinux for aarch64. The reasons to skip the syslinux package - syslinux package contains x86 assembly code. Hence compilation errors on aarch64. - There is no BIOS on aarch64 to answer syscalls. Signed-off-by: Naresh Bhat --- meta/classes/syslinux.bbclass |

[OE-core] [OE-core v1 PATCH 1/5] bootimg: Add support to install Image

2015-03-09 Thread Naresh Bhat
Add support to install kernel image for aarch64 Signed-off-by: Naresh Bhat --- meta/classes/bootimg.bbclass | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/meta/classes/bootimg.bbclass b/meta/classes/bootimg.bbclass index b1c03ba..ed7b32f 100644 --- a/meta/class

[OE-core] [OE-core v1 PATCH 0/5] aarch64 changes for meta layer

2015-03-09 Thread Naresh Bhat
I am adding the support of aarch64 to LUV OS Distribution project. The luv-yocto project is based on poky distribution. https://01.org/linux-uefi-validation While adding support I find that these are the few meta layer changes, which I have been asked to upstream. If we merge these changes into o

Re: [OE-core] gst-ffmpeg is broken since the libav-9 introduction

2015-03-09 Thread Mike Looijmans
On 09-03-15 16:26, Burton, Ross wrote: Oh and FWIW the Sato images in master just flipped from GStreamer 0.10 to 1.4 by default, so I do hope that GStreamer 0.10 will disappear from oe-core after the next release (moving to meta-multimedia). Can I ask why you're still using GStreamer 0.10? If t

Re: [OE-core] gst-ffmpeg is broken since the libav-9 introduction

2015-03-09 Thread Mike Looijmans
On 09-03-15 16:24, Burton, Ross wrote: On 6 March 2015 at 17:51, Mike Looijmans mailto:mike.looijm...@topic.nl>> wrote: Commit 4ceff7d0a1f28eb1ce5d288111015b__ff8d5e9a7e "libav: drop older 0.8.* and use libav-9 by default" removed libav 0.8 in favor of the "9" edition. However, afte

Re: [OE-core] Problem with mesa_10.1.3.bb for angstrom on i.mx 6

2015-03-09 Thread Burton, Ross
On 9 March 2015 at 14:31, ss infod wrote: > Is there a way to build my image while disabling the mesa support ? (I > want a GUI but I don't need the 3D support). > > Why is "mesa_10.1.3.bb" failing for this configuration ? > You can try disabling opengl by doing DISTRO_FEATURES_remove="opengl" i

[OE-core] [PATCH] xserver-xorg: don't close already-closed connections

2015-03-09 Thread Ross Burton
On shutdown xserver was closing connections that were already closed, resulting in a segfault. Signed-off-by: Ross Burton --- .../xorg-xserver/xserver-xorg/xtrans.patch | 38 .../xorg-xserver/xserver-xorg_1.16.3.bb|1 + 2 files changed, 39 insertion

Re: [OE-core] [PATCH] systemd: 219 -> stable-219

2015-03-09 Thread Khem Raj
> On Mar 9, 2015, at 10:07 AM, Bottazzini, Bruno > wrote: > > On Sex, 2015-03-06 at 14:49 -0800, Khem Raj wrote: >> On Fri, Mar 6, 2015 at 1:51 PM, Bruno Bottazzini >> wrote: >>> The upstream systemd git repo only contains the main systemd branch that >>> progresses at a quick pace, continuous

Re: [OE-core] [PATCH] systemd: 219 -> stable-219

2015-03-09 Thread Bottazzini, Bruno
On Sex, 2015-03-06 at 14:49 -0800, Khem Raj wrote: > On Fri, Mar 6, 2015 at 1:51 PM, Bruno Bottazzini > wrote: > > The upstream systemd git repo only contains the main systemd branch that > > progresses at a quick pace, continuously bringing both bugfixes and new > > features. > > > > Distributio

[OE-core] [PATCH] liberation-fonts: inherit allarch as fonts are arch-independent

2015-03-09 Thread Ross Burton
Signed-off-by: Ross Burton --- meta/recipes-graphics/ttf-fonts/liberation-fonts_1.04.bb |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-graphics/ttf-fonts/liberation-fonts_1.04.bb b/meta/recipes-graphics/ttf-fonts/liberation-fonts_1.04.bb index 89fa4b21..708f5

Re: [OE-core] [PATCH] liberation-fonts: inherit allarch as fonts are arch-independent

2015-03-09 Thread Otavio Salvador
On Mon, Mar 9, 2015 at 1:38 PM, Ross Burton wrote: > Signed-off-by: Ross Burton Acked-by: Otavio Salvador Once this is merged, please backport it to Dizzy as well -- Otavio Salvador O.S. Systems http://www.ossystems.com.brhttp://code.ossystems.com.br Mobi

Re: [OE-core] [PATCH v3] u-boot.inc: fix rename image error

2015-03-09 Thread Otavio Salvador
On Mon, Mar 9, 2015 at 4:24 AM, Chunrong Guo wrote: > Resolve mismatch between U-Boot configs and uboot image name. > The ${S}/${config}/u-boot-${type}.${UBOOT_SUFFIX} may alway be false > and repeat compile or install so we need to check if ${type} match > ${config} . > > Signed-off-by: Ch

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

2015-03-09 Thread Bottazzini, Bruno
On Seg, 2015-03-09 at 08:32 -0700, Khem Raj wrote: > > On Mar 9, 2015, at 6:37 AM, Bottazzini, Bruno > > wrote: > > > > On Sex, 2015-03-06 at 14:51 -0800, Khem Raj wrote: > >> On Fri, Mar 6, 2015 at 6:03 AM, Bottazzini, Bruno > >> wrote: > >>> On Sex, 2015-03-06 at 09:23 +0100, Anders Darander

Re: [OE-core] [PATCH 5/6] net-tools: fix SRC_URI

2015-03-09 Thread Burton, Ross
On 9 March 2015 at 16:03, Khem Raj wrote: > it would be nicer to use > http://archive.debian.org/debian/pool/main/n/net-tools/ instead of > snapshot.debian.org through out this series > Apart from that 1.6.0-25.diff.gz isn't in http://archive.debian.org/debian/pool/main/n/net-tools/. Ross -- _

Re: [OE-core] [PATCH 5/6] net-tools: fix SRC_URI

2015-03-09 Thread Khem Raj
> On Mar 9, 2015, at 12:15 AM, Robert Yang wrote: > > -SRC_URI = > "${DEBIAN_MIRROR}/main/n/net-tools/net-tools_1.60.orig.tar.gz;name=tarball \ > - > ${DEBIAN_MIRROR}/main/n/net-tools/${BPN}_${PV}.diff.gz;apply=no;name=patch \ > +SRC_URI = > "http://snapshot.debian.org/archive/debia

Re: [OE-core] [PATCH 1/6] xinetd: fixe HOMEPAGE and SRC_URI

2015-03-09 Thread Khem Raj
> On Mar 9, 2015, at 12:15 AM, Robert Yang wrote: > > The www.xinetd.org is not available, use github as the HOMEPAGE and > pkgs.fedoraproject.org as the SRC_URI. > > Signed-off-by: Robert Yang > --- > meta/recipes-extended/xinetd/xinetd_2.3.15.bb |4 ++-- > 1 file changed, 2 insertions(+),

Re: [OE-core] [opkg-devel] Stepping back from opkg maintenance

2015-03-09 Thread Alejandro del Castillo
HI Paul, Thanks for leading the project during the past 18 months. You can tell from the features/bug fixes that opkg improved a lot. Regarding the future of opkg, I would like to put my name forward to step in and help maintain the project. I am really interested in the continued success of it

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

2015-03-09 Thread Khem Raj
> On Mar 9, 2015, at 6:37 AM, Bottazzini, Bruno > wrote: > > On Sex, 2015-03-06 at 14:51 -0800, Khem Raj wrote: >> On Fri, Mar 6, 2015 at 6:03 AM, Bottazzini, Bruno >> wrote: >>> On Sex, 2015-03-06 at 09:23 +0100, Anders Darander wrote: * Bottazzini, Bruno [150305 17:15]: > On

Re: [OE-core] gst-ffmpeg is broken since the libav-9 introduction

2015-03-09 Thread Burton, Ross
On 6 March 2015 at 17:51, Mike Looijmans wrote: > Commit 4ceff7d0a1f28eb1ce5d288111015bff8d5e9a7e "libav: drop older 0.8.* > and use libav-9 by default" removed libav 0.8 in favor of the "9" edition. > However, after compiling this for a MIPS box, the gst-ffmpeg plugin now > refuses to load and d

Re: [OE-core] gst-ffmpeg is broken since the libav-9 introduction

2015-03-09 Thread Burton, Ross
Oh and FWIW the Sato images in master just flipped from GStreamer 0.10 to 1.4 by default, so I do hope that GStreamer 0.10 will disappear from oe-core after the next release (moving to meta-multimedia). Can I ask why you're still using GStreamer 0.10? If there's a good reason to keep 0.10 in oe-c

[OE-core] Problem with mesa_10.1.3.bb for angstrom on i.mx 6

2015-03-09 Thread ss infod
Hello, I'm trying to build an angstrom image for an i.mx 6 (wandboard). I'm able to build a console image but I have a problem when I build an image which includes xfce or gnome. My bitbake commands are: MACHINE=wandboard-quad ./oebb.sh bitbake development-gnome-image (or) MACHINE=wandboard-quad

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

2015-03-09 Thread Bottazzini, Bruno
On Sex, 2015-03-06 at 14:51 -0800, Khem Raj wrote: > On Fri, Mar 6, 2015 at 6:03 AM, Bottazzini, Bruno > wrote: > > On Sex, 2015-03-06 at 09:23 +0100, Anders Darander wrote: > >> * Bottazzini, Bruno [150305 17:15]: > >> > >> > On Qui, 2015-03-05 at 15:28 +0100, Anders Darander wrote: > >> > >> >

[OE-core] [PATCH] combo-layer: make Signed-off-by optional

2015-03-09 Thread Patrick Ohly
It depends on the diligence of the person running the combo-layer tool whether the Signed-off-by line added to each commit actually indicates that the person was involved in validating the change. When the import is purely automatic, it is better to not add the line, because the history is more us

[OE-core] [PATCH] oeqa/runtime: Some new tweaks to the error log parser.

2015-03-09 Thread Lucian Musat
These errors keep showing up in the automated tests and should be whitelisted. Signed-off-by: Lucian Musat --- meta/lib/oeqa/runtime/parselogs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py index b

[OE-core] [PATCH] bitbake.conf: use http:// for GNU_MIRROR instead of ftp://

2015-03-09 Thread Koen Kooi
The past few weeks ftp://ftp.gnu.org has been intermittently giving errors like this: WARNING: Failed to fetch URL ftp://ftp.gnu.org/gnu/emacs/emacs-23.4.tar.gz;name=tarball, attempting MIRRORS if available ERROR: Fetcher failure: Fetch command failed with exit code 4, output: Cannot parse PASV

[OE-core] cups filters bannertopdf

2015-03-09 Thread Life Life
Hello, I'm try to add cups filter for yocto 1.6.2 daisy I add to Ghostscrip bb this line is not work. ${exec_prefix}/lib/cups/filter/bannertopdf But I add to this lines its work. FILES_${PN}-cups += "${exec_prefix}/lib/cups/filter/gstoraster \ ${exec_prefix}/lib/cups/filte

[OE-core] [PATCH] combo-layer: let user choose where properties get updated

2015-03-09 Thread Patrick Ohly
When updating a property (at the moment, only 'last_revision'), first check whether the user already added it to the main config. If so, update there even if there is a local config. This way, 'last_revision' can be shared between developers as part of the repository while still configuring per-de

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

2015-03-09 Thread Naresh Bhat
Hi Bernhard Reutner-Fischer, On 5 March 2015 at 21:48, Bernhard Reutner-Fischer wrote: > On 5 March 2015 at 15:06, Naresh Bhat wrote: > if d.getVar('TARGET_ARCH', True) == "aarch64": return Does it make sense ? >>> >>> At least the parser should grok it. >>> The c

[OE-core] [PATCH v3] u-boot.inc: fix rename image error

2015-03-09 Thread Chunrong Guo
Resolve mismatch between U-Boot configs and uboot image name. The ${S}/${config}/u-boot-${type}.${UBOOT_SUFFIX} may alway be false and repeat compile or install so we need to check if ${type} match ${config} . Signed-off-by: Chunrong Guo --- meta/recipes-bsp/u-boot/u-boot.inc | 52

[OE-core] [PATCH 4/6] apt: fix SRC_URI

2015-03-09 Thread Robert Yang
Fixed: WARNING: Failed to fetch URL ftp://ftp.debian.org/debian/pool/main/a/apt/apt_0.9.9.4.tar.gz, attempting MIRRORS if available Signed-off-by: Robert Yang --- meta/recipes-devtools/apt/apt.inc |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/apt/

[OE-core] [PATCH 2/6] libevent: fix SRC_URI

2015-03-09 Thread Robert Yang
The wget reported errors for the past URI since it can't follow the redirection well: Connecting to cloud.github.com (cloud.github.com)|54.192.140.6|:443... connected. OpenSSL: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure Unable to establish SSL connection. S

[OE-core] [PATCH 5/6] net-tools: fix SRC_URI

2015-03-09 Thread Robert Yang
Fixed: WARNING: Failed to fetch URL ftp://ftp.debian.org/debian/pool/main/n/net-tools/net-tools_1.60-25.diff.gz;apply=no;name=patch, attempting MIRRORS if available Signed-off-by: Robert Yang --- .../net-tools/net-tools_1.60-25.bb |4 ++-- 1 file changed, 2 insertions(+), 2

[OE-core] [V2 PATCH 0/6] meta: fix SRC_URI

2015-03-09 Thread Robert Yang
Changes of V2: * Use snapshot.debian.org for the invalid SRC_URI when possible as Ross suggested. // Robert 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

[OE-core] [PATCH 1/6] xinetd: fixe HOMEPAGE and SRC_URI

2015-03-09 Thread Robert Yang
The www.xinetd.org is not available, use github as the HOMEPAGE and pkgs.fedoraproject.org as the SRC_URI. Signed-off-by: Robert Yang --- meta/recipes-extended/xinetd/xinetd_2.3.15.bb |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/xinetd/xinetd_2

[OE-core] [PATCH 6/6] resolvconf: fix SRC_URI

2015-03-09 Thread Robert Yang
Fixed: WARNING: Failed to fetch URL ftp://ftp.debian.org/debian/pool/main/r/resolvconf/resolvconf_1.76.tar.xz, attempting MIRRORS if available Signed-off-by: Robert Yang --- .../resolvconf/resolvconf_1.76.bb |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --gi

[OE-core] [PATCH 3/6] mailx: fix SRC_URI

2015-03-09 Thread Robert Yang
Fixed: WARNING: Failed to fetch URL ftp://ftp.debian.org/debian/pool/main/h/heirloom-mailx/heirloom-mailx_12.5-1.diff.gz;name=patch, attempting MIRRORS if available Signed-off-by: Robert Yang --- meta/recipes-extended/mailx/mailx_12.5.bb |4 ++-- 1 file changed, 2 insertions(+), 2 deletion