[yocto] kvm error

2014-05-14 Thread sonia verma
Hi I'm getting below error when trying to boot the KVM with ethernet bridging,kvm support and universel TUN enabled by the following command.. /usr/bin/qemu-system-ppc64 -m 512 -nographic -hda /var/volatile/debian_lenny_powerpc_standard.qcow2 annot manage 'OHCI USB controller' PCI device type

[yocto] Best way to remove DISTRO_FEATURES?

2014-05-14 Thread Neuer User
Hi I have a small custom image based on the core-image-minimal. Due to some DISTRO features (3g, nfc, a.o.) I get useless packages included (ofono, neard). What is the best way to remove them? Can the distro content be changed? Or would I need to build my own distro? (Which would be not so easy

Re: [yocto] Best way to remove DISTRO_FEATURES?

2014-05-14 Thread Vaduva alexandru
Depending on your situation. If it is a one time yob you can do: DISTRO_FEATURES_remove = x in your local.conf -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] Best way to remove DISTRO_FEATURES?

2014-05-14 Thread Neuer User
Well, no, not a one-time job. So I rather added DISTRO_FEATURES_remove = 3g bluetooth irda nfc zeroconf x11 wayland to my image.bb file. Guess, this is then the recommended way to go? Thanks, Michael Am 14.05.2014 15:36, schrieb Vaduva alexandru: Depending on your situation. If it is a

Re: [yocto] Best way to remove DISTRO_FEATURES?

2014-05-14 Thread Burton, Ross
On 14 May 2014 14:04, Neuer User auslands...@gmx.de wrote: Can the distro content be changed? Or would I need to build my own distro? (Which would be not so easy looking at the complex poky.conf configuration files...) The quick solution is DISTRO_FEATURES_remove=nfc 3g in local.conf. For

Re: [yocto] Best way to remove DISTRO_FEATURES?

2014-05-14 Thread Burton, Ross
On 14 May 2014 14:54, Neuer User auslands...@gmx.de wrote: to my image.bb file. Guess, this is then the recommended way to go? Not in your image recipe, no, as then e.g. connman will still think that you need 3g and nfc. Ross -- ___ yocto mailing

Re: [yocto] Best way to remove DISTRO_FEATURES?

2014-05-14 Thread Philip Balister
On 05/14/2014 09:58 AM, Burton, Ross wrote: On 14 May 2014 14:54, Neuer User auslands...@gmx.de wrote: to my image.bb file. Guess, this is then the recommended way to go? Not in your image recipe, no, as then e.g. connman will still think that you need 3g and nfc. What Ross said. DISTRO

Re: [yocto] Best way to remove DISTRO_FEATURES?

2014-05-14 Thread Anders Darander
* Neuer User auslands...@gmx.de [140514 15:56]: Well, no, not a one-time job. So I rather added DISTRO_FEATURES_remove = 3g bluetooth irda nfc zeroconf x11 wayland to my image.bb file. Guess, this is then the recommended way to go? Well, the quick solution is to add that line to local.conf.

Re: [yocto] Best way to remove DISTRO_FEATURES?

2014-05-14 Thread Neuer User
Am 14.05.2014 15:58, schrieb Burton, Ross: On 14 May 2014 14:54, Neuer User auslands...@gmx.de wrote: to my image.bb file. Guess, this is then the recommended way to go? Not in your image recipe, no, as then e.g. connman will still think that you need 3g and nfc. Ross Right. It doesn't

Re: [yocto] Best way to remove DISTRO_FEATURES?

2014-05-14 Thread Burton, Ross
On 14 May 2014 15:03, Neuer User auslands...@gmx.de wrote: Hmm, so I need my own distro? You don't need to as local.conf is sufficient, but changes to local.conf are specific to *your current* builds. Defining a distro is trivial, just make your own distro.conf and either include poky.conf or

Re: [yocto] Best way to remove DISTRO_FEATURES?

2014-05-14 Thread Neuer User
Ok, thanks, did this: made new file meta-mylayer/conf/distro/mydistro.conf: include poky.conf DISTRO_FEATURES_remove = 3g bluetooth irda nfc zeroconf x11 wayland Then changed conf/local.conf: DISTRO ?= mydistro Then started a bitbake. Got a strange error LCONF_VERSION is 6, should be 5 in

Re: [yocto] Best way to remove DISTRO_FEATURES?

2014-05-14 Thread Vaduva alexandru
Read this for more information and to understand the difference between distro, machine or image features. Yocto Project Reference Manual Yocto Project Reference Manual Chapter7.Classes Table of Contents 7.1. allarch.bbclass 7.2. archiver.bbclass 7.3. autotools.bbclass 7.4.

Re: [yocto] Best way to remove DISTRO_FEATURES?

2014-05-14 Thread Burton, Ross
On 14 May 2014 15:22, Neuer User auslands...@gmx.de wrote: Then started a bitbake. Got a strange error LCONF_VERSION is 6, should be 5 in bblayers.conf. So I changed it to 5. So that's because the Poky layers are a version higher than the oe-core layers. Once you stop using Poky the version

Re: [yocto] Best way to remove DISTRO_FEATURES?

2014-05-14 Thread Neuer User
Am 14.05.2014 16:27, schrieb Burton, Ross: On 14 May 2014 15:22, Neuer User auslands...@gmx.de wrote: Then started a bitbake. Got a strange error LCONF_VERSION is 6, should be 5 in bblayers.conf. So I changed it to 5. So that's because the Poky layers are a version higher than the oe-core

Re: [yocto] Best way to remove DISTRO_FEATURES?

2014-05-14 Thread Neuer User
Probably solved. It should be include conf/distro/poky.conf instead of include poky.conf. (Stupid newbie error). Now bblayers.conf has been automatically updated to 6 again and the system only recompiles a few packages. Should be finished in 10 min or so. :-) Am 14.05.2014 16:35, schrieb

Re: [yocto] Best way to remove DISTRO_FEATURES?

2014-05-14 Thread Burton, Ross
On 14 May 2014 15:35, Neuer User auslands...@gmx.de wrote: Strangely, when adding the DISTRO_FEATURES_remove to local.conf instead of making a new distro, bitbake does not recompile everything?! Well, there's some logic to avoid rebuilds if the distro features change in a way that the recipe

Re: [yocto] kvm error

2014-05-14 Thread Khem Raj
On Wed, May 14, 2014 at 4:06 AM, sonia verma soniaverma9...@gmail.com wrote: /usr/bin/qemu-system-ppc64 -m 512 -nographic -hda /var/volatile/debian_lenny_powerpc_standard.qcow2 may be debian mailing lists would be more helpful on this, is OE involved some how? --

Re: [yocto] kvm error

2014-05-14 Thread abhishek jain
Thanks Khem On Wed, May 14, 2014 at 10:13 PM, Khem Raj raj.k...@gmail.com wrote: On Wed, May 14, 2014 at 4:06 AM, sonia verma soniaverma9...@gmail.com wrote: /usr/bin/qemu-system-ppc64 -m 512 -nographic -hda /var/volatile/debian_lenny_powerpc_standard.qcow2 may be debian mailing lists

[yocto] procps_3.2.8: problem with install of a user defined package split

2014-05-14 Thread Hans Beckérus
Hi. We have problem with one of our .bbappend files that tries to split procps in some more fine grained packages. Currently this is only done for 'top' and 'ps'. The actual issue here is that /usr/bin/top.procps gets installed on our image but *not* /bin/ps.procps? The IMAGE_INSTALL sets both

[yocto] Where did my preferred version go?

2014-05-14 Thread Gary Thomas
I have a number of platforms which [for whatever reason] need older versions of GCC. I've been supporting this by keeping the older code around in my own layers - I need 4.7.x for some targets, even 4.6.x for others. With the changes in the latest master (post 1.6/daisy), I am no longer able to

Re: [yocto] procps_3.2.8: problem with install of a user defined package split

2014-05-14 Thread Hans Beckérus
On Wed, May 14, 2014 at 7:32 PM, Hans Beckérus hans.becke...@gmail.com wrote: Hi. We have problem with one of our .bbappend files that tries to split procps in some more fine grained packages. Currently this is only done for 'top' and 'ps'. The actual issue here is that /usr/bin/top.procps

Re: [yocto] Where did my preferred version go?

2014-05-14 Thread Paul Barker
On 14 May 2014 19:06, Gary Thomas g...@mlbassoc.com wrote: I have a number of platforms which [for whatever reason] need older versions of GCC. I've been supporting this by keeping the older code around in my own layers - I need 4.7.x for some targets, even 4.6.x for others. You're probably

Re: [yocto] meta-web-kiosk: bad fonts in high resolution

2014-05-14 Thread Saul Wold
On 05/14/2014 01:25 PM, Lucas Pirolla wrote: Hello, Saul. I'm new to Yocto, and I made an Image meta-web-kiosk, and when I run it, the fonts in browser are getting messed up, as you can see in these images: https://drive.google.com/folderview?id=0Bw1B-mbeX0tbRnc0OHZSaDVuQlEusp=sharing This

[yocto] devshell: what am I missing?

2014-05-14 Thread ezekiel
OE newbie here, so I may just be missing something.I am running in latest pocky-daisy-11.0.0. I created my own simple layer with the helloworld sample in it. I am building for machine qemuarm. The build itself is working fine, the packages I have added are showing up in the image etc.But when I

[yocto] [PATCH 0/9] meta-selinux on master branch

2014-05-14 Thread Armin Kuster
These patches fix 'ERROR: No recipes available for:' build issues by syncing the with version in Poky master. In most cases, the bbappends include coniguration parameters and using a wildcard in the version works for now. I removed patches if the changes are the newer versions. I am

[yocto] [PATCH 1/9] Use wildcard for augeas bbappend name

2014-05-14 Thread Armin Kuster
augeas: Use wildcard in version to minimize keeping in-sync with Poky. Signed-off-by: Armin Kuster akuster...@gmail.com --- recipes-extended/augeas/augeas_1.%.bbappend | 1 + recipes-extended/augeas/augeas_1.1.0.bbappend | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) create mode

[yocto] [PATCH 3/9] Use wildcard in bind bbappend name

2014-05-14 Thread Armin Kuster
bind: Use wildcard to minimize the need to keep in-sync with poky. Signed-off-by: Armin Kuster akuster...@gmail.com --- recipes-connectivity/bind/bind_9.%.bbappend | 13 + recipes-connectivity/bind/bind_9.8.1.bbappend | 13 - 2 files changed, 13 insertions(+),

[yocto] [PATCH 9/9] setools fix do_configure

2014-05-14 Thread Armin Kuster
setools: change autotools to autotools-brokensep and bump rev. Signed-off-by: Armin Kuster akuster...@gmail.com --- recipes-security/setools/setools_3.3.8.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipes-security/setools/setools_3.3.8.bb

[yocto] [PATCH 2/9] Use wildcard in mesa bbappend name

2014-05-14 Thread Armin Kuster
mesa: Use wildcard in version to minimize keeping in-sync with Poky Signed-off-by: Armin Kuster akuster...@gmail.com --- recipes-graphics/mesa/mesa_9.2.%.bbappend | 6 ++ recipes-graphics/mesa/mesa_9.2.2.bbappend | 6 -- 2 files changed, 6 insertions(+), 6 deletions(-) create

[yocto] [PATCH 4/9] Use wildcard in kernel bbappend name

2014-05-14 Thread Armin Kuster
linux-kernel: Use wildcard in version to minimize keeping in-sync with Poky. Signed-off-by: Armin Kuster akuster...@gmail.com --- recipes-kernel/linux/linux-yocto_3.%.bbappend | 7 +++ recipes-kernel/linux/linux-yocto_3.8.bbappend | 7 --- 2 files changed, 7 insertions(+), 7

[yocto] [PATCH 8/9] update psmics 22.21 and remove unneeded patch

2014-05-14 Thread Armin Kuster
psmics: Update to match version in Poky and remove patch. Signed-off-by: Armin Kuster akuster...@gmail.com --- .../psmisc/pstree-compiles-with-SE-Linux.patch | 265 - recipes-extended/psmisc/psmisc_22.20.bbappend | 7 -

[yocto] [PATCH 5/9] Use wildcard in openssh name

2014-05-14 Thread Armin Kuster
openssh: Use wildcard in version to minimize keeping in-sync with Poky Signed-off-by: Armin Kuster akuster...@gmail.com --- recipes-connectivity/openssh/openssh_6.%.bbappend | 13 + recipes-connectivity/openssh/openssh_6.4p1.bbappend | 13 - 2 files changed, 13

[yocto] [PATCH 6/9] update util-linux package version and remove patch

2014-05-14 Thread Armin Kuster
util-linux: Update package to match Poky master. Remove patch since it was merged upstream. Signed-off-by: Armin Kuster akuster...@gmail.com --- recipes-core/util-linux/util-linux_2.23.2.bbappend | 8 recipes-core/util-linux/util-linux_2.24.2.bbappend | 5 + 2 files

[yocto] [PATCH 7/9] Update to latest swig from meta-openembedded

2014-05-14 Thread Armin Kuster
swig: Update to latest swig from meta-openembedded Updated from: git://git.openembedded.org/meta-openembedded/meta-oe/recipes-devtools/swig As of commit dca466c074c9a35bc0133e7e0d65cca0731e2acf Signed-off-by: Armin Kuster akuster...@gmail.com ---

Re: [yocto] [PATCH 0/9] meta-selinux on master branch

2014-05-14 Thread Mark Hatle
On 5/14/14, 5:24 PM, Armin Kuster wrote: These patches fix 'ERROR: No recipes available for:' build issues by syncing the with version in Poky master. In most cases, the bbappends include coniguration parameters and using a wildcard in the version works for now. I removed patches

Re: [yocto] meta-web-kiosk: bad fonts in high resolution

2014-05-14 Thread Lucas Pirolla
I'm using congatec imx6 quad. I also asked about it in meta-freescale list, and I've just received an answer, telling me to try to install extra fonts to see if it helps. But since I'm just starting in the yocto thing, don't really know how to do that yet. btw, freescale bsp uses Dora version.

[yocto] my recent change to the dylan branch of meta-darwin

2014-05-14 Thread Woodyatt, James
Richard— I think I broke the meta-darwin layer with this commit. commit f4122e22257c784e9eb1b564e8ef16cd2e83cd03 Author: Woodyatt, James james.woody...@intel.com Date: Thu May 1 19:03:41 2014 + odcctools2: Remove use of new typename constructors These are specific to

Re: [yocto] [PATCH 2/9] Use wildcard in mesa bbappend name

2014-05-14 Thread Khem Raj
On Wed, May 14, 2014 at 3:24 PM, Armin Kuster akuster...@gmail.com wrote: mesa: Use wildcard in version to minimize keeping in-sync with Poky Signed-off-by: Armin Kuster akuster...@gmail.com --- recipes-graphics/mesa/mesa_9.2.%.bbappend | 6 ++

Re: [yocto] [PATCH 6/9] update util-linux package version and remove patch

2014-05-14 Thread Khem Raj
On Wed, May 14, 2014 at 3:24 PM, Armin Kuster akuster...@gmail.com wrote: +PR .= .1 can this be avoided in whole series ? -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] [PATCH 9/9] setools fix do_configure

2014-05-14 Thread Khem Raj
On Wed, May 14, 2014 at 3:24 PM, Armin Kuster akuster...@gmail.com wrote: setools: change autotools to autotools-brokensep and bump rev. Signed-off-by: Armin Kuster akuster...@gmail.com --- recipes-security/setools/setools_3.3.8.bb | 4 +++- 1 file changed, 3 insertions(+), 1

[yocto] Asia Yocto Project Tech Call Meeting

2014-05-14 Thread Saul Wold
Folks, We have folks located around the world, currently we have have one Tech Team meeting on Tuesday Morning (US Time) to coordinate with the European afternoon. I will host a Asia Tech Call weekly initially The agenda will be to discuss Status of the Yocto Project and address any

Re: [yocto] [PATCH 2/9] Use wildcard in mesa bbappend name

2014-05-14 Thread akuster808
On 05/14/2014 05:45 PM, Khem Raj wrote: On Wed, May 14, 2014 at 3:24 PM, Armin Kuster akuster...@gmail.com wrote: mesa: Use wildcard in version to minimize keeping in-sync with Poky Signed-off-by: Armin Kuster akuster...@gmail.com --- recipes-graphics/mesa/mesa_9.2.%.bbappend | 6

Re: [linux-yocto] [PATCH 00/24] [3.14] Baytrail driver updates

2014-05-14 Thread Ong, Boon Leong
Definitely an exception to the rule and you are right to ask for more detail on the decision making process here. Thanks! All well noted. -- ___ linux-yocto mailing list linux-yocto@yoctoproject.org

Re: [linux-yocto] [PATCH 00/24] [3.14] Baytrail driver updates

2014-05-14 Thread Bruce Ashfield
On 14-05-14 12:14 AM, Darren Hart wrote: On 5/13/14, 20:47, Ong, Boon Leong boon.leong@intel.com wrote: Merged to standard/base (and then propagated out to all BSP branches). Keep an eye out for issues, but since this is mainline code, it is safe for all boards (i.e. not used), so nothing