Re: [yocto] [yocto-announce] [ANNOUNCEMENT] Yocto Project 1.7.3 (fido 12.0.3) Released

2015-11-09 Thread akuster
On 11/09/2015 05:42 PM, Robert Yang wrote: > > I think that the codename is not fido for 1.7 ? its Dizzy. - armin > > // Robert > > On 11/10/2015 03:45 AM, Flanagan, Elizabeth wrote: >> Hello, >> >> The latest release of the Yocto Project 1.7.3 (dizzy-12.0.3) is now >> available >> for downl

Re: [yocto] LTP tests

2015-11-09 Thread Yi Zhao
Hi Raghavendra, There is a wiki page for LTP results: https://wiki.yoctoproject.org/wiki/LTP_result You could check it as a reference. Thanks, Yi 在 2015年11月09日 19:55, Raghavendra Kakarla 写道: Hi All, I built the ltp_20150119 in the yocto build system. But while running the test cases,

Re: [yocto] [yocto-announce] [ANNOUNCEMENT] Yocto Project 1.7.3 (fido 12.0.3) Released

2015-11-09 Thread Robert Yang
I think that the codename is not fido for 1.7 ? // Robert On 11/10/2015 03:45 AM, Flanagan, Elizabeth wrote: Hello, The latest release of the Yocto Project 1.7.3 (dizzy-12.0.3) is now available for download at: http://downloads.yoctoproject.org/releases/yocto/yocto-1.7.3/poky-dizzy-12.0.3.ta

Re: [yocto] [prelink-cross][PATCH 1/1] rtld.c: LD_PRELOAD bugfix

2015-11-09 Thread Maninder Singh
Hello, >On 11/7/15 5:24 AM, Maninder Singh wrote: >> Hi, >> Ping > >I'd gotten a msg after this to hold off and wait for an update. Is this the >updated version of the fix? > >--Mark Yes, we send message for update a fix for LD_PRELOAD implemntation in prelink:- https://lists.yoctoproject.or

Re: [yocto] Add SUSE 42.1 "Leap" to SANITY_TESTED_DISTROS

2015-11-09 Thread Jan-Simon Moeller
I forgot the "\n" at the end ... please use the attached version. Am Montag, 9. November 2015, 23:40:07 schrieb Jan-Simon Moeller: > Hi ! > > Here is a patch to add "Leap" to the tested distros. I ran a couple of > builds since the update and all is normal. Please consider for > inclusion. > >

Re: [yocto] binutils failing in FIDO branch

2015-11-09 Thread Paul Eggleton
On Monday 09 November 2015 22:32:59 Martin Townsend wrote: > My issue is particular to my distro, I tried changing to poky and all was > well. The reason for our own distro was to migrate from Arago which we > were using. So I copied Arago into a separate distro and then started > morphing it int

[yocto] Add SUSE 42.1 "Leap" to SANITY_TESTED_DISTROS

2015-11-09 Thread Jan-Simon Moeller
Hi ! Here is a patch to add "Leap" to the tested distros. I ran a couple of builds since the update and all is normal. Please consider for inclusion. Best, Jan-Simon Möller --- commit f729ca343849d2e0692caf18ba1789da408ceba3 Author: Jan-Simon Möller Date: Mon Nov 9 23:36:41 2015 +0100 A

Re: [yocto] binutils failing in FIDO branch

2015-11-09 Thread Martin Townsend
Hi, My issue is particular to my distro, I tried changing to poky and all was well. The reason for our own distro was to migrate from Arago which we were using. So I copied Arago into a separate distro and then started morphing it into something more akin to Poky over time. Alas I left the foll

Re: [yocto] binutils failing in FIDO branch

2015-11-09 Thread Paul Eggleton
What I think Martin hasn't mentioned here (but did on IRC) is this is binutils for the target machine, not host/cross. I would assume it's somehow related to the target being built for. Martin, can you provide any details on that which might help others to reproduce the issue? Cheers, Paul On

[yocto] [PATCH 09/10][AUH] upgradehelper.py: Add support for preserve statistics into work directory.

2015-11-09 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- upgradehelper.py | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/upgradehelper.py b/upgradehelper.py index a08833e..4f33d2f 100755 --- a/upgradehelper.py +++ b/upgradehelper.py @@ -591,7 +591,16 @@ class Updater(object):

[yocto] [PATCH 10/10][AUH] requirements.txt: Add file for now only with GitPython

2015-11-09 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- requirements.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 000..64b1ada --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +GitPython -- 2.1.4 -- __

[yocto] [PATCH 08/10][AUH] upgradehelper.py: Add support for do recipe upgrades based on builddep

2015-11-09 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- upgradehelper.py | 114 +-- 1 file changed, 86 insertions(+), 28 deletions(-) diff --git a/upgradehelper.py b/upgradehelper.py index aeb9cf1..a08833e 100755 --- a/upgradehelper.py +++ b/upgradehelper.py @@ -91,7

[yocto] [PATCH 07/10][AUH] upgradehelper.py: Improve work directory structure

2015-11-09 Thread Aníbal Limón
Add work directory with datetime suffix to preserve recipe upgrades. Create tree folders all, succeed and failed, all - Contains all the recipes work succeed - Contains a symlinks to the recipes that successful upgrade failed - Contains a symlinks to

[yocto] [PATCH 03/10][AUH] recipe.py: Improvements and refactor of fetch method.

2015-11-09 Thread Aníbal Limón
Make more clear fetch method changing recursive manner to loop and split logic into try fetch and suffix change. Now when fails only retry changing recipe suffix when recipe isn't git based because does not make sense suffixes in SCM's. Signed-off-by: Aníbal Limón --- recipe.py | 58 +++

[yocto] [PATCH 06/10][AUH] buildhistory.py: Add missing warning import. git.py: Fix last_commit method.

2015-11-09 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- buildhistory.py | 3 ++- git.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/buildhistory.py b/buildhistory.py index 6eca6e1..2e442d2 100644 --- a/buildhistory.py +++ b/buildhistory.py @@ -20,8 +20,9 @@ import os import loggin

[yocto] [PATCH 02/10][AUH] upgradehelper.py: Fix bug when buildhistory isn't enabled

2015-11-09 Thread Aníbal Limón
Don't use buildhistory object if buildhistory_enabled is False because cause undefined variable error. Signed-off-by: Aníbal Limón --- upgradehelper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upgradehelper.py b/upgradehelper.py index bb19b65..9b321f6 100755 --- a/upgr

[yocto] [PATCH 05/10][AUH] upgradehelper.py: Add sanity test for ensure that git is configured.

2015-11-09 Thread Aníbal Limón
[YOCTO #8390] Signed-off-by: Aníbal Limón --- upgradehelper.py | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/upgradehelper.py b/upgradehelper.py index 9b321f6..ae40fb1 100755 --- a/upgradehelper.py +++ b/upgradehelper.py @@ -28,6 +28,7 @@ import argpars

[yocto] [PATCH 04/10][AUH] buildhistory.py: Don't modify BB_ENV_EXTRAWHITE before init.

2015-11-09 Thread Aníbal Limón
Move code for add BUILDHISTORY_DIR to __init__ method because it fails when import in early step. Signed-off-by: Aníbal Limón --- buildhistory.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/buildhistory.py b/buildhistory.py index 1732f23..6eca6e1 100644 --- a/buildhi

[yocto] [PATCH 01/10][AUH] upgradehelper.py: Add step for build gcc-runtime at init.

2015-11-09 Thread Aníbal Limón
When try to upgrade a recipe the first recipe in the list takes too much time because gcc-runtime build is needed. So add previous step to build gcc-runtime for every machine. Signed-off-by: Aníbal Limón --- upgradehelper.py | 5 + 1 file changed, 5 insertions(+) diff --git a/upgradehelper

[yocto] [PATCH 00/10][AUH] Improvements and small fixes.

2015-11-09 Thread Aníbal Limón
Aníbal Limón (10): upgradehelper.py: Add step for build gcc-runtime at init. upgradehelper.py: Fix bug when buildhistory isn't enabled recipe.py: Improvements and refactor of fetch method. buildhistory.py: Don't modify BB_ENV_EXTRAWHITE before init. upgradehelper.py: Add sanity test for e

Re: [yocto] binutils failing in FIDO branch

2015-11-09 Thread Khem Raj
No it should be well supported. So now I wonder why no one else sees it > On Nov 9, 2015, at 11:22 AM, Martin Townsend wrote: > > Hi, > > I'm running Ubuntu 14.04 LTS. > > Could this be the problem? > > Cheers, > Martin. > > > On Mon, Nov 9, 2015 at 5:56 PM, Khem Raj

[yocto] [ANNOUNCEMENT] Yocto Project 1.7.3 (fido 12.0.3) Released

2015-11-09 Thread Flanagan, Elizabeth
Hello, The latest release of the Yocto Project 1.7.3 (dizzy-12.0.3) is now available for download at: http://downloads.yoctoproject.org/releases/yocto/yocto-1.7.3/poky-dizzy-12.0.3.tar.bz2 http://mirrors.kernel.org/yocto/yocto/yocto-1.7.3/poky-dizzy-12.0.3.tar.bz2 A gpg signed version of these r

Re: [yocto] binutils failing in FIDO branch

2015-11-09 Thread Martin Townsend
Hi, I'm running Ubuntu 14.04 LTS. Could this be the problem? Cheers, Martin. On Mon, Nov 9, 2015 at 5:56 PM, Khem Raj wrote: > On Mon, Nov 9, 2015 at 4:36 AM, Martin Townsend > wrote: > > Hi, > > > > binutils is failing to compile. I'm using tip of fido branch. Error > > message is: > > >

Re: [yocto] binutils failing in FIDO branch

2015-11-09 Thread Khem Raj
On Mon, Nov 9, 2015 at 4:36 AM, Martin Townsend wrote: > Hi, > > binutils is failing to compile. I'm using tip of fido branch. Error > message is: > > | > /home/martint/yocto/build/am43-devboard-aquila/bia-tmp-glibc/work/cortexa9hf-vfp-neon-oe-linux-gnueabi/binutils/2.24-r0/binutils-2.24/libiber

Re: [yocto] Python pip

2015-11-09 Thread Gary Thomas
On 2015-11-09 09:11, Alejandro Hernandez wrote: On 05/11/15 08:25, Gary Thomas wrote: On 2015-11-05 07:14, Paul Eggleton wrote: Hi Gary, On Thursday 05 November 2015 05:39:21 Gary Thomas wrote: Just curious, does anyone know why OE-core has python3-pip but python-pip is relegated to meta-oe

Re: [yocto] Python pip

2015-11-09 Thread Alejandro Hernandez
On 09/11/15 10:17, Paul Eggleton wrote: On Monday 09 November 2015 10:11:30 Alejandro Hernandez wrote: On 05/11/15 08:25, Gary Thomas wrote: On 2015-11-05 07:14, Paul Eggleton wrote: Hi Gary, On Thursday 05 November 2015 05:39:21 Gary Thomas wrote: Just curious, does anyone know why OE-cor

Re: [yocto] Python pip

2015-11-09 Thread Paul Eggleton
On Monday 09 November 2015 10:11:30 Alejandro Hernandez wrote: > On 05/11/15 08:25, Gary Thomas wrote: > > On 2015-11-05 07:14, Paul Eggleton wrote: > >> Hi Gary, > >> > >> On Thursday 05 November 2015 05:39:21 Gary Thomas wrote: > >>> Just curious, does anyone know why OE-core has python3-pip > >

Re: [yocto] Python pip

2015-11-09 Thread Alejandro Hernandez
On 05/11/15 08:25, Gary Thomas wrote: On 2015-11-05 07:14, Paul Eggleton wrote: Hi Gary, On Thursday 05 November 2015 05:39:21 Gary Thomas wrote: Just curious, does anyone know why OE-core has python3-pip but python-pip is relegated to meta-oe? I think it has to do with pip being supplied

Re: [yocto] [prelink-cross][PATCH 1/1] rtld.c: LD_PRELOAD bugfix

2015-11-09 Thread Mark Hatle
On 11/7/15 5:24 AM, Maninder Singh wrote: > Hi, > Ping I'd gotten a msg after this to hold off and wait for an update. Is this the updated version of the fix? --Mark >> This patch do following things:- >> 1. Fixes bug of adding preloaded libs in search scope of dependent >> librarie

[yocto] binutils failing in FIDO branch

2015-11-09 Thread Martin Townsend
Hi, binutils is failing to compile. I'm using tip of fido branch. Error message is: | /home/martint/yocto/build/am43-devboard-aquila/bia-tmp-glibc/work/cortexa9hf-vfp-neon-oe-linux-gnueabi/binutils/2.24-r0/binutils-2.24/libiberty/fibheap.c: In function 'fibheap_replace_key_data': | /home/martin

[yocto] LTP tests

2015-11-09 Thread Raghavendra Kakarla
Hi All, I built the ltp_20150119 in the yocto build system. But while running the test cases, some tests are failed. I am attaching the document for that failed test cases to this mail. Please confirm me these test cases are failed due to the yocto rfs or kernel. Thanks in advance. Reg