[OE-core] does it support mercurial?

2011-08-25 Thread Ni Qingliang
It looks like the bitbake support 'hg' fetcher, but when building custom package, it said need "mercurial-native", but there is no "mercurial" package in recipes-devtools, of cause, I installed mercurial on host pc. Does anyone can confirm this problem??? -- Yi Qingliang 倪庆亮 Insigma __

Re: [OE-core] [PATCH] utils.bbclass: skip empty paths when handling FILESEXTRAPATHS

2011-08-25 Thread Phil Blundell
On Fri, 2011-08-19 at 15:11 -0700, Chris Larson wrote: > But then, there's a tendency nowadays to avoid map/filter/etc, > so that's probably not best :) Oh, is there? What's the objection to those constructs, out of interest? I am quite fond of them myself. p. __

Re: [OE-core] [PATCH 1/2] libc-package bbclass: fix binary localedata dependency code

2011-08-25 Thread Phil Blundell
On Wed, 2011-08-24 at 20:32 +0200, Koen Kooi wrote: > diff --git a/meta/classes/libc-package.bbclass > b/meta/classes/libc-package.bbclass > index 0d5ce20..d3b33d6 100644 > --- a/meta/classes/libc-package.bbclass > +++ b/meta/classes/libc-package.bbclass > @@ -243,7 +243,7 @@ python package_do_spl

Re: [OE-core] [bitbake-devel] Layer priorities influencing default version selection

2011-08-25 Thread Paul Eggleton
On Tuesday 02 August 2011 16:35:12 Khem Raj wrote: > On Aug 2, 2011, at 7:14 AM, Chris Larson wrote: > > On Tue, Aug 2, 2011 at 6:52 AM, Phil Blundell wrote: > >> Actually, to some extent I consider it a bit of a misfeature that the > >> layer priority is specified by the layer rather than by the

[OE-core] [PATCH 2/2] kernel.bbclass: support kernel image type of vmlinux.gz

2011-08-25 Thread Mike Crowe
Add support for a gzipped vmlinux kernel by specifying: KERNEL_IMAGETYPE = "vmlinux.gz" Signed-off-by: Mike Crowe --- meta/classes/kernel.bbclass |7 ++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index 04e6

[OE-core] [PATCH 1/2] kernel.bbclass: Find the kernel consistently.

2011-08-25 Thread Mike Crowe
Use KERNEL_OUTPUT variable to find the generated kernel image rather than duplicating the existing path. This also means it can be overridden simply. Signed-off-by: Mike Crowe --- meta/classes/kernel.bbclass |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/classes/k

Re: [OE-core] [PATCH] utils.bbclass: skip empty paths when handling FILESEXTRAPATHS

2011-08-25 Thread Chris Larson
On Thu, Aug 25, 2011 at 2:18 AM, Phil Blundell wrote: > On Fri, 2011-08-19 at 15:11 -0700, Chris Larson wrote: >> But then, there's a tendency nowadays to avoid map/filter/etc, >> so that's probably not best :) > > Oh, is there?  What's the objection to those constructs, out of > interest?  I am q

[OE-core] [PATCH] opkg-utils: ignore packages disapperaring filelist generation

2011-08-25 Thread Dmitry Eremin-Solenikov
Package files disappearing during index generation don't cause a fatal error. Make package file disappearing during filelist generation also a non-fatal error. Signed-off-by: Dmitry Eremin-Solenikov --- .../opkg-utils/no-ioerror-during-filelist.patch| 31 meta/recipes-

[OE-core] Adding TARGET_VECTOR

2011-08-25 Thread Kumar Gala
We have some packages like flac that are aware of vectorization that may or may not exist on a given processor. I was wondering if adding something like TARGET_VECTOR similar to TARGET_FPU made sense as a way for recipes to decide on how to set various vectorization flags if needed. I was look

Re: [OE-core] bug 1169 eglibc doesn't depend on gcc version correctly

2011-08-25 Thread Richard Purdie
On Wed, 2011-08-24 at 14:35 +0800, Robert Yang wrote: > Hi experts, > > There is a bug 1169: eglibc doesn't depend on gcc version correctly, > > The produce steps are: > > 1) In the first build dir(e.g, build_1), edit conf/local.conf: > SSTATE_DIR = /path/to/share_sstate > > $ bitbake m

Re: [OE-core] [PATCH 1/2] libc-package bbclass: fix binary localedata dependency code

2011-08-25 Thread Richard Purdie
On Thu, 2011-08-25 at 10:24 +0100, Phil Blundell wrote: > On Wed, 2011-08-24 at 20:32 +0200, Koen Kooi wrote: > > diff --git a/meta/classes/libc-package.bbclass > > b/meta/classes/libc-package.bbclass > > index 0d5ce20..d3b33d6 100644 > > --- a/meta/classes/libc-package.bbclass > > +++ b/meta/clas

Re: [OE-core] does it support mercurial?

2011-08-25 Thread Richard Purdie
On Thu, 2011-08-25 at 15:28 +0800, Ni Qingliang wrote: > It looks like the bitbake support 'hg' fetcher, but when building custom > package, it said need "mercurial-native", but there is no "mercurial" > package in recipes-devtools, of cause, I installed mercurial on host pc. > > Does anyone can c

Re: [OE-core] [PATCH 1/1] linux-yocto: update meta SRCREV to sync version strings

2011-08-25 Thread Richard Purdie
On Thu, 2011-08-25 at 00:36 -0400, Bruce Ashfield wrote: > During the update of the bitbake recipe's string to 3.0.3 the internal > version marker in the kernel stayed at v3.0. This meant that kernel > configuration auditing the constructed file couldn't be found and audit > warnings were thrown. T

[OE-core] [PATCH 1/1] classes/sanity: enhance the network connectivity test

2011-08-25 Thread Joshua Lock
Switch to use the checkstatus fetcher API for the network connectivity test, this has several advantages: * we no longer print any messages to the console whilst the check is being run * we don't actually download anything, removing the need for tidy up and making the code more concise Signed-off-

[OE-core] [PATCH 0/1] Enhance network connectivity sanity check

2011-08-25 Thread Joshua Lock
The patch header says it all, I've switched to using the checkstatus API of fetch2 to implement the network connectivity check. This adds a requirement for BitBake master as of yesterday if you want to sanity check a gainst git uri's. The following changes since commit 445d6426197579a9c0317498cc6

Re: [OE-core] [PATCH 1/1] classes/sanity: enhance the network connectivity test

2011-08-25 Thread Richard Purdie
On Thu, 2011-08-25 at 08:29 -0700, Joshua Lock wrote: > Switch to use the checkstatus fetcher API for the network connectivity test, > this has several advantages: > * we no longer print any messages to the console whilst the check is > being run > * we don't actually download anything, removing th

Re: [OE-core] [bitbake-devel] Layer priorities influencing default version selection

2011-08-25 Thread Khem Raj
On Thu, Aug 25, 2011 at 3:50 AM, Paul Eggleton wrote: >> >> In my opinion the layer priority for all kind of meta data should be >> consistent and selected using bblayers.conf > > So I've thought about this more, and I don't think it is a good idea, for two > reasons: > > 1) It increases the compl

Re: [OE-core] [bitbake-devel] Layer priorities influencing default version selection

2011-08-25 Thread Paul Eggleton
On Thursday 25 August 2011 16:56:28 you wrote: > with layers we dont control policies of all the layers that may be used on > top so fixing meta-oe does not solve problem completely and we can not ask > for exclusive recipes. People would want to override the recipes from other > layers. Generall

Re: [OE-core] [PATCH 1/2] kernel.bbclass: Find the kernel consistently.

2011-08-25 Thread Saul Wold
On 08/25/2011 05:59 AM, Mike Crowe wrote: Use KERNEL_OUTPUT variable to find the generated kernel image rather than duplicating the existing path. This also means it can be overridden simply. There are other places in kernel.bbclass that use the path vs KERNEL_OUTPUT, is there a reason you did

[OE-core] [PATCH 0/1] linux-yocto-rt: fix qemumips boot

2011-08-25 Thread Bruce Ashfield
Richard/Saul, Just a minor tweak of the -rt SRCREVs to pickup a fix that we got overnight that enables qemumips to boot from the prompt. The following changes since commit 6c2b7beac3cd23ed44bd3e195c6360a0932876bf: classes/sanity: enhance the network connectivity test (2011-08-25 08:51:30 -07

[OE-core] [PATCH 1/1] linux-yocto-rt: qemumips: fix boot panic

2011-08-25 Thread Bruce Ashfield
Fixes [YOCTO #1392] Updating the SRCREVs to pickup: [ mips/rt: convert cascade interrupt non threaded The preempt_rt kernel forces all irq interrupts to be threaded, but special interrupts can be excluded from this conversion. The cascade interrupt should be part of these excepti

Re: [OE-core] [bitbake-devel] Layer priorities influencing default version selection

2011-08-25 Thread Martin Jansa
On Thu, Aug 25, 2011 at 05:58:23PM +0100, Paul Eggleton wrote: > On Thursday 25 August 2011 16:56:28 you wrote: > > with layers we dont control policies of all the layers that may be used on > > top so fixing meta-oe does not solve problem completely and we can not ask > > for exclusive recipes. P

Re: [OE-core] [PATCH 0/1] linux-yocto-rt: fix qemumips boot

2011-08-25 Thread Bruce Ashfield
On Thu, Aug 25, 2011 at 4:54 PM, Bruce Ashfield wrote: > Richard/Saul, > > Just a minor tweak of the -rt SRCREVs to pickup a fix > that we got overnight that enables qemumips to boot from the s/from/to/ But you knew what I meant. Bruce > prompt. > > > The following changes since commit 6c2b7be

[OE-core] [PATCH meta-oe 7/9] live555: Imported from OE classic

2011-08-25 Thread Joel A Fernandes
Signed-off-by: Joel A Fernandes --- .../live555/files/config.linux-cross | 17 ++ meta-oe/recipes-multimedia/live555/live555.inc | 56 .../recipes-multimedia/live555/live555_20110314.bb | 10 3 files changed, 83 insertions(+), 0 deletions(-)

[OE-core] [PATCH meta-oe 8/9] xsp: Imported from OE classic

2011-08-25 Thread Joel A Fernandes
Signed-off-by: Joel A Fernandes --- .../recipes-multimedia/xsp/xsp/xsp-fix-pc.patch| 10 ++ meta-oe/recipes-multimedia/xsp/xsp_1.0.0-8.bb | 15 +++ 2 files changed, 25 insertions(+), 0 deletions(-) create mode 100644 meta-oe/recipes-multimedia/xsp/xsp/xsp-fix-pc.

[OE-core] [PATCH meta-oe 1/9] schroedinger: Imported from OE classic

2011-08-25 Thread Joel A Fernandes
Signed-off-by: Joel A Fernandes --- .../schroedinger/gst-plugin-schroedinger_1.0.9.bb | 15 +++ .../schroedinger/schroedinger.inc | 19 +++ .../schroedinger/schroedinger/configure.ac.patch | 13 + .../schroedinger/schroedinger_1.0.

[OE-core] [PATCH meta-oe 6/9] vlc: Imported from OE classic

2011-08-25 Thread Joel A Fernandes
Signed-off-by: Joel A Fernandes --- vlc is not an mplayer depdency, but libdvdcss is an mplayer depedency and it is included in the recipes/vlc directory in oe-classic. I have imported vlc as well for completeness. meta-oe/recipes-multimedia/vlc/vlc.inc| 61 +

[OE-core] [PATCH meta-oe 5/9] libdvdcss: Imported from OE classic, vlc depends on it

2011-08-25 Thread Joel A Fernandes
Signed-off-by: Joel A Fernandes --- meta-oe/recipes-multimedia/vlc/libdvdcss_1.2.10.bb | 13 + 1 files changed, 13 insertions(+), 0 deletions(-) create mode 100644 meta-oe/recipes-multimedia/vlc/libdvdcss_1.2.10.bb diff --git a/meta-oe/recipes-multimedia/vlc/libdvdcss_1.2.10.bb b

[OE-core] [PATCH meta-oe 2/9] faad2: Imported from OE classic

2011-08-25 Thread Joel A Fernandes
Signed-off-by: Joel A Fernandes --- meta-oe/recipes-multimedia/faad2/faad2_2.7.bb | 23 +++ 1 files changed, 23 insertions(+), 0 deletions(-) create mode 100644 meta-oe/recipes-multimedia/faad2/faad2_2.7.bb diff --git a/meta-oe/recipes-multimedia/faad2/faad2_2.7.bb b/meta

[OE-core] [PATCH meta-oe 9/9] xpext: Imported from OE classic

2011-08-25 Thread Joel A Fernandes
Signed-off-by: Joel A Fernandes --- .../recipes-multimedia/xpext/xpext/auxdir.patch| 13 +++ meta-oe/recipes-multimedia/xpext/xpext_1.0-5.bb| 23 2 files changed, 36 insertions(+), 0 deletions(-) create mode 100644 meta-oe/recipes-multimedia/xpext/xpext/a

[OE-core] [RFC meta-oe 2/2] gnome-system-monitor: Add dependency on gnome-icon-theme

2011-08-25 Thread Joel A Fernandes
Without this, the configure stage of this recipe fails as pkg-config cannot find the gnome-icon-theme package Signed-off-by: Joel A Fernandes --- .../gnome-system-monitor_2.28.2.bb |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta-gnome/recipes-gnome

[OE-core] [PATCH meta-oe 4/9] libdvdread: Imported from OE classic

2011-08-25 Thread Joel A Fernandes
Signed-off-by: Joel A Fernandes --- .../libdvdread/libdvdread_4.1.3-10.bb | 16 1 files changed, 16 insertions(+), 0 deletions(-) create mode 100644 meta-oe/recipes-multimedia/libdvdread/libdvdread_4.1.3-10.bb diff --git a/meta-oe/recipes-multimedia/libdvdread/li

[OE-core] [meta-ti PATCH] beagleboard-test-scripts: Imported from OE classic

2011-08-25 Thread Joel A Fernandes
Signed-off-by: Joel A Fernandes --- .../beagleboard/beagleboard-test-scripts_git.bb| 50 1 files changed, 50 insertions(+), 0 deletions(-) create mode 100644 recipes-ti/beagleboard/beagleboard-test-scripts_git.bb diff --git a/recipes-ti/beagleboard/beagleboard-test-sc

[OE-core] [meta-ti PATCH 3/4] libgnomecups: Imported from OE Classic

2011-08-25 Thread Joel A Fernandes
Signed-off-by: Joel A Fernandes --- .../recipes-gnome/gnome/libgnomecups_0.2.3.bb | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) create mode 100644 meta-gnome/recipes-gnome/gnome/libgnomecups_0.2.3.bb diff --git a/meta-gnome/recipes-gnome/gnome/libgnomecups_0.2

[OE-core] [meta-ti PATCH 1/4] gedit: Imported from OE classic

2011-08-25 Thread Joel A Fernandes
Signed-off-by: Joel A Fernandes --- meta-gnome/recipes-gnome/gedit/gedit_2.30.0.bb | 24 1 files changed, 24 insertions(+), 0 deletions(-) create mode 100644 meta-gnome/recipes-gnome/gedit/gedit_2.30.0.bb diff --git a/meta-gnome/recipes-gnome/gedit/gedit_2.30.0.bb b/

[OE-core] [meta-ti PATCH 2/4] gtksourceview: Imported from OE classic

2011-08-25 Thread Joel A Fernandes
* Added LIC_FILES_CHKSUM * Added virtual/gettext to DEPENDS Signed-off-by: Joel A Fernandes --- .../recipes-gnome/gtksourceview/files/acinclude.m4 | 90 ++ .../recipes-gnome/gtksourceview/files/gtk-doc.m4 | 53 ++ .../recipes-gnome/gtksourceview/files/gtk-doc.make | 173 ++

[OE-core] [meta-ti PATCH 4/4] libgnomeprint: Imported from OE classic

2011-08-25 Thread Joel A Fernandes
Signed-off-by: Joel A Fernandes --- .../recipes-gnome/gnome/libgnomeprint_2.18.7.bb| 15 +++ 1 files changed, 15 insertions(+), 0 deletions(-) create mode 100644 meta-gnome/recipes-gnome/gnome/libgnomeprint_2.18.7.bb diff --git a/meta-gnome/recipes-gnome/gnome/libgnomeprint_2.

[OE-core] [PATCH 0/1] qt4e-demo-image: Fix bug 999

2011-08-25 Thread Xiaofeng Yan
From: Xiaofeng Yan Hi Saul & Paul, I merged qt4e-base-image.bb to qt4e-demoo-image.bb according to your suggestion. If you have any suggestion, I will modify them again. Pull URL: git://git.pokylinux.org/poky-contrib.git Branch: xiaofeng/qt4e-demo-image Browse: http://git.pokylinux.org/c

[OE-core] [OC-core][PATCH 1/1] qt4e-demo-image: Fix bug 999

2011-08-25 Thread Xiaofeng Yan
From: Xiaofeng Yan [YOCTO #999] Copy metadata of qt4e-demo-image from OE for easy testing qt4embeded on embedded platform. This image was tested on qemuarm and can run program "qtdemoE". Signed-off-by: Xiaofeng Yan --- meta/recipes-qt/images/qt4e-demo-image.bb | 19 ++ meta/recipes-

Re: [OE-core] new feature? (for "DL_DIR")

2011-08-25 Thread Ni Qingliang
thanks again, I have setup an internal package server (http), and the client can use it in poky. but I have another problem for git svn( for the .gz .bz2 package, no problem), the source code of the packages using git/svn/hg are directories in the server, does the client can use it??? On Mon, 201

Re: [OE-core] new feature? (for "DL_DIR")

2011-08-25 Thread Ni Qingliang
I found that: for every vcs (e.g. git) package, except a directory in "git" or "git2", there is another file "*.tar.gz" in the downloads dir. but for my own package, e.g linux 2.6.35 for i.mx28, only the directory under "git2", I can't found the tar.gz file in downloads, why? On Fri, 2011-08-26 a

[OE-core] how to use AUTOREV for a SVN repo in oe-core?

2011-08-25 Thread Cliff Brake
Hello, I'm trying to figure out how AUTOREV is supposed to work these days with oe-core. In the past, I would do something like: SRCREV = "${AUTOREV}" PV = "1.0+svnr${SRCREV}" in my custom application recipes to always build the head of a SVN repo. In OE classic, we have: SRCPV = "${@bb.fetch

[OE-core] [PATCH 3/4] multilib.bbclass: Fix renaming logic for "FILES_", "RDEPENDS_", etc

2011-08-25 Thread Dongxiao Xu
In the orignal logic, the renaming will not work for "FILES_" if defined variables as: PACKAGES = "${PN}" FILES_abc = "/usr/include/abc.h" It is because ${PN} is "lib64-abc" so it will not be contained in pkgrename. This commit enumerates all element in PACKAGES, getting the original packages an

[OE-core] [PATCH 2/4] bitbake.conf: Use BPN in FILES paths

2011-08-25 Thread Dongxiao Xu
Use BPN instead of PN in FILES path to support multilib. Signed-off-by: Dongxiao Xu --- meta/conf/bitbake.conf |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index b309516..2a77483 100644 --- a/meta/conf/bitbake.conf ++

[OE-core] [PATCH 0/4][PULL] multilib: various fixes related with login, postinst, etc

2011-08-25 Thread Dongxiao Xu
Hi Richard, This pull request contains several multilib fixes addressing issues like login failure, missing postinst scripts, missing package files, etc. Please help to review and pull. Thanks, Dongxiao The following changes since commit 81aa4bfbde871af1d569b64499c34a315bf6218e: classes/sani

[OE-core] [PATCH 1/4] base-passwd: Use BPN in FILES paths

2011-08-25 Thread Dongxiao Xu
Use BPN instead of PN in FILES paths. This fixes the login issue by /etc/passwd missing in multilib images. Signed-off-by: Dongxiao Xu --- .../recipes-core/base-passwd/base-passwd_3.5.22.bb | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/meta/recipes-core/base-p

[OE-core] [PATCH 4/4] multilib.bbclass: add "pkg_postinst" and "pkg_postrm" as renaming elements

2011-08-25 Thread Dongxiao Xu
Add "pkg_postinst" and "pkg_postrm" as renaming elements, which fixes missing post install/rm scripts in target image. Signed-off-by: Dongxiao Xu --- meta/classes/multilib.bbclass |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/classes/multilib.bbclass b/meta/class