Re: [yocto] Which repo for meta-altera ?

2015-07-29 Thread Spriggs, Jim
Hi Kevin, Rodger, got it this time – I had indeed missed the clue about the maintainers. I should RTFM more often…. Many thanks for your help and patience ☺. -- jim Von: enak...@googlemail.com [mailto:enak...@googlemail.com] Gesendet: Mittwoch, 29. Juli 2015 22:37 An: Dalon Westergreen ; Sprigg

[yocto] Core-image-weston network problems

2015-07-29 Thread Eirik Solberg Hamnvik
Hey! I am building core-image-weston. Branch fido. I have a postinstall script that runs some code on first startup. The script is supposed to do apt-get install of some packages. The problem is that the postinstall script runs before the network is correctly configured. Meaning my packages wo

Re: [yocto] [OE-core] glibc 2.22

2015-07-29 Thread Khem Raj
On Tue, Jul 28, 2015 at 12:48 AM, Lei, Maohui wrote: > Hi Khem, > > >> glibc 2.22 will release end of this month. For some time I have put >> together the update here >> >> http://git.openembedded.org/openembedded-core-contrib/commit/?h=kraj/m >> aster&id=0 >> 2e73ea526d94f21c7ef82eb96b062eff8ebb8

[yocto] Build with 'Hob' results in blank target column in 'Toaster'

2015-07-29 Thread Robin Gilks
Having just discovered hob and toaster, in 1.7 Dizzy. I've been trying them out - but I'm missing something!! Set environment, start toaster, run hob and select a machine. After all the parsing has completed I select my target and 'build image'. When the build has completed successfully, I use to

[yocto] [meta-raspberrypi] Adding an additional device tree overlay in the SDCard

2015-07-29 Thread Herve Jourdain
Hello, I'm trying to add a specific .dts file to the raspberrypi. Therefore, in my own layer, I have made a linux-raspberrypi_3.%.bbappend, that applies a patch to the arch/arm/boot/dts makefile to add my own layer, and a new rule that copies my specific .dts file to the kernel source director

[yocto] Can I use latest (1.8?) Toaster on Dizzy (1.7)

2015-07-29 Thread Robin Gilks
Subject says it all really. The manufacturer of the hardware I'm using has a layer for Dizzy but the version of Toaster in Dizzy is quite limited. Is there a way to use the later (latest?) version or is Toaster totally integrated into the whole? Cheers -- *Robin Gilks* Development Delta Strike

[yocto] [PATCH 10/10][auh] upgradehelper: Add support for generate buildhistory recipe diff's

2015-07-29 Thread Aníbal Limón
Now AUH generates buildhistory diff when recipe was upgraded successfully. For enable this feature set into local.conf. INHERIT += "buildhistory" BUILDHISTORY_COMMIT = "1" Summary of the changes, - bitbake.py: Enable environment generation without recipe, remov

[yocto] [PATCH 09/10][auh] upgradehelper.py: Move upstream versioning code to UniverseUpdater

2015-07-29 Thread Aníbal Limón
Reorder code related to upstream versioning detection no makes sense to have in Updater because only in UniverseUpdater is used. Signed-off-by: Aníbal Limón --- upgradehelper.py | 161 ++- 1 file changed, 77 insertions(+), 84 deletions(-) diff

[yocto] [PATCH 07/10][auh] bitbake.py: Rename bitbake_log.txt to bitbake_error_log

2015-07-29 Thread Aníbal Limón
Bitbake log only is written when error appears, rename it to be consistent with information into the log. Signed-off-by: Aníbal Limón --- bitbake.py | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bitbake.py b/bitbake.py index 54389fb..e23dc28 100644 --- a/bitbake.py ++

[yocto] [PATCH 08/10][auh] upgradehelper.py: Remove unused references to Buildhistory class

2015-07-29 Thread Aníbal Limón
Buildhistory class isn't implemented so removed related code. Signed-off-by: Aníbal Limón --- upgradehelper.py | 11 +-- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/upgradehelper.py b/upgradehelper.py index 7bc8eed..a31d041 100755 --- a/upgradehelper.py +++ b/upgradehel

[yocto] [PATCH 04/10][auh] bitbake.py: Improve performance on env() call

2015-07-29 Thread Aníbal Limón
When AUH load recipe enviroment use bitbake -e call and parses the output using regex VAR=VALUE. For improve performance discard all the comments on cmd output adding a output_filter using grep. Signed-off-by: Aníbal Limón --- bitbake.py | 7 +-- 1 file changed, 5 insertions(+), 2 deletions

[yocto] [PATCH 06/10][auh] upgradehelper.py: UniverseUpdate don't abort if recipe checkpkg fails.

2015-07-29 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- upgradehelper.py | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/upgradehelper.py b/upgradehelper.py index 9119cb0..7bc8eed 100755 --- a/upgradehelper.py +++ b/upgradehelper.py @@ -285,10 +285,7 @@ class Updater(object):

[yocto] [PATCH 05/10][auh] upgradehelper.py: Add own step for loading environment

2015-07-29 Thread Aníbal Limón
Instead of load environment in detecting git repository use own function making easy to debug. Signed-off-by: Aníbal Limón --- upgradehelper.py | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/upgradehelper.py b/upgradehelper.py index 13fc7dd..9119cb0 100755 --- a/

[yocto] [PATCH 03/10][auh] upgradehelper.py: Only send emails when patch file exist

2015-07-29 Thread Aníbal Limón
Remove old decision of send email based on error because only makes sense to send email when patch file was created. Signed-off-by: Aníbal Limón --- upgradehelper.py | 10 ++ 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/upgradehelper.py b/upgradehelper.py index f10d974..

[yocto] [PATCH 00/10][auh] Add support for buildhistory and minor fixes

2015-07-29 Thread Aníbal Limón
This changes can be found at, http://git.yoctoproject.org/cgit/cgit.cgi/auto-upgrade-helper/log/?h=alimon/devel Aníbal Limón (10): upgradehelper.py: Only run with one recipe or all. upgradehelper.py: Validate if upgrade is needed upgradehelper.py: Only send emails when patch file exist bi

[yocto] [PATCH 01/10][auh] upgradehelper.py: Only run with one recipe or all.

2015-07-29 Thread Aníbal Limón
Remove ability to run with several recipes because isn't make sense. Supported modes are, $ ./upgradehelper.py all $ ./upgradehelper.py recipe --to_version VERSION Signed-off-by: Aníbal Limón --- upgradehelper.py | 34 ++ 1 file changed, 10 inser

[yocto] [PATCH 02/10][auh] upgradehelper.py: Validate if upgrade is needed

2015-07-29 Thread Aníbal Limón
When run upgradehelper only with one recipe upgrade needed validation isn't did. [YOCTO #7947] Signed-off-by: Aníbal Limón --- upgradehelper.py | 24 +--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/upgradehelper.py b/upgradehelper.py index 63b30e4..f10d97

Re: [yocto] Which repo for meta-altera ?

2015-07-29 Thread Dalon Westergreen
As far as I understand it Altera only maintains the one repo. On July 29, 2015 6:44:23 AM PDT, "Spriggs, Jim" wrote: >Hi Alex, Dalon, Kevin, Lists > >hmmm, so I guess I'm still confused (sorry). > >Alex recommends going via the "official" oe layers index, which >currently links directly to gith

[yocto] Conflicts between init-ifupdown and connmand? and static ip configuration

2015-07-29 Thread Daniel.
Hi all, I'm using Poky 1.7(Yocto Dizzy) and I see that both (init-ifupdown and connmand) is installed. Since connmand starts at boot it mess the configurations placed on /etc/network/interfaces. Isn't this a bug? I think is confuse to have two packages that do same thing installed at same time, al

[yocto] [Yocto][OpenEmbedded] [Arago] - "kernel-devicetree" Cannot build Runtime dependency

2015-07-29 Thread Roosemberth Palacios
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, I'm working on a custom image for ti's am335x chip. Still, I try to build my image, but at the end I get [...] | Collected errors: | * satisfy_dependencies_for: Cannot satisfy the following dependencies for domosafety-userspace-1.0: | *ke

Re: [yocto] [Asterisk] recipe 13.1.1

2015-07-29 Thread Burton, Ross
On 29 July 2015 at 15:40, Laurent Joli wrote: > But How can do that in my configure file of asterisk ? > If that is a proper autoconf configure script then remove your do_configure() task and just inherit autotools. You'll also want to inherit pkgconfig. http://people.freedesktop.org/~dbn/pkg-

Re: [yocto] [Asterisk] recipe 13.1.1

2015-07-29 Thread Gary Thomas
On 2015-07-29 07:25, Laurent Joli wrote: Hi Gary, 2015-07-29 15:22 GMT+02:00 Gary Thomas mailto:g...@mlbassoc.com>>: On 2015-07-29 07:14, Laurent Joli wrote: Hi everybody, I am try to build an recipe for asterisk 13.1.1 but I have some errors. I will show you my

Re: [yocto] [Asterisk] recipe 13.1.1

2015-07-29 Thread Burton, Ross
On 29 July 2015 at 14:42, Laurent Joli wrote: > | Must specify package names on the command line > Looks like you forgot to tell pkgconfig what you are looking for (libxml-2.0). Ross -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoct

Re: [yocto] Which repo for meta-altera ?

2015-07-29 Thread Spriggs, Jim
Hi Alex, Dalon, Kevin, Lists hmmm, so I guess I'm still confused (sorry). Alex recommends going via the "official" oe layers index, which currently links directly to github.com/kraj/meta-altera. Kevin and Dalon hold out for github.com/altera-opensource/meta-altera, and Dalon specifically says

Re: [yocto] [Asterisk] recipe 13.1.1

2015-07-29 Thread Laurent Joli
Hello Gary, 2015-07-29 15:38 GMT+02:00 Gary Thomas : > On 2015-07-29 07:25, Laurent Joli wrote: > >> >> Hi Gary, >> >> 2015-07-29 15:22 GMT+02:00 Gary Thomas > g...@mlbassoc.com>>: >> >> >> On 2015-07-29 07:14, Laurent Joli wrote: >> >> >> Hi everybody, >> >> I am try to build

Re: [yocto] [Asterisk] recipe 13.1.1

2015-07-29 Thread Laurent Joli
Hi Gary, 2015-07-29 15:22 GMT+02:00 Gary Thomas : > On 2015-07-29 07:14, Laurent Joli wrote: > >> >> Hi everybody, >> >> I am try to build an recipe for asterisk 13.1.1 but I have some errors. >> >> I will show you my recipe : >> >> /**/ >> DESCRIPTION = "asterisk PBX" >> DEPE

Re: [yocto] [Asterisk] recipe 13.1.1

2015-07-29 Thread Gary Thomas
On 2015-07-29 07:14, Laurent Joli wrote: Hi everybody, I am try to build an recipe for asterisk 13.1.1 but I have some errors. I will show you my recipe : /**/ DESCRIPTION = "asterisk PBX" DEPENDS = "openssl ncurses sqlite3 libxml2 jansson curl libxslt " HOMEPAGE = "http:/

[yocto] [Asterisk] recipe 13.1.1

2015-07-29 Thread Laurent Joli
Hi everybody, I am try to build an recipe for asterisk 13.1.1 but I have some errors. I will show you my recipe : /**/ DESCRIPTION = "asterisk PBX" DEPENDS = "openssl ncurses sqlite3 libxml2 jansson curl libxslt " HOMEPAGE = "http://www.asterisk.org"; LICENSE = "GPLv2" LIC_FI

Re: [yocto] Which repo for meta-altera ?

2015-07-29 Thread Alex J Lennon
On 28/07/2015 10:10, Spriggs, Jim wrote: > Hi Guys; confused noob here... > > There appear to be (at least) two "official" repos for meta-altera: > > github.com/kraj/meta-altera > > and > > git.rocketboards.org/meta-altera.git > > > So how should I choose between them? > > Thanks!

[yocto] [meta-raspberrypi] Patches in queue

2015-07-29 Thread Andrei Gherzan
Hello all, I know there a some patches in queue. The problem is that I won't be able to take care of them until 7th of August. Basically vacation + my laptop broke and I'm waiting for a replacement. So please bear with me. Thanks for understanding, Andrei -- _

Re: [yocto] [meta-raspberrypi][PATCH] Add networkd as default for RaspberryPi

2015-07-29 Thread Burton, Ross
On 24 July 2015 at 00:06, Herve Jourdain wrote: > The point is that many people are turning to Poky for generating their > first Yocto-based distribution for RaspberryPi. And out of the box, if > using system, the network part doesn’t work. > > Are these users building images that contain connman

Re: [yocto] How to check the version of Yocto

2015-07-29 Thread Wu, DaweiX
Thanks Paul for your quick reply. -Original Message- From: Paul Eggleton [mailto:paul.eggle...@linux.intel.com] Sent: Wednesday, July 29, 2015 17:41 PM To: Wu, DaweiX Cc: yocto@yoctoproject.org Subject: Re: [yocto] How to check the version of Yocto Hi Dawei, On Wednesday 29 July 2015 0

Re: [yocto] How to check the version of Yocto

2015-07-29 Thread Paul Eggleton
Hi Dawei, On Wednesday 29 July 2015 09:03:01 Wu, DaweiX wrote: > Hi, as we know ,there are versions like 1.8, 1.8.1, 1.9 , ... , so how can I > check this version? I only know 'bitbake --version' . Perhaps most definitively, If you are using a clone of the poky repository, in meta-yocto/conf/dist

[yocto] How to check the version of Yocto

2015-07-29 Thread Wu, DaweiX
Hi, as we know ,there are versions like 1.8, 1.8.1, 1.9 , ... , so how can I check this version? I only know 'bitbake --version' . Thanks, Dawei -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] Including Libavformat

2015-07-29 Thread Paul Eggleton
Hi Ryan, On Tuesday 28 July 2015 11:10:49 Ryan Soussan wrote: > Is there a way to include libavformat without including ffmpeg or libav? > Libav and ffmpeg seem to both require a commericial license and we're > trying to avoid that. One way would be to configure libav/ffmpeg appropriately (see li