All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net-snmp: disable libnl use
@ 2011-03-11 11:04 Steffen Sledz
  2011-03-11 13:05 ` Koen Kooi
  2011-03-15  9:08 ` Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use) Esben Haabendal
  0 siblings, 2 replies; 40+ messages in thread
From: Steffen Sledz @ 2011-03-11 11:04 UTC (permalink / raw)
  To: openembedded-devel

Fixes compile error

| ./.libs/libnetsnmpmibs.so: undefined reference to `nl_handle_destroy'
| ./.libs/libnetsnmpmibs.so: undefined reference to `nl_handle_alloc'

which occurred sometimes depending on build order (not in clean package
only builds).

Signed-off-by: Steffen Sledz <sledz@dresearch.de>
---
 recipes/net-snmp/net-snmp_svn.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/net-snmp/net-snmp_svn.bb b/recipes/net-snmp/net-snmp_svn.bb
index 2a75722..c53c91f 100644
--- a/recipes/net-snmp/net-snmp_svn.bb
+++ b/recipes/net-snmp/net-snmp_svn.bb
@@ -1,7 +1,7 @@
 require net-snmp.inc
 DEPENDS += "libtool libtool-native libtool-cross"
 SRCREV = "20069"
-PR = "${INC_PR}.0"
+PR = "${INC_PR}.1"
 
 S = "${WORKDIR}/net-snmp"
 
@@ -10,7 +10,7 @@ SRC_URI = "svn://net-snmp.svn.sourceforge.net/svnroot/net-snmp/trunk;module=net-
         file://snmpd.conf \
         file://snmptrapd.conf"
 
-EXTRA_OECONF += "--disable-embedded-perl --with-perl-modules=no GREP=/bin/grep SED=/bin/sed"
+EXTRA_OECONF += "--disable-embedded-perl --with-perl-modules=no --without-nl GREP=/bin/grep SED=/bin/sed"
 EXTRA_OEMAKE = "INSTALL_PREFIX=${D}"
 
 CCACHE = ""
-- 
1.7.1




^ permalink raw reply related	[flat|nested] 40+ messages in thread

* Re: [PATCH] net-snmp: disable libnl use
  2011-03-11 11:04 [PATCH] net-snmp: disable libnl use Steffen Sledz
@ 2011-03-11 13:05 ` Koen Kooi
  2011-03-11 15:53   ` Steffen Sledz
  2011-03-15  9:08 ` Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use) Esben Haabendal
  1 sibling, 1 reply; 40+ messages in thread
From: Koen Kooi @ 2011-03-11 13:05 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 11-03-11 12:04, Steffen Sledz wrote:
> Fixes compile error
> 
> | ./.libs/libnetsnmpmibs.so: undefined reference to `nl_handle_destroy'
> | ./.libs/libnetsnmpmibs.so: undefined reference to `nl_handle_alloc'
> 
> which occurred sometimes depending on build order (not in clean package
> only builds).

What features do we loose when disabling netlink support? I'd rather get
the libnl recipe fixed (e.g. static lib only) instead of hacking the
dependants.

regards,

Koen

> 
> Signed-off-by: Steffen Sledz <sledz@dresearch.de>
> ---
>  recipes/net-snmp/net-snmp_svn.bb |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/recipes/net-snmp/net-snmp_svn.bb b/recipes/net-snmp/net-snmp_svn.bb
> index 2a75722..c53c91f 100644
> --- a/recipes/net-snmp/net-snmp_svn.bb
> +++ b/recipes/net-snmp/net-snmp_svn.bb
> @@ -1,7 +1,7 @@
>  require net-snmp.inc
>  DEPENDS += "libtool libtool-native libtool-cross"
>  SRCREV = "20069"
> -PR = "${INC_PR}.0"
> +PR = "${INC_PR}.1"
>  
>  S = "${WORKDIR}/net-snmp"
>  
> @@ -10,7 +10,7 @@ SRC_URI = "svn://net-snmp.svn.sourceforge.net/svnroot/net-snmp/trunk;module=net-
>          file://snmpd.conf \
>          file://snmptrapd.conf"
>  
> -EXTRA_OECONF += "--disable-embedded-perl --with-perl-modules=no GREP=/bin/grep SED=/bin/sed"
> +EXTRA_OECONF += "--disable-embedded-perl --with-perl-modules=no --without-nl GREP=/bin/grep SED=/bin/sed"
>  EXTRA_OEMAKE = "INSTALL_PREFIX=${D}"
>  
>  CCACHE = ""

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFNeh4JMkyGM64RGpERAoHZAJ9qMCGgy94d0SRjWn8BYytVOgRTxwCgj+GR
tioY8TZybHS74EH8FMVubQ0=
=euaE
-----END PGP SIGNATURE-----




^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PATCH] net-snmp: disable libnl use
  2011-03-11 13:05 ` Koen Kooi
@ 2011-03-11 15:53   ` Steffen Sledz
  2011-03-12  0:05     ` Khem Raj
  0 siblings, 1 reply; 40+ messages in thread
From: Steffen Sledz @ 2011-03-11 15:53 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Koen Kooi

On 03/11/2011 02:05 PM, Koen Kooi wrote:
> On 11-03-11 12:04, Steffen Sledz wrote:
>> Fixes compile error
> 
>> | ./.libs/libnetsnmpmibs.so: undefined reference to `nl_handle_destroy'
>> | ./.libs/libnetsnmpmibs.so: undefined reference to `nl_handle_alloc'
> 
>> which occurred sometimes depending on build order (not in clean package
>> only builds).
> 
> What features do we loose when disabling netlink support? I'd rather get
> the libnl recipe fixed (e.g. static lib only) instead of hacking the
> dependants.

I'm not sure.

But there is no dependency to libnl. If *libnl was not built before net-snmp* the autotools/configure does not find it. So in that case libnl wasn't used anyway.

Just in case *it was built before* net-snmp tries to use it and hits the mentioned error.

Regards,
Steffen

-- 
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@DResearch.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058



^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PATCH] net-snmp: disable libnl use
  2011-03-11 15:53   ` Steffen Sledz
@ 2011-03-12  0:05     ` Khem Raj
  2011-03-14  7:06       ` Steffen Sledz
  0 siblings, 1 reply; 40+ messages in thread
From: Khem Raj @ 2011-03-12  0:05 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Koen Kooi

On (11/03/11 16:53), Steffen Sledz wrote:
> On 03/11/2011 02:05 PM, Koen Kooi wrote:
> > On 11-03-11 12:04, Steffen Sledz wrote:
> >> Fixes compile error
> > 
> >> | ./.libs/libnetsnmpmibs.so: undefined reference to `nl_handle_destroy'
> >> | ./.libs/libnetsnmpmibs.so: undefined reference to `nl_handle_alloc'
> > 
> >> which occurred sometimes depending on build order (not in clean package
> >> only builds).
> > 
> > What features do we loose when disabling netlink support? I'd rather get
> > the libnl recipe fixed (e.g. static lib only) instead of hacking the
> > dependants.
> 
> I'm not sure.
> 
> But there is no dependency to libnl. If *libnl was not built before net-snmp* the autotools/configure does not find it. So in that case libnl wasn't used anyway.
> 
> Just in case *it was built before* net-snmp tries to use it and hits the mentioned error.

So assuming that successful builds before did not link in libnl this
seems ok to me.
> 
> Regards,
> Steffen
> 
> -- 
> DResearch Fahrzeugelektronik GmbH
> Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
> Tel: +49 30 515932-237 mailto:sledz@DResearch.de
> Fax: +49 30 515932-299
> Geschäftsführer: Dr. Michael Weber, Werner Mögle;
> Amtsgericht Berlin Charlottenburg; HRB 130120 B;
> Ust.-IDNr. DE273952058
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

-- 
-Khem



^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PATCH] net-snmp: disable libnl use
  2011-03-12  0:05     ` Khem Raj
@ 2011-03-14  7:06       ` Steffen Sledz
  2011-03-14 16:39         ` Khem Raj
  0 siblings, 1 reply; 40+ messages in thread
From: Steffen Sledz @ 2011-03-14  7:06 UTC (permalink / raw)
  To: openembedded-devel

Am 12.03.2011 01:05, schrieb Khem Raj:
> On (11/03/11 16:53), Steffen Sledz wrote:
>> On 03/11/2011 02:05 PM, Koen Kooi wrote:
>>> On 11-03-11 12:04, Steffen Sledz wrote:
>>>> Fixes compile error
>>>
>>>> | ./.libs/libnetsnmpmibs.so: undefined reference to `nl_handle_destroy'
>>>> | ./.libs/libnetsnmpmibs.so: undefined reference to `nl_handle_alloc'
>>>
>>>> which occurred sometimes depending on build order (not in clean package
>>>> only builds).
>>>
>>> What features do we loose when disabling netlink support? I'd rather get
>>> the libnl recipe fixed (e.g. static lib only) instead of hacking the
>>> dependants.
>>
>> I'm not sure.
>>
>> But there is no dependency to libnl. If *libnl was not built before net-snmp* the autotools/configure does not find it. So in that case libnl wasn't used anyway.
>>
>> Just in case *it was built before* net-snmp tries to use it and hits the mentioned error.
> 
> So assuming that successful builds before did not link in libnl this
> seems ok to me.

Can i take that as an ACK?

Steffen

-- 
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@DResearch.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058




^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: [PATCH] net-snmp: disable libnl use
  2011-03-14  7:06       ` Steffen Sledz
@ 2011-03-14 16:39         ` Khem Raj
  0 siblings, 0 replies; 40+ messages in thread
From: Khem Raj @ 2011-03-14 16:39 UTC (permalink / raw)
  To: Steffen Sledz; +Cc: openembedded-devel

On (14/03/11 08:06), Steffen Sledz wrote:
> Am 12.03.2011 01:05, schrieb Khem Raj:
> > On (11/03/11 16:53), Steffen Sledz wrote:
> >> On 03/11/2011 02:05 PM, Koen Kooi wrote:
> >>> On 11-03-11 12:04, Steffen Sledz wrote:
> >>>> Fixes compile error
> >>>
> >>>> | ./.libs/libnetsnmpmibs.so: undefined reference to `nl_handle_destroy'
> >>>> | ./.libs/libnetsnmpmibs.so: undefined reference to `nl_handle_alloc'
> >>>
> >>>> which occurred sometimes depending on build order (not in clean package
> >>>> only builds).
> >>>
> >>> What features do we loose when disabling netlink support? I'd rather get
> >>> the libnl recipe fixed (e.g. static lib only) instead of hacking the
> >>> dependants.
> >>
> >> I'm not sure.
> >>
> >> But there is no dependency to libnl. If *libnl was not built before net-snmp* the autotools/configure does not find it. So in that case libnl wasn't used anyway.
> >>
> >> Just in case *it was built before* net-snmp tries to use it and hits the mentioned error.
> > 
> > So assuming that successful builds before did not link in libnl this
> > seems ok to me.
> 
> Can i take that as an ACK?

Acked-by: Khem Raj <raj.khem@gmail.com>
> 
> Steffen
> 
> -- 
> DResearch Fahrzeugelektronik GmbH
> Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
> Tel: +49 30 515932-237 mailto:sledz@DResearch.de
> Fax: +49 30 515932-299
> Geschäftsführer: Dr. Michael Weber, Werner Mögle;
> Amtsgericht Berlin Charlottenburg; HRB 130120 B;
> Ust.-IDNr. DE273952058
> 

-- 
-Khem



^ permalink raw reply	[flat|nested] 40+ messages in thread

* Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use)
  2011-03-11 11:04 [PATCH] net-snmp: disable libnl use Steffen Sledz
  2011-03-11 13:05 ` Koen Kooi
@ 2011-03-15  9:08 ` Esben Haabendal
  2011-03-15 22:03   ` Denys Dmytriyenko
                     ` (2 more replies)
  1 sibling, 3 replies; 40+ messages in thread
From: Esben Haabendal @ 2011-03-15  9:08 UTC (permalink / raw)
  To: openembedded-devel

On Fri, 2011-03-11 at 12:04 +0100, Steffen Sledz wrote:
> which occurred sometimes depending on build order (not in clean
> package only builds).

I would like to raise awareness of the underlying problem here.

The current dependency/staging model of OE basically has this feature
that a build can be influenced not only by it's own dependencies, but
also what has been build before it (or not).

I strongly believe that this has to be fixed on the architectural level,
and not just on a case-by-case level as is currently needed.

I haven't received much feedback on the preivous posting about the
per-recipe staging principle implemented in OE-lite, but I decided to
take this opportunity to re-iterate the fact that the OE-lite
implementation of staging and build dependencies eliminates this
problem.

I am still very much interested in discussing how to move this
technology from OE-lite to OE, but as it impacts all recipe metadata
(build dependencies has to be redefined), OE community at a large really
needs to value the benefits of solving this problem.

Best regards,
Esben




^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use)
  2011-03-15  9:08 ` Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use) Esben Haabendal
@ 2011-03-15 22:03   ` Denys Dmytriyenko
  2011-03-16  5:47     ` Eliminating dependency race-conditions Esben Haabendal
  2011-03-15 23:15   ` Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use) Graham Gower
  2011-03-17 11:18   ` Phil Blundell
  2 siblings, 1 reply; 40+ messages in thread
From: Denys Dmytriyenko @ 2011-03-15 22:03 UTC (permalink / raw)
  To: openembedded-devel

On Tue, Mar 15, 2011 at 10:08:37AM +0100, Esben Haabendal wrote:
> On Fri, 2011-03-11 at 12:04 +0100, Steffen Sledz wrote:
> > which occurred sometimes depending on build order (not in clean
> > package only builds).
> 
> I would like to raise awareness of the underlying problem here.
> 
> The current dependency/staging model of OE basically has this feature
> that a build can be influenced not only by it's own dependencies, but
> also what has been build before it (or not).
> 
> I strongly believe that this has to be fixed on the architectural level,
> and not just on a case-by-case level as is currently needed.
> 
> I haven't received much feedback on the preivous posting about the
> per-recipe staging principle implemented in OE-lite, but I decided to
> take this opportunity to re-iterate the fact that the OE-lite
> implementation of staging and build dependencies eliminates this
> problem.
> 
> I am still very much interested in discussing how to move this
> technology from OE-lite to OE, but as it impacts all recipe metadata
> (build dependencies has to be redefined), OE community at a large really
> needs to value the benefits of solving this problem.

Esben,

Thanks for raising this issue and making people aware of it!

This has previously been discussed several times, including last time during 
the Yocto Summit in December, where I brought up the question of per-package 
staging/dependency to Richard's attention, when he introduced the new Shared 
State (sstate). While per-package dependency wasn't considered a critical 
must-have feature right away, it was acknowledged as something worthwhile 
looking at and, according to Richard, should be easy to accomplish with the 
new sstate functionality...

-- 
Denys



^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use)
  2011-03-15  9:08 ` Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use) Esben Haabendal
  2011-03-15 22:03   ` Denys Dmytriyenko
@ 2011-03-15 23:15   ` Graham Gower
  2011-03-17 11:18   ` Phil Blundell
  2 siblings, 0 replies; 40+ messages in thread
From: Graham Gower @ 2011-03-15 23:15 UTC (permalink / raw)
  To: openembedded-devel

On 03/15/2011 07:38 PM, Esben Haabendal wrote:
> On Fri, 2011-03-11 at 12:04 +0100, Steffen Sledz wrote:
>> which occurred sometimes depending on build order (not in clean
>> package only builds).
> 
> I would like to raise awareness of the underlying problem here.
> 
> The current dependency/staging model of OE basically has this feature
> that a build can be influenced not only by it's own dependencies, but
> also what has been build before it (or not).
> 
> I strongly believe that this has to be fixed on the architectural level,
> and not just on a case-by-case level as is currently needed.
> 
> I haven't received much feedback on the preivous posting about the
> per-recipe staging principle implemented in OE-lite, but I decided to
> take this opportunity to re-iterate the fact that the OE-lite
> implementation of staging and build dependencies eliminates this
> problem.
> 
> I am still very much interested in discussing how to move this
> technology from OE-lite to OE, but as it impacts all recipe metadata
> (build dependencies has to be redefined), OE community at a large really
> needs to value the benefits of solving this problem.
> 
> Best regards,
> Esben
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


I did some work last year to fix some of the low hanging fruit (on a
case by case basis).
My methodology was to do two runs of bitbake -k world, then compare
the output. In case anyone is interested, I used the script below to
identify the problematic recipes. Last time I ran it was in November,
by which time the output had reduced to a list of 5-10 items most of
the time.


#!/bin/sh
#
# Quick and dirty script to determine which tasks fail in one world.log,
# where they succeeded in another. world.log should be generated with, e.g.
# $ bitbake -k world | tee world.log
#
# If there are too many failures, this script will take too long as grep -f
# is slooow.

if [ $# != 2 ]; then
	echo "usage: $0 world.log.1 world.log.2"
	exit 1
fi

tasks="do_setscene do_fetch do_distribute_sources do_unpack do_prepsources
	do_patch do_configure do_qa_configure do_compile do_install
	do_populate_sysroot do_package do_package_write_ipk
	do_package_write do_package_stage do_package_stage_all do_build
	do_qa_staging"

tmp1=`mktemp /tmp/world_regress.XXXXXX`
tmp2=`mktemp /tmp/world_regress.XXXXXX`

for task in $tasks; do
	grep "task $task: Failed" $2 \
		| sed -e 's/^.*NOTE: package //' \
			-e 's/task \(.*\): Failed/\1/' \
		> $tmp1

	grep "task $task: Succeeded" $1 \
		| sed -e 's/^.*NOTE: package //' \
			-e 's/task \(.*\): Succeeded/\1/' \
		> $tmp2

	grep -f $tmp1 $tmp2 \
		| sort -n
done

rm -f $tmp1 $tmp2




^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions
  2011-03-15 22:03   ` Denys Dmytriyenko
@ 2011-03-16  5:47     ` Esben Haabendal
  2011-03-16  6:22       ` Python-native dependency in libxml2 Ahsan, Noor
  2011-03-16  6:35       ` Eliminating dependency race-conditions Frans Meulenbroeks
  0 siblings, 2 replies; 40+ messages in thread
From: Esben Haabendal @ 2011-03-16  5:47 UTC (permalink / raw)
  To: openembedded-devel

On Tue, 2011-03-15 at 18:03 -0400, Denys Dmytriyenko wrote:
> On Tue, Mar 15, 2011 at 10:08:37AM +0100, Esben Haabendal wrote:
> > On Fri, 2011-03-11 at 12:04 +0100, Steffen Sledz wrote:
> > > which occurred sometimes depending on build order (not in clean
> > > package only builds).
> > 
> > I would like to raise awareness of the underlying problem here.
> > 
> > The current dependency/staging model of OE basically has this feature
> > that a build can be influenced not only by it's own dependencies, but
> > also what has been build before it (or not).
> > 
> > I strongly believe that this has to be fixed on the architectural level,
> > and not just on a case-by-case level as is currently needed.
> > 
> > I haven't received much feedback on the preivous posting about the
> > per-recipe staging principle implemented in OE-lite, but I decided to
> > take this opportunity to re-iterate the fact that the OE-lite
> > implementation of staging and build dependencies eliminates this
> > problem.
> > 
> > I am still very much interested in discussing how to move this
> > technology from OE-lite to OE, but as it impacts all recipe metadata
> > (build dependencies has to be redefined), OE community at a large really
> > needs to value the benefits of solving this problem.
> 
> Esben,
> 
> Thanks for raising this issue and making people aware of it!
> 
> This has previously been discussed several times, including last time during 
> the Yocto Summit in December, where I brought up the question of per-package 
> staging/dependency to Richard's attention, when he introduced the new Shared 
> State (sstate). While per-package dependency wasn't considered a critical 
> must-have feature right away, it was acknowledged as something worthwhile 
> looking at and, according to Richard, should be easy to accomplish with the 
> new sstate functionality...

There is two different objectives in this.

Per-recipe staging and per-package build-time dependencies.  While I
assume per-recipe staging will be doable to build on top of sstate,
per-package build-time dependencies is not really related to sstate, but
is mostly a meta-data issue (man-hours wise), while also requiring
changes to tbe BitBake cooker.

The final thing that I have found while solving the above issues, is how
simple (KISS!) all this can be addressed when going from per-recipe
build-time dependencies to per-package.  And I really think that we need
more KISS in OE ;-)

/Esben






^ permalink raw reply	[flat|nested] 40+ messages in thread

* Python-native dependency in libxml2
  2011-03-16  5:47     ` Eliminating dependency race-conditions Esben Haabendal
@ 2011-03-16  6:22       ` Ahsan, Noor
  2011-03-16  7:08         ` Khem Raj
  2011-03-16  6:35       ` Eliminating dependency race-conditions Frans Meulenbroeks
  1 sibling, 1 reply; 40+ messages in thread
From: Ahsan, Noor @ 2011-03-16  6:22 UTC (permalink / raw)
  To: openembedded-devel

Hello,

I was looking at the libxml2 package. While going through the recipes I
came to know that its native package depends on python-native package as
well. This dependency is defined in libxml2.inc file. 

DEPENDS_virtclass-native = "python-native"

This package build fine after removing this dependency. I am not clear
why this dependency is being added in libxml2 package. Can somebody
clear that to me. While looking at the git log I came to know that this
change is coming from libxml2-native.inc file. But I am not clear why
this dependency was added as this package build fine without it.

Please help me in understanding this dependency. Thanks.

Regards,
Noor



^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions
  2011-03-16  5:47     ` Eliminating dependency race-conditions Esben Haabendal
  2011-03-16  6:22       ` Python-native dependency in libxml2 Ahsan, Noor
@ 2011-03-16  6:35       ` Frans Meulenbroeks
  1 sibling, 0 replies; 40+ messages in thread
From: Frans Meulenbroeks @ 2011-03-16  6:35 UTC (permalink / raw)
  To: openembedded-devel

2011/3/16 Esben Haabendal <eha@doredevelopment.dk>:
> On Tue, 2011-03-15 at 18:03 -0400, Denys Dmytriyenko wrote:
>> On Tue, Mar 15, 2011 at 10:08:37AM +0100, Esben Haabendal wrote:
>> > On Fri, 2011-03-11 at 12:04 +0100, Steffen Sledz wrote:
>> > > which occurred sometimes depending on build order (not in clean
>> > > package only builds).
>> >
>> > I would like to raise awareness of the underlying problem here.
>> >
>> > The current dependency/staging model of OE basically has this feature
>> > that a build can be influenced not only by it's own dependencies, but
>> > also what has been build before it (or not).
>> >
>> > I strongly believe that this has to be fixed on the architectural level,
>> > and not just on a case-by-case level as is currently needed.
>> >
>> > I haven't received much feedback on the preivous posting about the
>> > per-recipe staging principle implemented in OE-lite, but I decided to
>> > take this opportunity to re-iterate the fact that the OE-lite
>> > implementation of staging and build dependencies eliminates this
>> > problem.
>> >
>> > I am still very much interested in discussing how to move this
>> > technology from OE-lite to OE, but as it impacts all recipe metadata
>> > (build dependencies has to be redefined), OE community at a large really
>> > needs to value the benefits of solving this problem.
>>
>> Esben,
>>
>> Thanks for raising this issue and making people aware of it!
>>
>> This has previously been discussed several times, including last time during
>> the Yocto Summit in December, where I brought up the question of per-package
>> staging/dependency to Richard's attention, when he introduced the new Shared
>> State (sstate). While per-package dependency wasn't considered a critical
>> must-have feature right away, it was acknowledged as something worthwhile
>> looking at and, according to Richard, should be easy to accomplish with the
>> new sstate functionality...
>
> There is two different objectives in this.
>
> Per-recipe staging and per-package build-time dependencies.  While I
> assume per-recipe staging will be doable to build on top of sstate,
> per-package build-time dependencies is not really related to sstate, but
> is mostly a meta-data issue (man-hours wise), while also requiring
> changes to tbe BitBake cooker.
>
> The final thing that I have found while solving the above issues, is how
> simple (KISS!) all this can be addressed when going from per-recipe
> build-time dependencies to per-package.  And I really think that we need
> more KISS in OE ;-)
>
> /Esben

From a consistency point of view per package build-time dependencies
are highly desirable to get a consistent and reproducible system as
you are always getting the same output irrespective of build order.
Currently this is not the case because configure might pick up
whatever package is build first.
So for (deeply) embedded product development this is a very desirable
feature, QA wise, if not a must have.

Frans



^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Python-native dependency in libxml2
  2011-03-16  6:22       ` Python-native dependency in libxml2 Ahsan, Noor
@ 2011-03-16  7:08         ` Khem Raj
  2011-03-16  7:28           ` Frans Meulenbroeks
  0 siblings, 1 reply; 40+ messages in thread
From: Khem Raj @ 2011-03-16  7:08 UTC (permalink / raw)
  To: openembedded-devel

On 3/15/2011 11:22 PM, Ahsan, Noor wrote:
> Hello,
>
> I was looking at the libxml2 package. While going through the recipes I
> came to know that its native package depends on python-native package as
> well. This dependency is defined in libxml2.inc file.
>
> DEPENDS_virtclass-native = "python-native"
>
> This package build fine after removing this dependency. I am not clear
> why this dependency is being added in libxml2 package. Can somebody
> clear that to me. While looking at the git log I came to know that this
> change is coming from libxml2-native.inc file. But I am not clear why
> this dependency was added as this package build fine without it.
>
> Please help me in understanding this dependency. Thanks.

Try to build this recipe from scratch and see if it still works then we 
can remove the dep
>
> Regards,
> Noor
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel




^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Python-native dependency in libxml2
  2011-03-16  7:08         ` Khem Raj
@ 2011-03-16  7:28           ` Frans Meulenbroeks
  2011-03-16  7:43             ` Khem Raj
  2011-03-16  8:05             ` Martin Jansa
  0 siblings, 2 replies; 40+ messages in thread
From: Frans Meulenbroeks @ 2011-03-16  7:28 UTC (permalink / raw)
  To: openembedded-devel

2011/3/16 Khem Raj <raj.khem@gmail.com>:
> On 3/15/2011 11:22 PM, Ahsan, Noor wrote:
>>
>> Hello,
>>
>> I was looking at the libxml2 package. While going through the recipes I
>> came to know that its native package depends on python-native package as
>> well. This dependency is defined in libxml2.inc file.
>>
>> DEPENDS_virtclass-native = "python-native"
>>
>> This package build fine after removing this dependency. I am not clear
>> why this dependency is being added in libxml2 package. Can somebody
>> clear that to me. While looking at the git log I came to know that this
>> change is coming from libxml2-native.inc file. But I am not clear why
>> this dependency was added as this package build fine without it.
>>
>> Please help me in understanding this dependency. Thanks.
>
> Try to build this recipe from scratch and see if it still works then we can
> remove the dep

I'm not sure if that is the right way.
It might well be that typically python-native is already there in a
scratch build because some earlier package needed it (or even because
of the scheduling of build steps.

Probably a better way is to build with packaged staging (with staging
dir outside TMPDIR) then rm TMPDIR and bake the package.
Alternately peek into the package to see if it needs python. If it is
needed then the DEPENDS should stay.

Looking at the issue at hand maybe the best person to ask is Martin
Jansa as he last touched that line according to git blame:
3cd9ddbf recipes/libxml/libxml2.inc  (Martin Jansa
2010-02-26 12:32:53 +0100  5) DEPENDS_virtclass-native =
"python-native"

The other thing is that further on in the .inc file I see:
XPY_virtclass-native = " --with-python=${PYTHON_DIR}"

This strongly suggests a hard dependency on python, so removing the
DEPENDS "because it builds without it" does not seem to be a good plan
to me.

My strong feeling is that recipes should be self-contained (so should
list all packages they need to build, minus the ones that are
inherited from classes (and maybe a few implicit ones like maybe make)

Frans



^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Python-native dependency in libxml2
  2011-03-16  7:28           ` Frans Meulenbroeks
@ 2011-03-16  7:43             ` Khem Raj
  2011-03-16  8:00               ` Frans Meulenbroeks
  2011-03-16  8:05             ` Martin Jansa
  1 sibling, 1 reply; 40+ messages in thread
From: Khem Raj @ 2011-03-16  7:43 UTC (permalink / raw)
  To: openembedded-devel

On 3/16/2011 12:28 AM, Frans Meulenbroeks wrote:
> 2011/3/16 Khem Raj<raj.khem@gmail.com>:
>> On 3/15/2011 11:22 PM, Ahsan, Noor wrote:
>>>
>>> Hello,
>>>
>>> I was looking at the libxml2 package. While going through the recipes I
>>> came to know that its native package depends on python-native package as
>>> well. This dependency is defined in libxml2.inc file.
>>>
>>> DEPENDS_virtclass-native = "python-native"
>>>
>>> This package build fine after removing this dependency. I am not clear
>>> why this dependency is being added in libxml2 package. Can somebody
>>> clear that to me. While looking at the git log I came to know that this
>>> change is coming from libxml2-native.inc file. But I am not clear why
>>> this dependency was added as this package build fine without it.
>>>
>>> Please help me in understanding this dependency. Thanks.
>>
>> Try to build this recipe from scratch and see if it still works then we can
>> remove the dep
>
> I'm not sure if that is the right way.
> It might well be that typically python-native is already there in a
> scratch build because some earlier package needed it (or even because
> of the scheduling of build steps.
>
> Probably a better way is to build with packaged staging (with staging
> dir outside TMPDIR) then rm TMPDIR and bake the package.
> Alternately peek into the package to see if it needs python. If it is
> needed then the DEPENDS should stay.


Did you read carefully what I wrote ?




^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Python-native dependency in libxml2
  2011-03-16  7:43             ` Khem Raj
@ 2011-03-16  8:00               ` Frans Meulenbroeks
  0 siblings, 0 replies; 40+ messages in thread
From: Frans Meulenbroeks @ 2011-03-16  8:00 UTC (permalink / raw)
  To: openembedded-devel

2011/3/16 Khem Raj <raj.khem@gmail.com>:
> On 3/16/2011 12:28 AM, Frans Meulenbroeks wrote:
>>
>> 2011/3/16 Khem Raj<raj.khem@gmail.com>:
>>>
>>> On 3/15/2011 11:22 PM, Ahsan, Noor wrote:
>>>>
>>>> Hello,
>>>>
>>>> I was looking at the libxml2 package. While going through the recipes I
>>>> came to know that its native package depends on python-native package as
>>>> well. This dependency is defined in libxml2.inc file.
>>>>
>>>> DEPENDS_virtclass-native = "python-native"
>>>>
>>>> This package build fine after removing this dependency. I am not clear
>>>> why this dependency is being added in libxml2 package. Can somebody
>>>> clear that to me. While looking at the git log I came to know that this
>>>> change is coming from libxml2-native.inc file. But I am not clear why
>>>> this dependency was added as this package build fine without it.
>>>>
>>>> Please help me in understanding this dependency. Thanks.
>>>
>>> Try to build this recipe from scratch and see if it still works then we
>>> can
>>> remove the dep
>>
>> I'm not sure if that is the right way.
>> It might well be that typically python-native is already there in a
>> scratch build because some earlier package needed it (or even because
>> of the scheduling of build steps.
>>
>> Probably a better way is to build with packaged staging (with staging
>> dir outside TMPDIR) then rm TMPDIR and bake the package.
>> Alternately peek into the package to see if it needs python. If it is
>> needed then the DEPENDS should stay.
>
>
> Did you read carefully what I wrote ?

Yes. From scratch for me (and maybe also for others) means rm TMPDIR
(including pstaging).
In that case you might pick up stray packages.
You probably meant keeping pstaging, but at least for some of the
readers that is not obvious.

Frans



^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Python-native dependency in libxml2
  2011-03-16  7:28           ` Frans Meulenbroeks
  2011-03-16  7:43             ` Khem Raj
@ 2011-03-16  8:05             ` Martin Jansa
  2011-03-16  8:38               ` Ahsan, Noor
  1 sibling, 1 reply; 40+ messages in thread
From: Martin Jansa @ 2011-03-16  8:05 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2862 bytes --]

On Wed, Mar 16, 2011 at 08:28:39AM +0100, Frans Meulenbroeks wrote:
> 2011/3/16 Khem Raj <raj.khem@gmail.com>:
> > On 3/15/2011 11:22 PM, Ahsan, Noor wrote:
> >>
> >> Hello,
> >>
> >> I was looking at the libxml2 package. While going through the recipes I
> >> came to know that its native package depends on python-native package as
> >> well. This dependency is defined in libxml2.inc file.
> >>
> >> DEPENDS_virtclass-native = "python-native"
> >>
> >> This package build fine after removing this dependency. I am not clear
> >> why this dependency is being added in libxml2 package. Can somebody
> >> clear that to me. While looking at the git log I came to know that this
> >> change is coming from libxml2-native.inc file. But I am not clear why
> >> this dependency was added as this package build fine without it.
> >>
> >> Please help me in understanding this dependency. Thanks.
> >
> > Try to build this recipe from scratch and see if it still works then we can
> > remove the dep

That's not enough, libxml2-native builds fine.. but then xml2po
will fail if there isn't libxml2-native built with python support.

see a25f07ca6159e1cd5b8a215ca5da8405fb1b9053

So yes.. for such tests you should build recipe from scratch _and_ check
if resulting package/sysroot is still the same.

Regards,

> I'm not sure if that is the right way.
> It might well be that typically python-native is already there in a
> scratch build because some earlier package needed it (or even because
> of the scheduling of build steps.
> 
> Probably a better way is to build with packaged staging (with staging
> dir outside TMPDIR) then rm TMPDIR and bake the package.
> Alternately peek into the package to see if it needs python. If it is
> needed then the DEPENDS should stay.
> 
> Looking at the issue at hand maybe the best person to ask is Martin
> Jansa as he last touched that line according to git blame:
> 3cd9ddbf recipes/libxml/libxml2.inc  (Martin Jansa
> 2010-02-26 12:32:53 +0100  5) DEPENDS_virtclass-native =
> "python-native"
> 
> The other thing is that further on in the .inc file I see:
> XPY_virtclass-native = " --with-python=${PYTHON_DIR}"
> 
> This strongly suggests a hard dependency on python, so removing the
> DEPENDS "because it builds without it" does not seem to be a good plan
> to me.
> 
> My strong feeling is that recipes should be self-contained (so should
> list all packages they need to build, minus the ones that are
> inherited from classes (and maybe a few implicit ones like maybe make)
> 
> Frans
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Type: application/pgp-signature, Size: 205 bytes --]

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Python-native dependency in libxml2
  2011-03-16  8:05             ` Martin Jansa
@ 2011-03-16  8:38               ` Ahsan, Noor
  2011-03-17 10:40                 ` Ahsan, Noor
  0 siblings, 1 reply; 40+ messages in thread
From: Ahsan, Noor @ 2011-03-16  8:38 UTC (permalink / raw)
  To: openembedded-devel

Hello,

I made 2 changes, first one was to remove python-native from DEPENDS and
second was commented out XPY_virtclass-native = "
--with-python=${PYTHON_DIR}". Moreover I removed all the stuff from
build dir, so there were not python-native for me. After kicking this
build libxml2-native build fine.

I was looking for xml2po recipe, I couldn't find it. Can you tell me how
to build xml2po package so that I can reproduce the problem.

Regards,
Noor

-----Original Message-----
From: openembedded-devel-bounces@lists.openembedded.org
[mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf Of
Martin Jansa
Sent: Wednesday, March 16, 2011 1:05 PM
To: openembedded-devel@lists.openembedded.org
Subject: Re: [oe] Python-native dependency in libxml2

On Wed, Mar 16, 2011 at 08:28:39AM +0100, Frans Meulenbroeks wrote:
> 2011/3/16 Khem Raj <raj.khem@gmail.com>:
> > On 3/15/2011 11:22 PM, Ahsan, Noor wrote:
> >>
> >> Hello,
> >>
> >> I was looking at the libxml2 package. While going through the
recipes I
> >> came to know that its native package depends on python-native
package as
> >> well. This dependency is defined in libxml2.inc file.
> >>
> >> DEPENDS_virtclass-native = "python-native"
> >>
> >> This package build fine after removing this dependency. I am not
clear
> >> why this dependency is being added in libxml2 package. Can somebody
> >> clear that to me. While looking at the git log I came to know that
this
> >> change is coming from libxml2-native.inc file. But I am not clear
why
> >> this dependency was added as this package build fine without it.
> >>
> >> Please help me in understanding this dependency. Thanks.
> >
> > Try to build this recipe from scratch and see if it still works then
we can
> > remove the dep

That's not enough, libxml2-native builds fine.. but then xml2po
will fail if there isn't libxml2-native built with python support.

see a25f07ca6159e1cd5b8a215ca5da8405fb1b9053

So yes.. for such tests you should build recipe from scratch _and_ check
if resulting package/sysroot is still the same.

Regards,

> I'm not sure if that is the right way.
> It might well be that typically python-native is already there in a
> scratch build because some earlier package needed it (or even because
> of the scheduling of build steps.
> 
> Probably a better way is to build with packaged staging (with staging
> dir outside TMPDIR) then rm TMPDIR and bake the package.
> Alternately peek into the package to see if it needs python. If it is
> needed then the DEPENDS should stay.
> 
> Looking at the issue at hand maybe the best person to ask is Martin
> Jansa as he last touched that line according to git blame:
> 3cd9ddbf recipes/libxml/libxml2.inc  (Martin Jansa
> 2010-02-26 12:32:53 +0100  5) DEPENDS_virtclass-native =
> "python-native"
> 
> The other thing is that further on in the .inc file I see:
> XPY_virtclass-native = " --with-python=${PYTHON_DIR}"
> 
> This strongly suggests a hard dependency on python, so removing the
> DEPENDS "because it builds without it" does not seem to be a good plan
> to me.
> 
> My strong feeling is that recipes should be self-contained (so should
> list all packages they need to build, minus the ones that are
> inherited from classes (and maybe a few implicit ones like maybe make)
> 
> Frans
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com



^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Python-native dependency in libxml2
  2011-03-16  8:38               ` Ahsan, Noor
@ 2011-03-17 10:40                 ` Ahsan, Noor
  2011-03-18  7:41                   ` Ahsan, Noor
  0 siblings, 1 reply; 40+ messages in thread
From: Ahsan, Noor @ 2011-03-17 10:40 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 5124 bytes --]

Hello,

Today I got the fresh stuff and tried to build gnome-doc-utils-native
(to build xml2po package). I am building on Ubuntu host 9.10. First it
gave me an error that it could not find intltoolize command. You can see
the attached build log "build_intltool_error,log". So I added intltool
package in gnome-doc-utils-native DEPENDS so it built successfully. You
can see the build log "build_intltool_fix.log". Then I removed all the
build stuff from build DIR and commented DEPENDS_virtclass-native =
"python-native" and XPY_virtclass-native = "
--with-python=${PYTHON_DIR}" in libxml2.inc file. Rebuild
gnome-doc-utils-native. It built successfully again. The build log is
also attached "build_no_python.log". I think there is no need of python
dependency in libxml2 package. Kindly correct me if I am doing anything
wrong.

We need to fix gnome-doc-utils-native recipe, so that it does not show
intltoolize error.

Regards,
Noor

-----Original Message-----
From: openembedded-devel-bounces@lists.openembedded.org
[mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf Of
Ahsan, Noor
Sent: Wednesday, March 16, 2011 1:39 PM
To: openembedded-devel@lists.openembedded.org
Subject: Re: [oe] Python-native dependency in libxml2

Hello,

I made 2 changes, first one was to remove python-native from DEPENDS and
second was commented out XPY_virtclass-native = "
--with-python=${PYTHON_DIR}". Moreover I removed all the stuff from
build dir, so there were not python-native for me. After kicking this
build libxml2-native build fine.

I was looking for xml2po recipe, I couldn't find it. Can you tell me how
to build xml2po package so that I can reproduce the problem.

Regards,
Noor

-----Original Message-----
From: openembedded-devel-bounces@lists.openembedded.org
[mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf Of
Martin Jansa
Sent: Wednesday, March 16, 2011 1:05 PM
To: openembedded-devel@lists.openembedded.org
Subject: Re: [oe] Python-native dependency in libxml2

On Wed, Mar 16, 2011 at 08:28:39AM +0100, Frans Meulenbroeks wrote:
> 2011/3/16 Khem Raj <raj.khem@gmail.com>:
> > On 3/15/2011 11:22 PM, Ahsan, Noor wrote:
> >>
> >> Hello,
> >>
> >> I was looking at the libxml2 package. While going through the
recipes I
> >> came to know that its native package depends on python-native
package as
> >> well. This dependency is defined in libxml2.inc file.
> >>
> >> DEPENDS_virtclass-native = "python-native"
> >>
> >> This package build fine after removing this dependency. I am not
clear
> >> why this dependency is being added in libxml2 package. Can somebody
> >> clear that to me. While looking at the git log I came to know that
this
> >> change is coming from libxml2-native.inc file. But I am not clear
why
> >> this dependency was added as this package build fine without it.
> >>
> >> Please help me in understanding this dependency. Thanks.
> >
> > Try to build this recipe from scratch and see if it still works then
we can
> > remove the dep

That's not enough, libxml2-native builds fine.. but then xml2po
will fail if there isn't libxml2-native built with python support.

see a25f07ca6159e1cd5b8a215ca5da8405fb1b9053

So yes.. for such tests you should build recipe from scratch _and_ check
if resulting package/sysroot is still the same.

Regards,

> I'm not sure if that is the right way.
> It might well be that typically python-native is already there in a
> scratch build because some earlier package needed it (or even because
> of the scheduling of build steps.
> 
> Probably a better way is to build with packaged staging (with staging
> dir outside TMPDIR) then rm TMPDIR and bake the package.
> Alternately peek into the package to see if it needs python. If it is
> needed then the DEPENDS should stay.
> 
> Looking at the issue at hand maybe the best person to ask is Martin
> Jansa as he last touched that line according to git blame:
> 3cd9ddbf recipes/libxml/libxml2.inc  (Martin Jansa
> 2010-02-26 12:32:53 +0100  5) DEPENDS_virtclass-native =
> "python-native"
> 
> The other thing is that further on in the .inc file I see:
> XPY_virtclass-native = " --with-python=${PYTHON_DIR}"
> 
> This strongly suggests a hard dependency on python, so removing the
> DEPENDS "because it builds without it" does not seem to be a good plan
> to me.
> 
> My strong feeling is that recipes should be self-contained (so should
> list all packages they need to build, minus the ones that are
> inherited from classes (and maybe a few implicit ones like maybe make)
> 
> Frans
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

_______________________________________________
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

[-- Attachment #2: build_intltool_error.log --]
[-- Type: application/octet-stream, Size: 266057 bytes --]

Parsing .bb files, please wait...NOTE: Angstrom DOES NOT support bluez-libs because bluez-libs 3.x has been replaced by bluez4
NOTE: Angstrom DOES NOT support libiconv because the glibc builtin iconv replacement is used
done.
Parsing of 7332 .bb files complete (4898 cached, 2434 parsed). 7662 targets, 311 skipped, 2 masked, 0 errors.

Build Configuration:
BB_VERSION        = "1.10.2"
METADATA_BRANCH   = "master"
METADATA_REVISION = "d7a5453"
TARGET_ARCH       = "arm"
TARGET_OS         = "linux-gnueabi"
MACHINE           = "beagleboard"
DISTRO            = "angstrom"
DISTRO_VERSION    = "v20110317"
TARGET_FPU        = "hard"

NOTE: Resolving any missing task queue dependencies
NOTE: Preparing runqueue
NOTE: Executing runqueue
NOTE: Running task 4 of 339 (ID: 95, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_setscene)
NOTE: Running task 1 of 339 (ID: 207, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_setscene)
NOTE: Running task 2 of 339 (ID: 221, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_setscene)
NOTE: Running task 3 of 339 (ID: 109, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_setscene)
--2011-03-17 11:11:17--  http://dotat.at/prog/unifdef/unifdef-2.6.tar.gz
Resolving dotat.at... NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_setscene: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_setscene: Succeeded
NOTE: package quilt-native-0.48-r7.1: task do_setscene: Started
NOTE: package quilt-native-0.48-r7.1: task do_setscene: Succeeded
NOTE: package unifdef-native-2.6-0: task do_setscene: Started
NOTE: package unifdef-native-2.6-0: task do_setscene: Succeeded
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_setscene: Started
NOTE: Running task 5 of 339 (ID: 206, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_fetch)
NOTE: Running task 6 of 339 (ID: 220, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_fetch)
--2011-03-17 11:11:17--  http://kernel.org/pub/linux/kernel/v2.6/linux-2.6.32.tar.bz2
Resolving kernel.org... NOTE: package quilt-native-0.48-r7.1: task do_fetch: Started
NOTE: package quilt-native-0.48-r7.1: task do_fetch: Succeeded
NOTE: package unifdef-native-2.6-0: task do_fetch: Started
NOTE: fetch http://dotat.at/prog/unifdef/unifdef-2.6.tar.gz
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_setscene: Succeeded
NOTE: Running task 7 of 339 (ID: 94, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_fetch)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_fetch: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_fetch: Succeeded
NOTE: Running task 8 of 339 (ID: 108, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_fetch)
NOTE: Running task 9 of 339 (ID: 199, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_unpack)
212.13.197.229
Connecting to dotat.at|212.13.197.229|:80... connected.
HTTP request sent, awaiting response... NOTE: Running task 10 of 339 (ID: 87, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_unpack)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_fetch: Started
NOTE: fetch http://kernel.org/pub/linux/kernel/v2.6/linux-2.6.32.tar.bz2
NOTE: package quilt-native-0.48-r7.1: task do_unpack: Started
NOTE: Unpacking ../../sources/quilt-0.48.tar.gz to tmp/work/i686-linux/quilt-native-0.48-r7.1/
NOTE: package quilt-native-0.48-r7.1: task do_unpack: Succeeded
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_unpack: Started
NOTE: Unpacking ../../sources/git_git.savannah.gnu.org.config.git_e35217687ee5f39b428119fe31c7e954f6de64f0.tar.gz to tmp/work/i686-linux/gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0/
NOTE: Unpacking ../openembedded/recipes/gnu-config/files/gnu-configize.in to tmp/work/i686-linux/gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0/
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_unpack: Succeeded
NOTE: Running task 11 of 339 (ID: 200, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_patch)
--2011-03-17 11:11:17--  http://ftp.funet.fi/pub/CPAN/src/perl-5.10.1.tar.gz
Resolving ftp.funet.fi... 193.166.3.2
Connecting to ftp.funet.fi|193.166.3.2|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 14117518 (13M) [application/x-gzip]
Saving to: `/home/nahsan/sources/perl-5.10.1.tar.gz'

     0K .......... ..200 OK
Length: 46520 (45K) [application/x-tar]
Saving to: `/home/nahsan/sources/unifdef-2.6.tar.gz'

     0K .......... .................. ...... .......... ..........  0% 63.9K 3m35s
    50K .......... ........ .......... .......... .....     100% 67.8K=0.7s

2011-03-17 11:11:19 (67.8 KB/s) - `/home/nahsan/sources/unifdef-2.6.tar.gz' saved [46520/46520]

...... .......... .......... ..........  0%  221K 2m18s
   100K .....NOTE: package quilt-native-0.48-r7.1: task do_patch: Started
NOTE: Applying patch 'install.patch' (../openembedded/recipes/quilt/quilt-0.48/install.patch)
NOTE: Applying patch 'no_rm_symlinks.patch' (../openembedded/recipes/quilt/quilt-0.48/no_rm_symlinks.patch)
NOTE: Applying patch 'use-cp-for-patch-backup.patch' (../openembedded/recipes/quilt/quilt-0.48/use-cp-for-patch-backup.patch)
NOTE: Running task 12 of 339 (ID: 193, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_setscene)
NOTE: Applying patch 'dont-allow-optional-quiltrc.patch' (../openembedded/recipes/quilt/quilt-0.48/dont-allow-optional-quiltrc.patch)
NOTE: Applying patch 'fix_new_GNU_patch_detection.patch' (../openembedded/recipes/quilt/quilt-0.48/fix_new_GNU_patch_detection.patch)
NOTE: package quilt-native-0.48-r7.1: task do_patch: Succeeded
NOTE: package perl-native-5.10.1-r10: task do_setscene: Started
NOTE: package perl-native-5.10.1-r10: task do_setscene: Succeeded
NOTE: Running task 13 of 339 (ID: 208, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_configure)
NOTE: package quilt-native-0.48-r7.1: task do_configure: Started
NOTE: Running task 14 of 339 (ID: 192, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_fetch)
NOTE: package perl-native-5.10.1-r10: task do_fetch: Started
NOTE: fetch http://ftp.funet.fi/pub/CPAN/src/perl-5.10.1.tar.gz
199.6.1.164, 130.239.17.4, 149.20.4.69, ...
Connecting to kernel.org|199.6.1.164|:80... ..... .......... .......connected.
HTTP request sent, awaiting response... ... .......... ..NOTE: package unifdef-native-2.6-0: task do_fetch: Succeeded
........  1%  113K 2m12s
   150K .......... .......... .200 OK
Length: 64424138 (61M) [application/x-bzip2]
Saving to: `/home/nahsan/sources/linux-2.6.32.tar.bz2'

     0K .....NOTE: Running task 15 of 339 (ID: 213, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_unpack)
NOTE: package unifdef-native-2.6-0: task do_unpack: Started
NOTE: Unpacking ../../sources/unifdef-2.6.tar.gz to tmp/work/i686-linux/unifdef-native-2.6-0/
NOTE: package unifdef-native-2.6-0: task do_unpack: Succeeded
....... .......... ........ ........NOTE: Running task 16 of 339 (ID: 214, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_patch)
NOTE: package unifdef-native-2.6-0: task do_patch: Started
NOTE: package unifdef-native-2.6-0: task do_patch: Succeeded
.......  1% 96.1K 2m14s
   200K ........... .......... .......... ........ .......... ..........  0% 95.7K 10m57s
    50K ....NOTE: package quilt-native-0.48-r7.1: task do_configure: Succeeded
NOTE: Running task 17 of 339 (ID: 222, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_configure)
NOTE: package unifdef-native-2.6-0: task do_configure: Started
NOTE: package unifdef-native-2.6-0: task do_configure: Succeeded
NOTE: Running task 18 of 339 (ID: 209, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_qa_configure)
.... .......... ..........  1%  187K 2m1s
   250K ........ .......... .......... ........... .......... .............. .......... ..........  2%  135K 1m57s
   300K ......... ..........  0% 97.1K 10m52s
   100K .......... .......... .......... ..NOTE: package quilt-native-0.48-r7.1: task do_qa_configure: Started
NOTE: package quilt-native-0.48-r7.1: task do_qa_configure: Succeeded
NOTE: Running task 19 of 339 (ID: 223, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_qa_configure)
NOTE: package unifdef-native-2.6-0: task do_qa_configure: Started
NOTE: package unifdef-native-2.6-0: task do_qa_configure: Succeeded
NOTE: Running task 20 of 339 (ID: 210, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_compile)
NOTE: package quilt-native-0.48-r7.1: task do_compile: Started
NOTE: Running task 21 of 339 (ID: 224, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_compile)
NOTE: package unifdef-native-2.6-0: task do_compile: Started
........ ..........  0%  919K 7m37s
   150K ........ .......... .......... .......... ..........  2%  129K 1m55s..
   350K ....... ............... .......... .......... ........ ...........NOTE: package unifdef-native-2.6-0: task do_compile: Succeeded
NOTE: Running task 22 of 339 (ID: 215, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_install)
 .............. ... ...........  2%  142K 1m52s
   400K ..............  0% 73.7K 9m15s
   200K .... .......... .....NOTE: package quilt-native-0.48-r7.1: task do_compile: Succeeded
NOTE: package unifdef-native-2.6-0: task do_install: Started
NOTE: package unifdef-native-2.6-0: task do_install: Succeeded
NOTE: Running task 23 of 339 (ID: 201, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_install)
......... ...... .......... ..........  3%  188K 1m47s
   450K .............. ...NOTE: package quilt-native-0.48-r7.1: task do_install: Started
NOTE: Running task 24 of 339 (ID: 216, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_populate_sysroot)
NOTE: package unifdef-native-2.6-0: task do_populate_sysroot: Started
NOTE: package unifdef-native-2.6-0: task do_populate_sysroot: Succeeded
.... .......... .......... ................ ........ ..........  3%  150K 1m45s
   500K .NOTE: package quilt-native-0.48-r7.1: task do_install: Succeeded
NOTE: Running task 25 of 339 (ID: 179, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_setscene)
NOTE: package m4-native-1.4.14-r0.1: task do_setscene: Started
NOTE: package m4-native-1.4.14-r0.1: task do_setscene: Succeeded
NOTE: Running task 26 of 339 (ID: 202, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_populate_sysroot)
......... .......... ..... .............  0% 66.7K 10m32s
   250K ....... .......... ..........  3%  184K 1m42s
   550K ........NOTE: package quilt-native-0.48-r7.1: task do_populate_sysroot: Started
NOTE: package quilt-native-0.48-r7.1: task do_populate_sysroot: Succeeded
NOTE: Running task 27 of 339 (ID: 178, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_fetch)
NOTE: package m4-native-1.4.14-r0.1: task do_fetch: Started
NOTE: package m4-native-1.4.14-r0.1: task do_fetch: Succeeded
NOTE: Running task 28 of 339 (ID: 88, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_patch)
.... ........ .............. ............ ... ...............NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_patch: Started
NOTE: Applying patch 'config-guess-uclibc.patch' (../openembedded/recipes/gnu-config/gnu-config-git/config-guess-uclibc.patch)
NOTE: Running task 29 of 339 (ID: 171, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_unpack)
NOTE: package m4-native-1.4.14-r0.1: task do_unpack: Started
NOTE: Unpacking ../../sources/m4-1.4.14.tar.bz2 to tmp/work/i686-linux/m4-native-1.4.14-r0.1/
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_patch: Succeeded
. ..........  4%  158K 1m40s
   600K .... ...........NOTE: package m4-native-1.4.14-r0.1: task do_unpack: Succeeded
NOTE: Running task 30 of 339 (ID: 96, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_configure)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_configure: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_configure: Succeeded
NOTE: Running task 31 of 339 (ID: 172, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_patch)
..... ..........  0% 76.7K 11m2s
   300K ...... .......... .......... .......... .............  4%  129K 1m40s
   650K ........ .......... .NOTE: package m4-native-1.4.14-r0.1: task do_patch: Started
NOTE: Applying patch 'f13-compile.patch' (../openembedded/recipes/m4/files/f13-compile.patch)
NOTE: Applying patch 'm4-uclibc-sched_param-def.patch' (../openembedded/recipes/m4/files/m4-uclibc-sched_param-def.patch)
NOTE: package m4-native-1.4.14-r0.1: task do_patch: Succeeded
NOTE: Running task 32 of 339 (ID: 97, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_qa_configure)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_qa_configure: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_qa_configure: Succeeded
NOTE: Running task 33 of 339 (ID: 53, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_setscene)
....... ............ ............ ....... .NOTE: package autoconf-native-2.65-r13.1: task do_setscene: Started
NOTE: package autoconf-native-2.65-r13.1: task do_setscene: Succeeded
NOTE: Running task 34 of 339 (ID: 98, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_compile)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_compile: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_compile: Succeeded
NOTE: Running task 35 of 339 (ID: 52, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_fetch)
.............. ..........  5%  107K 1m41s.
   700K .... ...........  0% 70.8K 11m33s
   350K ..NOTE: package autoconf-native-2.65-r13.1: task do_fetch: Started
NOTE: package autoconf-native-2.65-r13.1: task do_fetch: Succeeded
NOTE: Running task 36 of 339 (ID: 89, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_install)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_install: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_install: Succeeded
NOTE: Running task 37 of 339 (ID: 45, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_unpack)
............. .......... ...... ............. ......... ...........NOTE: package autoconf-native-2.65-r13.1: task do_unpack: Started
NOTE: Unpacking ../../sources/autoconf-2.65.tar.bz2 to tmp/work/i686-linux/autoconf-native-2.65-r13.1/
NOTE: Running task 38 of 339 (ID: 90, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_populate_sysroot)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_populate_sysroot: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_populate_sysroot: Succeeded
NOTE: Running task 39 of 339 (ID: 67, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_setscene)
.. .......... ..........  0% 81.3K 11m42s
   400K . ..NOTE: package automake-native-1.11.1-r4.2: task do_setscene: Started
NOTE: package automake-native-1.11.1-r4.2: task do_setscene: Succeeded
NOTE: package autoconf-native-2.65-r13.1: task do_unpack: Succeeded
NOTE: Running task 40 of 339 (ID: 46, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_patch)
........  5% 66.7K 1m47s
   750K .......... ................... ...... ............NOTE: package autoconf-native-2.65-r13.1: task do_patch: Started
NOTE: Applying patch 'program_prefix.patch' (../openembedded/recipes/autoconf/autoconf-2.65/program_prefix.patch)
NOTE: Applying patch 'autoreconf-exclude.patch' (../openembedded/recipes/autoconf/autoconf-2.65/autoreconf-exclude.patch)
NOTE: Running task 41 of 339 (ID: 66, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_fetch)
NOTE: package automake-native-1.11.1-r4.2: task do_fetch: Started
NOTE: package automake-native-1.11.1-r4.2: task do_fetch: Succeeded
NOTE: Applying patch 'autoreconf-foreign.patch' (../openembedded/recipes/autoconf/autoconf-2.65/autoreconf-foreign.patch)
NOTE: Applying patch 'autoheader-nonfatal-warnings.patch' (../openembedded/recipes/autoconf/autoconf-2.65/autoheader-nonfatal-warnings.patch)
. ..... ......... ............ ..........NOTE: Applying patch 'autoreconf-gnuconfigize.patch' (../openembedded/recipes/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch)
NOTE: Applying patch 'config-site.patch' (../openembedded/recipes/autoconf/autoconf-2.65/config-site.patch)
NOTE: Applying patch 'autoconf-dont-execute-perl.patch' (../openembedded/recipes/autoconf/autoconf-2.65/autoconf-dont-execute-perl.patch)
NOTE: Applying patch 'fix_path_xtra.patch' (../openembedded/recipes/autoconf/autoconf-2.65/fix_path_xtra.patch)
NOTE: package autoconf-native-2.65-r13.1: task do_patch: Succeeded
NOTE: Running task 42 of 339 (ID: 59, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_unpack)
NOTE: package automake-native-1.11.1-r4.2: task do_unpack: Started
NOTE: Unpacking ../../sources/automake-1.11.1.tar.bz2 to tmp/work/i686-linux/automake-native-1.11.1-r4.2/
..--2011-03-17 11:11:25--  ftp://ftp.gnu.org/gnu/libtool/libtool-2.4.tar.gz
           => `/home/nahsan/sources/libtool-2.4.tar.gz'
Resolving ftp.gnu.org... ..  5% 86.0K 1m49s
   800K ....... ........ ........  0% 64.6K 12m11s
   450K .........NOTE: Running task 43 of 339 (ID: 81, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_setscene)
NOTE: package automake-native-1.11.1-r4.2: task do_unpack: Succeeded
NOTE: package libtool-native-2.4-r28.1: task do_setscene: Started
NOTE: package libtool-native-2.4-r28.1: task do_setscene: Succeeded
NOTE: Running task 44 of 339 (ID: 60, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_patch)
..... ....... ............140.186.70.20
Connecting to ftp.gnu.org|140.186.70.20|:21... ... ...... .............NOTE: package automake-native-1.11.1-r4.2: task do_patch: Started
NOTE: Applying patch '0001-py-compile-compile-only-optimized-byte-code.patch' (../openembedded/recipes/automake/files/0001-py-compile-compile-only-optimized-byte-code.patch)
NOTE: Applying patch 'automake-dont-execute-perl.patch' (../openembedded/recipes/automake/automake-1.11.1/automake-dont-execute-perl.patch)
NOTE: Running task 45 of 339 (ID: 80, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_fetch)
NOTE: package libtool-native-2.4-r28.1: task do_fetch: Started
NOTE: fetch ftp://ftp.gnu.org/gnu/libtool/libtool-2.4.tar.gz
NOTE: package automake-native-1.11.1-r4.2: task do_patch: Succeeded
... ..... .--2011-03-17 11:11:25--  ftp://invisible-island.net/ncurses/5.7/ncurses-5.7-20110108-patch.sh.bz2
           => `/home/nahsan/sources/ncurses-5.7-20110108-patch.sh.bz2'
Resolving invisible-island.net... connected.
Logging in as anonymous ... ......... .........  6% 82.4K 1m52s
   850K .......... ........  0% 84.4K 12m11s
   500K ................. ... .......... ............ .......... ........ .................  6% 77.5K 1m54s. ...
   900K .......Logged in!
==> SYST ... ..  0% 81.8K 12m14s
   550K ................ ..... ...done.    ==> PWD ... ........ ...216.194.248.64
Connecting to invisible-island.net|216.194.248.64|:21... .......... ......... .done.
==> TYPE I ... ............. .........connected.
Logging in as anonymous ...  ..........  0% 84.2K 12m14s
   600K ...... ....done.  ==> CWD /gnu/libtool ... ..........  6% 62.0K 1m59s
   950K .... .......... ........ ...done.
==> SIZE libtool-2.4.tar.gz ... .............. ....... .............. ..... ..2580417
==> PASV ... ...... ...........  7% 68.1K 2m2s
  1000K .......... .............  1% 49.3K 12m54s
   650K .......... .......done.    ==> RETR libtool-2.4.tar.gz ... .... ...... .......... .......... .........done.
Length: 2580417 (2.5M)
.
     0K .. ...........  7% 98.3K 2m2s...... ......
  1050K .......... ...............  1% 86.9K 12m49s
   700K ......... .......... ............. ......... ...... .............  7% 87.4K 2m2s
  1100K .............. ...... ........ .......... .......... .............. ........ ............... ... .......... .......  8%  122K 2m1s......  1% 45.8K 54s
    50K .......... .......... ..
  1150K ........  1% 59.1K 13m7s
   750K ............... .......... ..... ............ .......... ..........  8% 88.6K 2m1s
  1200K ............. .......... ......... .......... ..........  3% 74.0K 43s
   100K .......... .......... ........ .................. ......... ... ................ .............  1% 53.1K 13m31s
   800K ......... ...............  9% 81.5K 2m2s
  1250K . ....... ........  5% 96.1K 36s....
   150K ............ ........ ............. ............ ............... .. . ....................... ..........  9% 87.2K 2m3s
  1300K .............. ..........  1% 57.0K 13m47s. .......... ...
   850K .............. .......... ........ .. ................... ..........  7% 46.4K 39s
   200K .......  9% 88.6K 2m3s
  1350K .............. . ............... .......... .......... .......... ..........  9%  340K 32s
   250K ............. ............ . .................... .. .... ........... 10%  107K 2m2s........ .
  1400K ............ .......... ................ .............. . ...............  1% 32.1K 14m47s
   900K ............... 10% 56.3K 2m5s
  1450K .......... ......... ...... .............. .. .............. ............ 10% 68.3K 2m6s
  1500K ............. . .............. ............. .... .............. .............  1% 30.2K 15m48s. 11% 67.9K 2m7s
   950K .
  1550K ....... .......... 11% 18.4K 46s
   300K ......... ................ . ............. .............. ..... .......... 11% 78.5K 2m8s
  1600K .......... .......... ............ ................ .......... .......... .......... .......... 13% 45.9K 45s
   350K .......... ........... .......... ........... 11% 79.2K 2m8s. ..
  1650K ................... ....  1% 34.1K 16m30s.
  1000K .... .......... ..................... .. .................... .. ...... ............. 12% 61.4K 2m10s
  1700K ............... .. ................ ............ ......... ... ............... ....  1% 41.4K 16m54s.
  1050K ............ 12% 74.4K 2m10s.
  1750K ................ 15% 28.5K 48s.... ... ...
   400K .......... .................. ... .................. .............. .... 13% 74.6K 2m10sLogged in!
==> SYST ... 
  1800K .. ................. ............. .......done.    ==> PWD ...  ............... ... ....  1% 42.6K 17m13s.
  1100K ...........done.
==> TYPE I ...  .................. 13% 76.9K 2m10s ..
  1850K ............... ..done.  ==> CWD /ncurses/5.7 ... ....... ...... ................. .done.
==> SIZE ncurses-5.7-20110108-patch.sh.bz2 ... . .................. .. ..............827022
==> PASV ... . 13% 66.3K 2m11s
  1900K ..........  1% 47.4K 17m24s..
  1150K .... .................. ... ............... .... ............... ....... .done.    ==> RETR ncurses-5.7-20110108-patch.sh.bz2 ... ............ 14% 79.8K 2m11s.
  1950K ...... ............ .......  1% 68.9K 17m17s..
  1200K .....done.
Length: 827022 (808K)
...... .....
     0K ..... ............ ......... ........... ......... ........... 14% 82.3K 2m11s..
  2000K ....... .............. .........  1% 81.5K 17m5s.
  1250K ............ ......... ............ .......... ........ .......... 14% 79.1K 2m11s
  2050K .......... .......... .............. .......... ..........  2% 63.9K 17m1s
  1300K .......... ......... ............ .......... .......... 17% 11.9K 61s
   450K .......... .......... .......... ......... ............ ........... .......... 15% 84.2K 2m10s..
  2100K ........ ..... .......... ........... .. ..........  2%  109K 16m44s.
  1350K ............. .......... ............ ........... ............... .......... .. ......... 15% 79.4K 2m10s...
  2150K ........ ..... 19% 54.1K 57s........... ...
   500K ......  2% 76.1K 16m36s..
  1400K ............ ............ ............. ........... ............... ....... ..... ............ 15% 66.9K 2m11s...
  2200K .... ....... ............... ...........  2% 65.8K 16m33s.
  1450K ........  6% 15.3K 49s.....
    50K .. ............ ........ ........ ........... ............. ........... .............. 16% 61.8K 2m11s...
  2250K .... .... ................. ........ ..  2% 61.5K 16m32s.
  1500K .............. ............ ............. ............ ... ........... ........... ........ ..... 16% 62.5K 2m12s....
  2300K ........ ............... ...........  2% 64.4K 16m30s..
  1550K. .............. .. .......... ......... ....... 21% 18.8K 60s
   550K .......... ................. .......... ........... 17% 64.3K 2m12s
  2350K ............ ..... .......... ..........  2% 61.8K 16m30s.
  1600K ......... ...... ............ ........... ............ ............ ... 12% 17.8K 43s......... .....
   100K ....... 17% 58.9K 2m13s
  2400K .......... .............. .... ......  2% 61.1K 16m29s.
  1650K ................ ........ ............... ......... ........... ....... ........... .......... 17% 47.3K 2m15s
  2450K .......... .......... ............ ............. . .......... ..........  2% 41.0K 16m43s
  1700K .......... .......... ............... ........... 18% 96.2K 2m14s
  2500K .. ......... ............. ........  2%  121K 16m28s...
  1750K ............... ............. ........ .............. ......... . ............ .......... 23% 14.4K 65s.. ............. 18% 65.8K 2m14s
  2550K .
   600K ......... ............. .........  2% 71.7K 16m24s.
  1800K ................ ........ .............. .......... ........... .... ........... ............ 18% 71.6K 2m14s
  2600K ........ .... .............. ........  2% 70.7K 16m20s..
  1850K ............. .......... .......... 18% 13.8K 42s..... .........
   150K . ............ ............ ............. 19% 68.1K 2m14s
  2650K . ......... ............. .........  3% 69.2K 16m16s..
  1900K ............... ....... ................ .......... ........ ...... ........... ............ 19% 72.7K 2m13s
  2700K .......... ... ......... ...........  3% 73.6K 16m12s.
  1950K .............. ........ ............. .......... .............. .... ........ ............. 19% 74.1K 2m13s
  2750K ......... ..... ......... .........  3% 75.7K 16m7s..
  2000K ................ ...... ................... ........ ............. ... ....... .............. 20% 70.1K 2m13s
  2800K ... 25% 13.9K 69s....... .....
   650K ........... ........  3% 69.0K 16m4s
  2050K ................. ....... ................ ........ ................. ...... .. .............. 20% 69.5K 2m13s
  2850K ........ .......... ........ .......  3% 67.7K 16m2s.
  2100K ................ ...... ................. ...... 24% 13.9K 40s... ..........
   200K ...... ........ ............... 21% 68.8K 2m13s
  2900K ........ ... ............... .....  3% 70.2K 15m59s.
  2150K ................. ..... ............... .......... ................ ....... ...... .......... 21% 72.4K 2m12s
  2950K ........ ................ ......  3% 72.9K 15m55s.
  2200K ... ........... ....... ................ ......... ............... ..... ................ 21% 71.1K 2m12s
  3000K ...... .................. .....  3% 71.0K 15m52s.. .
  2250K .............. ....... ................ .. ......... ................ ............ ..............  3% 68.6K 15m50s.
  2300K ............. .. .......... 22% 47.2K 2m13s
  3050K .......... .......... ......... .......... ....... ........... 27% 12.2K 73s...... ..... ........
   700K ........ 22%  143K 2m12s
  3100K ....... ................. ............. ........... .......... ... ........... 22% 66.5K 2m11s
  3150K ............. ........... ............. 30% 11.7K 39s ........
   250K ... ............. 23% 58.8K 2m12s
  3200K ............  3% 22.4K 16m26s..
  2350K .......... .......... .......... .......... ..........  3% 1.81M 16m6s
  2400K .......... .......... .......... .......... .......... ..  3%  731K 15m47s....
  2450K .................. .. .................. .... ...... .............. .. ............. 23% 48.7K 2m12s
  3250K .......... ................... ....  3% 46.3K 15m53s..
  2500K ............... ..... ... ............. ........ ............... ....... ............... 23% 43.5K 2m13s
  3300K ............... ..... ......... ............. .............. .... ......... 24% 47.2K 2m14s
  3350K ........... ..........  4% 24.2K 16m23s
  2550K .......... .......... .......... .......... ............ .....  4%  529K 16m5s.
  2600K ......... 37% 12.7K 36s........
   300K . ..... ................ ........ ................ ..... ................. 24% 51.6K 2m14s
  3400K ....... ......... ....... .......  4% 49.8K 16m9s.
  2650K ................ ....... ................ ....... ....... ......... ...... ............... 25% 55.4K 2m14s
  3450K ...... ................. ......  4% 60.9K 16m8s.
  2700K ................. .......... .......... .......... .......... 29% 6.99K 83s
   750K .......... .......... .......... .......... ........ ....... ................ .. ..... ................. ...... ................. 25% 66.3K 2m14s
  3500K ...... ................. .....  4% 64.6K 16m7s..
  2750K ........ ........ ...... ................ ........ ................ ..... .... 43% 16.8K 32s............ 25% 65.2K 2m14s
  3550K .
   350K ...... ................ .......  4% 65.8K 16m5s
  2800K ................ ..... ................... ...... ...... ............ ...... ................. 26% 62.9K 2m13s
  3600K ....... ........... ........ ......  4% 61.8K 16m5s
  2850K ................. ....... .................. ... .... ................ ...... ................. 26% 56.0K 2m13s
  3650K ....... ................. .. .....  4% 55.5K 16m6s
  2900K ................ ........ ................ ....... ............. 49% 20.6K 27s... .....
   400K . ............... 26% 60.6K 2m13s
  3700K ........ ................. .....  4% 62.8K 16m5s
  2950K ................. ...... ........... ....... ....... ............... ...... ................ 27% 64.5K 2m13s.
  3750K ....... ....... ........... .....  4% 60.1K 16m5s
  3000K ................. ....... .................. ...... ............... .... .. ............... 27% 57.7K 2m13s.
  3800K ....... ................ .....  4% 58.1K 16m5s
  3050K ................. ....... ..... 31% 8.61K 88s
   800K .......... .......... .......... .......... .............. ...... ............. ................. ..... 55% 17.8K 24s... 33% 80.3K 82s..
   450K ..
   850K ...  4% 55.4K 16m6s
  3100K .......... .......... .......... 27% 41.2K 2m14s
  3850K .......... ................... ..... ................ ........ ................ ..... . ................. 28% 71.3K 2m13s.
  3900K ..... ................... ..  5% 47.1K 16m10s
  3150K .................... .... . ................ .............. ...... ........... .......... .......... 28% 44.8K 2m13s
  3950K ..... .................. ..  5% 50.0K 16m13s
  3200K ....................... . .................. .... . ..................... . ...................... 29% 58.4K 2m13s ..
  4000K ....................  5% 57.8K 16m13s
  3250K . .... 61% 16.0K 20s...........
   500K ....... . ................ ............ ............ 29% 57.2K 2m13s
  4050K ............ .. ........... ............. ........... ........... 29% 70.8K 2m12s
  4100K .......... ... ............ ................ ............ ............... .......... .......... ..........  5% 24.4K 16m34s
  3300K .......... .......... ....... 30% 72.2K 2m12s.
  4150K .......... .. ................ .. .............. .................  5%  118K 16m26s
  3350K . ... .......... ....................... .... ............ ...... 30% 75.0K 2m11s
  4200K ......... ........ ............... ..........  5%  113K 16m18s
  3400K .......... .......... .......... .......... ..........  5%  260M 16m3s
  3450K .. ................... ......... .......... .......... 35% 8.22K 86s
   900K ....... ................. ..... ................... .... 68% 15.0K 17s. ........
   550K ........... 30% 65.9K 2m10s ..
  4250K ..................  5% 69.2K 16m1s..
  3500K ... ..................... ........... .............. ............ .......... .......... ........... 31% 59.5K 2m10s .. ..
  4300K .......... ........  5% 59.6K 16m1s.
  3550K .... .................. ... ................. ........ ................. ....... ............ 31% 67.4K 2m10s
  4350K ........... ...... .......... ...... ...... .............. ............. 31% 52.7K 2m9s
  4400K .............. .............. ............ ... .......... ..........  5% 22.4K 16m23s
  3600K .......... .......... .......... .......... ..........  5%  253M 16m9s
  3650K .......... .......... .......... .......... ..........  5%  584M 15m55s.
  3700K . ....... ................ .......... 32% 55.7K 2m9s
  4450K ....... ................ ..... ..................... .... ...................  5% 74.1K 15m52s .
  3750K ................ ....... ........... ....... ... .... 32% 67.8K 2m9s
  4500K ................... ..... .................. ........ .............  6% 72.4K 15m50s..
  3800K ....... ................. ....... .......... 37% 9.43K 88s..... ... 74% 9.93K 14s..... 33% 66.0K 2m8s
  4550K ...
   950K .....
   600K ........ .......... ................. ....... .............  6% 64.6K 15m49s...
  3850K ....... ................. ......... ............... ..... ... 33% 62.1K 2m8s
  4600K ...... ........... ........ ................ .......... .............  6% 61.5K 15m48s..
  3900K ........ ............. .......... ............... . .... . 33% 63.9K 2m7s
  4650K ............... .................... .......... ............ .......... .... 34% 61.7K 2m7s
  4700K .. ............ ............. ................. .......... ..........  6% 31.0K 15m59s
  3950K .......... .......... .......... .......... ..........  6%  390M 15m46s
  4000K ........ ............. .... ...... ..... 34% 62.6K 2m6s
  4750K ............. ................ ........... .......... .......... .......... ..........  6% 74.2K 15m44s
  4050K .......... ................ ......... ................ .. 39% 13.1K 86s..... 80% 13.2K 11s... .....
  1000K ...... ...
   650K .......... 34% 71.4K 2m5s
  4800K ...........  6%  108K 15m38s.
  4100K .......... ............... ........ ............... .......... .............. .......... .. ............ ....... ..... 35% 71.8K 2m5s
  4850K ...........  6% 71.7K 15m36s..
  4150K .......... ............... ............ ............. ............... .. .... ....... 35% 69.8K 2m4s
  4900K ............... ............. ............... .............. .. ... ........ .......... .......... ..........  6% 37.4K 15m43s
  4200K .......... .......... .......... .......... ......... 35% 67.8K 2m3s
  4950K .............  6%  469K 15m32s.
  4250K .......... .............. ........ ............... ........... ............ .......... ......... .... ....... .... 36% 76.5K 2m3s
  5000K ...........  6% 77.6K 15m29s.
  4300K ........... ............. ........... ............. .......... ............. ........... ............. ... 41% 13.9K 85s..... 36% 76.2K 2m2s... 86% 13.8K 7s
  5050K ....
  1050K .......  6% 73.5K 15m27s.
   700K ..... .............. .............. ............. .............. 36% 77.7K 2m1s
  5100K ....... ....... .....
  4350K .......... .......... .......... .......... ..........  6% 66.2K 15m26s
  4400K ............. .. ........ ............ .......... ............ .......... ............... ........ 37% 79.2K 2m0s..
  5150K ...........  7% 93.3K 15m22s.
  4450K .......... ............. ....... .............. ............ ....... ..... ... ........ ........... ....... 37% 86.3K 1m59s....
  5200K ............  7% 91.2K 15m18s..
  4500K .......... ........... .......... .............. .......... .............. ............... ..... ... .......... 38% 84.6K 1m58s
  5250K .... .......  7% 87.3K 15m14s.
  4550K .......... ............ .......... ............. ........... ............. .......... ............. ....... 38% 94.0K 1m57s..
  5300K ...........  7% 91.8K 15m10s..
  4600K ............ ....... .. ....... ....... ........... .......... ............ ........... .......... ............. 38% 83.9K 1m57s.
  5350K ..........  7% 83.5K 15m7s.
  4650K .......... ........... ........... ............... .......... ...... 43% 12.5K 83s.... ......... 92% 12.4K 4s.... ....... .....
  1100K ....... 39% 84.6K 1m56s.
  5400K .
   750K ..........  7% 83.0K 15m4s.
  4700K ............. ........ .......... .............. ............. ............ 39% 75.7K 1m55s
  5450K ... ........... .... ........... .......... .......... ..........  7% 64.4K 15m4s
  4750K .......... ............. .......... ............ .......... ............... .......... ............ 39% 88.0K 1m54s.
  5500K .........  7%  115K 14m59s.
  4800K .............. ......... .... ......... .. ......... ............ ......... ............. .......... ............ 40% 89.1K 1m53s..
  5550K ........  7% 88.8K 14m55s..
  4850K ............. ....... ............... .......... ............. ........... ........... . ..... ...... .......... 40% 81.1K 1m53s..
  5600K ..........  7% 78.6K 14m53s.
  4900K ............ ......... ............ ............ ............... ........ ............ .......... ............ 40% 81.3K 1m52s.
  5650K .........  7% 85.2K 14m50s.
  4950K ...... ...... .. ........ ............. .......... ............. ......... ........... ............. ........... 41% 96.3K 1m51s..
  5700K .........  7% 95.8K 14m46s
  5000K .............. ......... .............. .... 45% 12.6K 81s...... .. 99% 12.8K 1s........... ....
  1150K .... .
   800K .............. ........... ........... 41%  102K 1m50s..
  5750K .........  8%  102K 14m43s
  5050K .............. ....... ............... ..........                                               100% 15.5K=57s

 ............. ........ ............ .... ........2011-03-17 11:12:37 (14.2 KB/s) - `/home/nahsan/sources/ncurses-5.7-20110108-patch.sh.bz2' saved [827022]

--2011-03-17 11:12:37--  ftp://invisible-island.net/ncurses/5.7/ncurses-5.7-20110115.patch.gz
           => `/home/nahsan/sources/ncurses-5.7-20110115.patch.gz'
Resolving invisible-island.net... 216.194.248.64
Connecting to invisible-island.net|216.194.248.64|:21... .....connected.
Logging in as anonymous ... ..... ......... 42% 53.3K 1m50s
  5800K .......... .......... .......... .......... ......  8% 54.8K 14m43s
  5100K .......... .......... .......... ............. ... ........... 42%  451K 1m48s.
  5850K ....  8%  445K 14m35s.
  5150K ................... .. .................... .. .................... .. ................... .. ....... .............  8% 97.3K 14m32s. 42% 92.0K 1m47s
  5200K ..
  5900K .................... . ...................... . ..................... .. .. ................... . .....................  8% 74.6K 14m30s
  5250K ... 43% 74.0K 1m47s
  5950K ............ ........... .......... 47% 17.6K 78s... ..
  1200K ........... ............... .......... .......... .......... ............  8% 88.5K 14m27s. 43% 88.9K 1m46s
  5300K ...
  6000K .................. .... ................... .... .. ................. ... ..................... ............ 43% 78.7K 1m45s
  6050K ........... ....... ...... ... ..........  8% 52.5K 14m29s
  5350K .......... .......... ............... .... ................ ..... ...............  8%  152K 14m24s.
  5400K ... 44% 76.8K 1m44s.
  6100K ............... .......... .......... .......... ..........  8% 39.8K 14m28s
  5450K .......... .......... ... .......... .......... .......... .......... 44% 33.8K 1m45s
  6150K .......... ................... ... .......... ............  8% 70.0K 14m27s..
  5500K ........... .... ................. ...... .......... .......... 44% 49.8K 1m44s.
  6200K .......... ......... ..........  8% 65.6K 14m26s.
  5550K ........... ....... ........... ........... ........... ....... ............ 45% 69.3K 1m44s.
  6250K ....... ............. .......  8% 77.4K 14m24s
  5600K ............ ........ ............ ......... ............ ....... ........... 45% 88.9K 1m43s.
  6300K ......... ............ .......  8% 87.7K 14m22s
  5650K ............. ....... ............ ......... ........... ........ ............ 46% 89.4K 1m42s.
  6350K ....... ............. .......  9% 89.3K 14m19s
  5700K ............. ........ ........... ......... ............ ....... ............ 46% 87.7K 1m41s
  6400K ........ ........... ..........  9% 89.2K 14m16s
  5750K ............ ....... ............ ......... ............ ........ .......... 46% 86.9K 1m40s.
  6450K ........ ............. .......  9% 84.3K 14m14s
  5800K ............. ....... ............ .......... ............ ....... .............. 47% 84.7K 1m40s
  6500K ............ ......... ............ .......  9% 85.9K 14m12s
  5850K ............ ......... ........... ......... ............ ....... ............ 47% 84.0K 99s
  6550K ......... .......... ..........  9% 83.2K 14m10s
  5900K ............ ....... ............ ......... ............ ....... ............ 47% 88.6K 98s..
  6600K ...... ............. .......  9% 91.7K 14m7s
  5950K ............. ....... .............. ...... ............. ...Logged in!
==> SYST ... .... ............ 48% 87.2K 97s
  6650K ......... ............ .......  9% 83.9K 14m5s
  6000K ....done.    ==> PWD ... ......... ....... .............. ...... ....done.
==> TYPE I ... ......... ....... ............ 48% 76.5K 96s
  6700K .......done.  ==> CWD /ncurses/5.7 ... .. ............ ......  9% 73.4K 14m4s
  6050K ......... .......... 49% 4.85K 83s
  1250K .......... .......... .......... .......... .......... 51%  197M 76s
  1300K .......... .......... .......... .......... .......... 53%  372M 71s
  1350K .......... .......... .......... .......... ........done.
==> SIZE ncurses-5.7-20110115.patch.gz ... 69523
==> PASV ... .. 55%  138K 66s.... .......... .......... .......... 48% 59.2K 96s
  6750K .......... ........
  1400K ... .............. .done.    ==> RETR ncurses-5.7-20110115.patch.gz ... ........... ............. .......... ...........done.
Length: 69523 (68K)
... 49% 77.5K 95s
  6800K ....
     0K ....... ....... ........ ..........  9% 34.4K 14m9s
  6100K .......... .......... .......... .......... ....... ........  9%  917K 14m2s
  6150K ................. .... .................. .... ................... .............. 49% 70.3K 95s
  6850K ...... . ........... .......... ............ .............. ...... .......... ..........  9% 48.5K 14m4s
  6200K .......... .......... ..................... 50% 74.6K 94s
  6900K ............ .. ...... ..... .............. ..........  9%  122K 14m0s
  6250K .......... .......... ................ .. ............. ................... ...... ............... 10%  128K 13m56s.
  6300K ........ 50% 70.1K 93s
  6950K ..... ......... .... ...... .......... .............. ......... ................ ........ .................. 10% 90.9K 13m54s .
  6350K .................... 50% 82.1K 92s
  7000K ..... .................... . ....... 57% 13.6K 63s............ ... .. .....
  1450K ................ .... ................. 10% 90.5K 13m52s.
  6400K .... ................... ... 51% 82.9K 92s
  7050K ..................... ... .................. 73% 13.9K 1s... ... .......
    50K .......... ..... .. .................. 10% 76.2K 13m50s.
  6450K .... .................. .... 51% 76.1K 91s
  7100K ..................... .... ................... .. ....................... .. .................. 10% 77.6K 13m49s.
  6500K . .. ......... ........... 51% 78.5K 90s .
  7150K ...................... ..... .................. .. .................... .. .................... 10% 73.9K 13m48s.
  6550K                                    100% 11.1K=5.2s

 .. .................... 52% 73.5K 90s .
  7200K ...............2011-03-17 11:12:56 (13.0 KB/s) - `/home/nahsan/sources/ncurses-5.7-20110115.patch.gz' saved [69523]

.... .... ................ ... .. ...................NOTE: Running task 46 of 339 (ID: 319, virtual:native:/home/nahsan/openembedded/openembedded/recipes/ncurses/ncurses_5.7.bb, do_setscene)
NOTE: package ncurses-native-5.7+20110115-r16: task do_setscene: Started
NOTE: package ncurses-native-5.7+20110115-r16: task do_setscene: Succeeded
NOTE: Running task 47 of 339 (ID: 318, virtual:native:/home/nahsan/openembedded/openembedded/recipes/ncurses/ncurses_5.7.bb, do_fetch)
NOTE: package ncurses-native-5.7+20110115-r16: task do_fetch: Started
NOTE: fetch ftp://invisible-island.net/ncurses/5.7/ncurses-5.7-20110108-patch.sh.bz2
NOTE: fetch ftp://invisible-island.net/ncurses/5.7/ncurses-5.7-20110115.patch.gz
.. .. .................. 10% 70.1K 13m47s.
  6600K .. ............NOTE: package ncurses-native-5.7+20110115-r16: task do_fetch: Succeeded
... 52% 68.6K 89s
  7250K ............. ....NOTE: Running task 48 of 339 (ID: 311, virtual:native:/home/nahsan/openembedded/openembedded/recipes/ncurses/ncurses_5.7.bb, do_unpack)
NOTE: package ncurses-native-5.7+20110115-r16: task do_unpack: Started
NOTE: Unpacking ../../sources/ncurses-5.7.tar.gz to tmp/work/i686-linux/ncurses-native-5.7+20110115-r16/
NOTE: Unpacking ../../sources/ncurses-5.7-20110115.patch.gz to tmp/work/i686-linux/ncurses-native-5.7+20110115-r16/
NOTE: Unpacking ../openembedded/recipes/ncurses/ncurses-5.7/config.cache to tmp/work/i686-linux/ncurses-native-5.7+20110115-r16/
NOTE: package ncurses-native-5.7+20110115-r16: task do_unpack: Succeeded
.. ...... ..............NOTE: Running task 49 of 339 (ID: 123, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_setscene)
NOTE: package pkgconfig-native-0.23-r8.1: task do_setscene: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_setscene: Succeeded
 ........... 59% 13.4K 61s........ .......... ....... ..
  1500K .......NOTE: Running task 50 of 339 (ID: 122, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_fetch)
NOTE: package pkgconfig-native-0.23-r8.1: task do_fetch: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_fetch: Succeeded
..... 52% 65.6K 88s..
  7300K .. .......... .................. ............ 10% 42.0K 13m50s..
  6650K .......... .......... .......... .. ................. .... .... .............. 10%  189K 13m45s..
  6700K .... ................. .... 53% 73.1K 88s.
  7350K .......NOTE: Running task 51 of 339 (ID: 115, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_unpack)
NOTE: package pkgconfig-native-0.23-r8.1: task do_unpack: Started
NOTE: Unpacking ../../sources/pkg-config-0.23.tar.gz to tmp/work/i686-linux/pkgconfig-native-0.23-r8.1/
NOTE: Unpacking ../openembedded/recipes/pkgconfig/pkgconfig-0.23/glibconfig-sysdefs.h to tmp/work/i686-linux/pkgconfig-native-0.23-r8.1/
NOTE: package pkgconfig-native-0.23-r8.1: task do_unpack: Succeeded
NOTE: Running task 52 of 339 (ID: 312, virtual:native:/home/nahsan/openembedded/openembedded/recipes/ncurses/ncurses_5.7.bb, do_patch)
NOTE: package ncurses-native-5.7+20110115-r16: task do_patch: Started
NOTE: Applying patch 'ncurses-5.7-20110108-patch.sh' (tmp/work/i686-linux/ncurses-native-5.7+20110115-r16/ncurses-5.7-20110108-patch.sh)
........ ....... ............... ... ......NOTE: Applying patch 'ncurses-5.7-20110115.patch' (tmp/work/i686-linux/ncurses-native-5.7+20110115-r16/ncurses-5.7-20110115.patch)
NOTE: Applying patch 'tic-hang.patch' (../openembedded/recipes/ncurses/ncurses-5.7/tic-hang.patch)
NOTE: package ncurses-native-5.7+20110115-r16: task do_patch: Succeeded
........... ...... ............... 10% 77.1K 13m44s.
  6750K .... ........NOTE: Running task 53 of 339 (ID: 291, virtual:native:/home/nahsan/openembedded/openembedded/recipes/readline/readline_5.2.bb, do_setscene)
NOTE: package readline-native-5.2-r8: task do_setscene: Started
NOTE: package readline-native-5.2-r8: task do_setscene: Succeeded
........... ... 53% 79.3K 87s.
  7400K ................ ..... ......NOTE: Running task 54 of 339 (ID: 290, virtual:native:/home/nahsan/openembedded/openembedded/recipes/readline/readline_5.2.bb, do_fetch)
NOTE: package readline-native-5.2-r8: task do_fetch: Started
NOTE: package readline-native-5.2-r8: task do_fetch: Succeeded
....... ... ..... .............. ........ .........NOTE: Running task 55 of 339 (ID: 283, virtual:native:/home/nahsan/openembedded/openembedded/recipes/readline/readline_5.2.bb, do_unpack)
NOTE: package readline-native-5.2-r8: task do_unpack: Started
NOTE: Unpacking ../../sources/readline-5.2.tar.gz to tmp/work/i686-linux/readline-native-5.2-r8/
NOTE: Unpacking ../openembedded/recipes/readline/readline-5.2/acinclude.m4 to tmp/work/i686-linux/readline-native-5.2-r8/
NOTE: package readline-native-5.2-r8: task do_unpack: Succeeded
..... 10% 83.5K 13m42s.
  6800K .... .................. ... 54% 84.5K 86s.
  7450K ................ .NOTE: Running task 56 of 339 (ID: 116, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_patch)
NOTE: package pkgconfig-native-0.23-r8.1: task do_patch: Started
NOTE: Applying patch 'autofoo.patch' (../openembedded/recipes/pkgconfig/pkgconfig-0.23/autofoo.patch)
NOTE: Applying patch 'sysrootfix.patch' (../openembedded/recipes/pkgconfig/pkgconfig-0.23/sysrootfix.patch)
NOTE: package pkgconfig-native-0.23-r8.1: task do_patch: Succeeded
...... ............... ..... ................ ...... .NOTE: Running task 57 of 339 (ID: 333, virtual:native:/home/nahsan/openembedded/openembedded/recipes/tcltk/tcl_8.5.8.bb, do_setscene)
NOTE: package tcl-native-8.5.8-r8: task do_setscene: Started
NOTE: package tcl-native-8.5.8-r8: task do_setscene: Succeeded
............. 10% 89.0K 13m40s..
  6850K .... .............. ..... ... 54% 86.1K 85s.
  7500K ................ ..... ................ ..... ......NOTE: Running task 58 of 339 (ID: 332, virtual:native:/home/nahsan/openembedded/openembedded/recipes/tcltk/tcl_8.5.8.bb, do_fetch)
NOTE: package tcl-native-8.5.8-r8: task do_fetch: Started
NOTE: package tcl-native-8.5.8-r8: task do_fetch: Succeeded
NOTE: Running task 59 of 339 (ID: 325, virtual:native:/home/nahsan/openembedded/openembedded/recipes/tcltk/tcl_8.5.8.bb, do_unpack)
.......... .... ................ 10% 84.1K 13m38s.
  6900K .... .........NOTE: package tcl-native-8.5.8-r8: task do_unpack: Started
NOTE: Unpacking ../../sources/tcl8.5.8-src.tar.gz to tmp/work/i686-linux/tcl-native-8.5.8-r8/
NOTE: package tcl-native-8.5.8-r8: task do_unpack: Succeeded
........ ... 54% 85.3K 85s.
  7550K ................ ..... ................ ..... ................. ..... .............NOTE: Running task 60 of 339 (ID: 284, virtual:native:/home/nahsan/openembedded/openembedded/recipes/readline/readline_5.2.bb, do_patch)
NOTE: package readline-native-5.2-r8: task do_patch: Started
NOTE: Applying patch 'fix-includes.patch' (../openembedded/recipes/readline/readline-5.2/fix-includes.patch)
NOTE: Applying patch 'configure_fix.patch' (../openembedded/recipes/readline/readline-5.2/configure_fix.patch)
NOTE: Applying patch 'darwin.patch' (../openembedded/recipes/readline/darwin.patch)
NOTE: package readline-native-5.2-r8: task do_patch: Succeeded
NOTE: Running task 61 of 339 (ID: 326, virtual:native:/home/nahsan/openembedded/openembedded/recipes/tcltk/tcl_8.5.8.bb, do_patch)
 .. 11% 81.8K 13m36s.
  6950K .... ................. ... 55% 82.3K 84s.
  7600K ...........NOTE: package tcl-native-8.5.8-r8: task do_patch: Started
NOTE: Applying patch 'confsearch.diff' (../openembedded/recipes/tcltk/tcl-8.5.8/confsearch.diff)
NOTE: Applying patch 'manpages.diff' (../openembedded/recipes/tcltk/tcl-8.5.8/manpages.diff)
NOTE: Applying patch 'non-linux.diff' (../openembedded/recipes/tcltk/tcl-8.5.8/non-linux.diff)
NOTE: Applying patch 'rpath.diff' (../openembedded/recipes/tcltk/tcl-8.5.8/rpath.diff)
NOTE: Applying patch 'tcllibrary.diff' (../openembedded/recipes/tcltk/tcl-8.5.8/tcllibrary.diff)
NOTE: Applying patch 'tclpackagepath.diff' (../openembedded/recipes/tcltk/tcl-8.5.8/tclpackagepath.diff)
NOTE: Applying patch 'tclprivate.diff' (../openembedded/recipes/tcltk/tcl-8.5.8/tclprivate.diff)
NOTE: Applying patch 'mips-tclstrtod.patch' (../openembedded/recipes/tcltk/tcl-8.5.8/mips-tclstrtod.patch)
NOTE: package tcl-native-8.5.8-r8: task do_patch: Succeeded
..... ........ ............... ..... .........NOTE: Running task 62 of 339 (ID: 305, virtual:native:/home/nahsan/openembedded/openembedded/recipes/sqlite/sqlite3_3.6.23.1.bb, do_setscene)
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_setscene: Started
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_setscene: Succeeded
....... .... ................. 11% 73.1K 13m35s.
  7000K .... .....NOTE: Running task 63 of 339 (ID: 304, virtual:native:/home/nahsan/openembedded/openembedded/recipes/sqlite/sqlite3_3.6.23.1.bb, do_fetch)
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_fetch: Started
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_fetch: Succeeded
............. ... 61% 10.9K 59s. 55% 67.8K 83s.
  7650K ............
  1550K ..... ....NOTE: Running task 64 of 339 (ID: 297, virtual:native:/home/nahsan/openembedded/openembedded/recipes/sqlite/sqlite3_3.6.23.1.bb, do_unpack)
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_unpack: Started
NOTE: Unpacking ../../sources/sqlite-3.6.23.1.tar.gz to tmp/work/i686-linux/sqlite3-native-3.6.23.1-r4.0/
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_unpack: Succeeded
 ................. ..... ............... ..... .......NOTE: Running task 65 of 339 (ID: 277, virtual:native:/home/nahsan/openembedded/openembedded/recipes/zlib/zlib_1.2.3.bb, do_setscene)
NOTE: package zlib-native-1.2.3-r7.0: task do_setscene: Started
NOTE: package zlib-native-1.2.3-r7.0: task do_setscene: Succeeded
......... 11% 78.8K 13m34s
  7050K ..... ................. ... 55% 83.1K 83s.
  7700K ....NOTE: Running task 66 of 339 (ID: 276, virtual:native:/home/nahsan/openembedded/openembedded/recipes/zlib/zlib_1.2.3.bb, do_fetch)
NOTE: package zlib-native-1.2.3-r7.0: task do_fetch: Started
NOTE: package zlib-native-1.2.3-r7.0: task do_fetch: Succeeded
........... ...... ................ ...... ......NOTE: Running task 67 of 339 (ID: 269, virtual:native:/home/nahsan/openembedded/openembedded/recipes/zlib/zlib_1.2.3.bb, do_unpack)
NOTE: package zlib-native-1.2.3-r7.0: task do_unpack: Started
NOTE: Unpacking ../../sources/zlib-1.2.3.tar.bz2 to tmp/work/i686-linux/zlib-native-1.2.3-r7.0/
NOTE: package zlib-native-1.2.3-r7.0: task do_unpack: Succeeded
......... ...... .............. 11% 77.7K 13m32s.
  7100K ..... .. .....NOTE: Running task 68 of 339 (ID: 263, /home/nahsan/openembedded/openembedded/recipes/bzip2/bzip2-full-native_1.0.6.bb, do_setscene)
NOTE: package bzip2-full-native-1.0.6-r0: task do_setscene: Started
NOTE: package bzip2-full-native-1.0.6-r0: task do_setscene: Succeeded
................ 56% 80.1K 82s
  7750K .......... .......... .......... .......... .......... 56% 76.7K 81s
  7800K ... .......... .......... .......... .......... 11% 63.1K 13m32s
  7150K .......... .............NOTE: Running task 69 of 339 (ID: 262, /home/nahsan/openembedded/openembedded/recipes/bzip2/bzip2-full-native_1.0.6.bb, do_fetch)
NOTE: package bzip2-full-native-1.0.6-r0: task do_fetch: Started
NOTE: package bzip2-full-native-1.0.6-r0: task do_fetch: Succeeded
NOTE: Running task 70 of 339 (ID: 255, /home/nahsan/openembedded/openembedded/recipes/bzip2/bzip2-full-native_1.0.6.bb, do_unpack)
NOTE: package bzip2-full-native-1.0.6-r0: task do_unpack: Started
NOTE: Unpacking ../../sources/bzip2-1.0.6.tar.gz to tmp/work/i686-linux/bzip2-full-native-1.0.6-r0/
... .... .................. ........NOTE: package bzip2-full-native-1.0.6-r0: task do_unpack: Succeeded
..--2011-03-17 11:13:04--  http://www.openssl.org/source/openssl-1.0.0d.tar.gz
Resolving www.openssl.org...  ........... .......... 56% 87.6K 80s
  7850K .......... ............ ........ ............ .......... 11% 50.4K 13m33s
  7200K .......... .......... .......... .......... ... .............. 11%  613K 13m28s.
  7250K ...... ................ ... 57% 78.1K 80s.
  7900K ............... . .... ................. .... ..............194.97.152.144
Connecting to www.openssl.org|194.97.152.144|:80... .. .... .............. 11% 77.6K 13m26s.
  7300K ..... ..connected.
HTTP request sent, awaiting response... ............ ...... 57% 77.0K 79s.
  7950K. ............200 OK
Length: 4025484 (3.8M) [application/x-gzip]
Saving to: `/home/nahsan/sources/openssl-1.0.0d.tar.gz'
...
     0K ... .... ................. .... ..................... .. ..... ................... 11% 78.3K 13m25s.
  7350K ...... ............. ......... ...... 58% 75.7K 78s...
  8000K ........... .............. .... ............... ............. ...... ..........  1% 53.9K 72s
    50K ............. ........ ................. 11% 70.5K 13m24s.
  7400K ... .......... ........... . ............. .......... ............ ....... .. ................. 58% 42.1K 78s
  8050K .......... ........... .......... .......  2% 58.3K 68s
   100K ........ ............... ...... 58%  190K 77s.
  8100K ............. ....... ............. ......... ............. ........ ........... .......... 11% 34.1K 13m29s
  7450K .......... .......... .......... .......... ................... 11%  583K 13m23s
  7500K ..... ............... 59% 59.3K 76s
  8150K ........... ..............  3% 35.5K 81s
   150K .......... .......... .......... .... ......... ...... ...... .............  5%  173K 65s.
   200K ....... ...... .......... .......... .......... .......... 12% 53.9K 13m24s
  7550K ..................... ... ...... 59% 57.6K 76s.
  8200K .................... .... ..... ...................... ...... ..... ....................... .. ......... ...............  6% 63.7K 63s...
   250K .. 12% 68.0K 13m23s... 63% 6.11K 59s
  7600K ....... .................
  1600K ... ...... ..... 59% 61.0K 75s
  8250K. .................. ........ .. ....................... ...... ..... ..................... .. ..... .....................  7% 66.0K 61s..
   300K .. 12% 68.2K 13m23s..
  7650K ....... ..................... ... ..... 60% 72.7K 75s..
  8300K .................... .... ...... ..................... ...... ..... ............ ........ ..... ..... ...................  8% 73.4K 58s..
   350K .. 12% 72.7K 13m22s...
  7700K ....... .................... .... ..... 60% 73.3K 74s..
  8350K ................... .... ........ .................... ....... .... .................... ..... ..... ..................... 10% 70.0K 57s..
   400K .. 12% 70.3K 13m21s..
  7750K ....... ..................... ... .. .... 60% 71.4K 73s..
  8400K ..................... .... ...... ...................... ...... ....... ................... ..... ...... ............ ......... 11% 67.3K 55s..
   450K .. 12% 67.5K 13m20s...
  7800K ....... ....................... .... 61% 64.0K 73s.
  8450K ................. ...... ................... .... .... ............. .... . .......... .......... .......... ........................ 12% 62.1K 55s..
   500K ... 12% 61.0K 13m20s...
  7850K ...... ....................... ... .... 65% 13.0K 56s.. 61% 61.7K 72s..
  8500K ...........
  1650K .......... ..... ....... .................... .. ........... ................... ..... ...... ................... 13% 59.9K 54s...
   550K .. 12% 60.8K 13m20s...
  7900K. ..... ..... ................. .... ........... .. 62% 61.1K 71s
  8550K .................. ....... ..................... .... ........ .................. ...... ..... ..................... 15% 69.5K 53s..
   600K .. 12% 69.4K 13m19s...
  7950K ....... .............. ........ .. ..... 62% 71.3K 71s..
  8600K ..................... .... ....... ..................... .. ......... ...................... ..... .......... 12% 71.8K 13m18s.
  8000K .......... ... .......... 16% 55.7K 53s
   650K .............. ........... ..... . .................. .......... .......... 62% 52.7K 70s
  8650K .......... ............. . ....................... ..... .. ..................... 12% 74.1K 13m17s.....
  8050K ... 17% 94.5K 51s .....
   700K ................... ...... 63%  122K 69s...
  8700K ...... ................. ...... ..... .................. ........ ...... .................. ..... ...... .................. 12% 71.8K 13m16s...
  8100K ........ .. 19% 68.4K 50s...
   750K .................. ... ... 63% 67.9K 69s...
  8750K ...... ................ ....... .... ............ ........... ............. ....... ................. .......... ........... 12% 70.8K 13m16s.
  8150K ......... 20% 71.7K 48s...
   800K ....... ............ ............. .... 67% 11.5K 53s... 63% 65.4K 68s.....
  8800K ..... .....
  1700K ....... ............... ... ............. ................. ... .......... ................ 13% 75.0K 13m14s..
  8200K ........ 21% 76.5K 47s.
   850K ....... ......... ........... .................. . ........... .................. .. 64% 65.5K 68s
  8850K ............ ... .............. ....... ............. 13% 81.4K 13m13s.
  8250K ...... 22% 80.9K 46s.
   900K ............. ........ ... ..................... ....... ........... ........... .. ........... .............. ....... .............. 13% 98.1K 13m11s.
  8300K ........ 24% 97.7K 44s...
   950K ........ ........... ....... ................ ......... ....... 64% 47.4K 67s
  8900K ............... ............... ... ................. 25% 93.3K 43s
  1000K ..... ....... ... .................... . ............... .................. . ................... 26% 90.7K 42s
  1050K ..... 64% 56.3K 66s
  8950K ............ .... ........... ....... .............. .... ................. ..... ............... ..... 27% 86.9K 41s
  1100K ............ ................. 13% 28.2K 13m17s.
  8350K ... ........ ............... ............ .......... .......... .......... 13%  390K 13m12s
  8400K .......... .......... ........ 65% 66.8K 66s
  9000K ..... ............... ... ..... .................. . ...................... 29% 80.2K 40s
  1150K ..... ....... ..................... ...... .... ........ 13% 86.4K 13m11s
  8450K .......... ....................... 65% 74.7K 65s ..
  9050K .................. .... 69% 11.6K 50s .......... ................. .......... .......... 13%  155K 13m7s
  8500K .......... .......... .......... .......... .....
  1750K ....... .. ............... 13%  420K 13m3s
  8550K ............. 30% 75.8K 39s
  1200K ..... .............. ............... ..... ............... ............ 66% 73.3K 64s.. ..
  9100K ........... . ....... .............. ......... ................ .......... ...... 13% 69.8K 13m2s
  8600K .......... 31% 71.2K 38s
  1250K .................. .. ........... ............ ............. ........ ....... ............ ............... 66% 58.0K 64s ...
  9150K .......... ............. 13% 81.6K 13m1s
  8650K ............. 33% 82.5K 37s
  1300K ......... ............. ........ .......... ............... . .................. .... ............. 34% 85.9K 36s
  1350K ......... 66% 62.7K 63s.
  9200K ......... ............ .... ................... . ................ ........ .......... 35% 85.4K 35s
  1400K ........... ............. 67% 66.0K 63s
  9250K ... .......... ................ .......... .......... .......... .......... 13% 32.4K 13m5s
  8700K .......... .......... .......... .......... .......... 13%  459M 13m0s
  8750K .......... .......... .......... ... . ................... . ................... 36% 87.9K 34s
  1450K . ................... . ................. ... 67% 85.3K 62s.
  9300K ................. ... ................. ... ................. 38% 80.5K 34s
  1500K ... ................. .... ............. .......... 13% 46.7K 13m1s
  8800K .......... .......... .......... .......... .......... 14%  414M 12m56s
  8850K .......... ................ ......... ... 67% 75.2K 61s...
  9350K ............. ............. .... .............. ............ ... .............. 14%  115K 12m54s
  8900K ............. 39% 70.6K 33s
  1550K .... ............. ............. ...... ............. ......... ... 68% 71.5K 60s...
  9400K ............. ............. .... ............. ............. ... .............. 14% 76.8K 12m53s
  8950K ......... 40% 79.5K 32s....
  1600K .... ............. ............. ...... ......... ............. ... 68% 79.4K 60s...
  9450K .............. ............ ..... ............. ............. ... ............. 14% 81.7K 12m51s
  9000K ......... 41% 83.2K 31s..
  1650K.. .... ............. ............. .. ............. ............. ... 68% 88.7K 59s...
  9500K ............. ............. .... .............. ............. ... ............. 14% 91.9K 12m49s
  9050K ......... 43% 90.8K 31s....
  1700K .... ............. ............ .......... .......... ........... ......... ........... ...... .......... 69% 61.6K 58s
  9550K .......... .............. ...... ...... 14% 77.8K 12m48s....
  9100K ......... 44% 77.0K 30s.......... ..... ............. ...... ............ ............... 69% 64.1K 58s
  9600K .......... .... .............. .......... .......... .......... 69% 64.3K 57s
  1750K .......... .......... .......... .......... .......... 45% 35.2K 30s
  1800K .......... .......... .......... ....
  9650K ........... ............. ....... ....... ............... ...... 14% 22.3K 12m57s..
  9150K .... 47% 61.7K 29s......... .......... .......... .......... .......... 14% 1.32M 12m52s
  9200K .......
  1850K ........ 70% 54.2K 56s
  9700K ............... .. .............. .......... .......... .......... .......... 14%  126K 12m49s
  9250K .......... .......... ............... ..... . .................... .... ........... 14%  149K 12m46s
  9300K ............... .......... ........ ..... ................... ... 48% 50.9K 29s.... 70% 55.3K 56s
  1900K ......
  9750K ........ .................... ........ .. ............... ....... 14% 84.6K 12m45s.
  9350K ................ ....... . .......................... .. ..... ................... 49% 68.9K 28s.. .
  1950K .......... ................. ... ......... 71% 52.3K 55s
  9800K .......... ....... .......... ......... .................. ............... 50% 55.8K 28s
  2000K ........ .......... ......... ........ 71% 53.5K 55s..
  9850K .............. 14% 30.2K 12m50s
  9400K .......... .......... .......... .......... .......... 15%  304M 12m45s
  9450K .......... ...... ................ . ............... ........ ........... 52% 60.4K 27s.
  2050K ................. .......... .......... .......... 15% 87.3K 12m43s
  9500K .......... .......... ... ..... ..................... .. ......... .............. ... ................... 71% 46.5K 54s.... 15%  118K 12m41s.
  9900K .
  9550K .. .......................... 53% 71.2K 26s ..
  2100K ....... .............. ........ ...... ................. ..... .......... ............. ..... 54% 91.1K 26s
  2150K .............. .............. .......... .......... .......... 15% 58.8K 12m41s
  9600K .......... .......... ......... 72% 56.7K 53s..
  9950K .......... . ....................... ... ......... ............ 15%  194K 12m38s...
  9650K ... ................... 55% 95.9K 25s ..
  2200K ................. ... ............. .......... ......... .............. ... .............. ....... 72% 55.1K 53s..
 10000K ......... 57% 77.3K 24s...
  2250K ........ ..... .......... .......... 15% 56.4K 12m38s
  9700K .......... .......... ......... ................ .......... .......... ..... ......... ............... .......... .......... 15%  101K 12m36s
  9750K ................ ... ...... 58% 71.2K 23s.
  2300K ................ ............ 72% 53.4K 52s. ..
 10050K .............. .......... .......... ........ ............. ............. 15% 91.3K 12m35s..
  9800K . .......... ................... ...... 59% 78.2K 22s.... ....
  2350K . ................... ................ ........ . .................. ........... .. 73% 63.3K 52s..
 10100K ..... ............... ......... 71% 2.97K 53s
  1800K ................ ......... .. ....... 15% 75.5K 12m34s...
  9850K ............ ............ ............... ........... . ....... 61% 75.8K 22s..
  2400K ..................... ... ....... .............. ........... ............ 73% 98.1K 48s
  1850K ....... .......... ................. 73% 71.5K 51s..
 10150K .. ... ................. ............ .......... 15% 78.2K 12m33s. ...
  9900K ........... ................. .. ......... 62% 74.4K 21s..
  2450K ................. . .............. ............. . .................. 73% 61.6K 50s. .
 10200K ................... .......... .......... .......... 63% 54.3K 20s
  2500K ..... .......... .......... ............ 15% 40.1K 12m35s
  9950K .......... ... ............ .......... ................ ............. ... .......... 15%  269K 12m31s.
 10000K ............... ......... ... 74% 55.0K 50s..
 10250K ............... ....... .......... ........ 64% 75.0K 20s
  2550K .................. . ................... . .................... .......... ......... . ..................... 15% 46.7K 12m32s
 10050K .......... ........ 74% 53.7K 49s. ..
 10300K ....... ................... 66% 55.4K 19s... .
  2600K ........ .................... .. ..... ............. .................. ........... ... ............ ......... 16% 53.6K 12m33s
 10100K .......... .......... .......... 75% 52.1K 48s.....
 10350K .. 67% 60.0K 18s....
  2650K ....... .................. .. ....... .................... ...... 16%  110K 12m31s...
 10150K . ..................... ...... ....... ............ ......... .......... ......... 68% 59.8K 18s...
  2700K ....... ................. 75% 49.5K 48s. ..
 10400K ....... ..................... ... ... 16% 63.4K 12m30s..
 10200K. ......... .......... .............. ............... ............ 69% 73.6K 17s. .
  2750K .................. .......... ...... .............. ........ .......... .......... ...... 16% 54.2K 12m31s
 10250K .......... .............. 71% 73.7K 16s... 75% 40.0K 47s
 10450K ...........
  2800K ..... ..... ............... ............ ........ ............ .... .......... .............. ........ ................ 16% 73.9K 12m30s... 72% 87.6K 15s
  2850K . ..
 10300K ............... ............... . ......................... .......... ...... ........ 76% 48.2K 47s...
 10500K. . .......... .............. 73% 72.1K 15s
  2900K .... ............... .......... 16% 61.5K 12m30s...
 10350K .... ..... ............. ............... ............. ..... ............. ..... .................... 75% 84.1K 14s. ..
  2950K ................. . ............. 76% 50.3K 46s.
 10550K .......... ............. .... ........ ...................... . ................. 76% 76.1K 13s.
  3000K .... ........... 16% 39.2K 12m32s
 10400K .......... .......... .... ................... .... ....... 76% 57.4K 45s..
 10600K ............. ......... ...... ............... 77% 67.8K 13s..
  3050K .. .......... .......... .............. ........... ...... ............ 16% 49.6K 12m33s
 10450K .................. ... .... ..................... ... 77% 49.8K 45s.....
 10650K .... .......... 78% 67.1K 12s..
  3100K ................. ..... ........... .......... .............. .... .......... 16% 51.8K 12m33s......
 10500K ... .......... .......... 80% 75.8K 11s
  3150K ............... ...... ............... .............. ...... ......... ............ 81%  121K 10s
  3200K ...... 77% 42.6K 44s. .......... ......
 10700K ............... .............. . .... .................... ........... ....... ....... ................ 82% 96.7K 10s.
  3250K ... 16% 50.9K 12m34s....
 10550K .......... ......... ........... .......... .............. .. .......... ........ .......... .......... 75% 4.15K 47s
  1900K .......... .......... .......... .......... .......... 77%  395M 42s
  1950K .......... .......... .......... .......... .......... 79%  494M 37s
  2000K .......... .......... .......... .......... .......... 81%  495M 33s
  2050K .......... .......... .......... .......... .......... 83%  403M 29s
  2100K ............. ................ ..... 77% 43.8K 44s. 83% 75.8K 9s..
  3300K .......
 10750K .......... ........ ................ ........ ................... 16% 45.7K 12m35s
 10600K .. ..... ......... .............. ................. .......... ......... 85% 56.5K 8s
  3350K .. ....... ................ .... ........ ................... ........... ........ 78% 40.2K 43s .......... 85% 35.1K 25s
  2150K ........
 10800K ............. ......... ............ ...... .............. .......... 86% 55.9K 8s. ..........
  3400K ............. 16% 32.5K 12m38s
 10650K ......... ....... .......... ........... ............... 87% 53.7K 21s
  2200K .......... .......... .......... .......... .......... 89%  297M 18s
  2250K .......... ....... ............. ............. ... ........... . .......... ............... ...... ...... ........ 78% 36.2K 42s....... .
 10850K ..................... 87% 43.3K 7s
  3450K .......... ... ............ ............. 17% 40.3K 12m40s
 10700K ............. .......... ...... ........... ........... .... ................ ........ .. .......................... 89% 35.1K 6s
  3500K ........... 79% 28.3K 42s
 10900K .......... . .............. 17% 40.7K 12m42s
 10750K ... .......... ........ ..................... ..... ..... ................. ...... ...... ............. ............ .... 79% 50.3K 41s
 10950K .......... 90% 37.9K 6s........ 17% 40.4K 12m43s
 10800K ............. ......
  3550K .......... .............. ....... ......... .......... ..... ............ .......... ......... 91% 12.1K 14s
  2300K .......... .......... .......... .......... .......... 93%  311M 11s
  2350K .......... .......... .......... .......... .......... 95%  529M 8s
  2400K .......... .......... .......... .......... .......... 97%  517M 4s
  2450K .......... .......... .......... .......... .......... 99%  509M 1s
  2500K .......... .........                                  100%  335M=2m30s

.... ...................... .. ...... 79% 42.1K 41s
 11000K ..2011-03-17 11:13:59 (16.7 KB/s) - `/home/nahsan/sources/libtool-2.4.tar.gz' saved [2580417]

............. 91% 52.4K 5s......
  3600K ........... 17% 46.6K 12m44s .NOTE: Running task 71 of 339 (ID: 249, /home/nahsan/openembedded/openembedded/recipes/openssl/openssl-native_1.0.0d.bb, do_setscene)
NOTE: package openssl-native-1.0.0d-r14.0: task do_setscene: Started
NOTE: package openssl-native-1.0.0d-r14.0: task do_setscene: Succeeded
NOTE: Running task 72 of 339 (ID: 248, /home/nahsan/openembedded/openembedded/recipes/openssl/openssl-native_1.0.0d.bb, do_fetch)
NOTE: package openssl-native-1.0.0d-r14.0: task do_fetch: Started
NOTE: fetch http://www.openssl.org/source/openssl-1.0.0d.tar.gz
.
 10850K ..... ......................... ... .. .......NOTE: package libtool-native-2.4-r28.1: task do_fetch: Succeeded
.............. ..... .... ....................... ........... ... 92% 68.1K 4s .
  3650K ................. 80% 54.2K 40s
 11050K ........... ...NOTE: Running task 73 of 339 (ID: 73, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_unpack)
NOTE: package libtool-native-2.4-r28.1: task do_unpack: Started
NOTE: Unpacking ../../sources/libtool-2.4.tar.gz to tmp/work/i686-linux/libtool-native-2.4-r28.1/
NOTE: package libtool-native-2.4-r28.1: task do_unpack: Succeeded
NOTE: Running task 74 of 339 (ID: 74, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_patch)
............. ..... ... ..................... .....NOTE: package libtool-native-2.4-r28.1: task do_patch: Started
NOTE: Applying patch 'trailingslash.patch' (../openembedded/recipes/libtool/libtool-2.4/trailingslash.patch)
NOTE: Applying patch 'prefix-manpage-fix.patch' (../openembedded/recipes/libtool/libtool-2.4/prefix-manpage-fix.patch)
NOTE: Applying patch 'rename-with-sysroot.patch' (../openembedded/recipes/libtool/libtool-2.4/rename-with-sysroot.patch)
NOTE: Applying patch 'resolve-sysroot.patch' (../openembedded/recipes/libtool/libtool-2.4/resolve-sysroot.patch)
NOTE: Applying patch 'use-sysroot-in-libpath.patch' (../openembedded/recipes/libtool/libtool-2.4/use-sysroot-in-libpath.patch)
NOTE: Applying patch 'fix-final-rpath.patch' (../openembedded/recipes/libtool/libtool-2.4/fix-final-rpath.patch)
NOTE: Applying patch 'prefix.patch' (../openembedded/recipes/libtool/libtool-2.4/prefix.patch)
NOTE: package libtool-native-2.4-r28.1: task do_patch: Succeeded
........ .... 17% 46.2K 12m45s ..
 10900K ....................... .... 94% 82.7K 3s .
  3700K ..............NOTE: Running task 75 of 339 (ID: 298, virtual:native:/home/nahsan/openembedded/openembedded/recipes/sqlite/sqlite3_3.6.23.1.bb, do_patch)
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_patch: Started
NOTE: Applying patch 'libtool.patch' (../openembedded/recipes/sqlite/sqlite3/libtool.patch)
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_patch: Succeeded
 .................. .......... .. .......... ....... 80% 64.4K 39s
 11100K ........NOTE: Running task 76 of 339 (ID: 270, virtual:native:/home/nahsan/openembedded/openembedded/recipes/zlib/zlib_1.2.3.bb, do_patch)
NOTE: package zlib-native-1.2.3-r7.0: task do_patch: Started
NOTE: Applying patch 'visibility.patch' (../openembedded/recipes/zlib/zlib-1.2.3/visibility.patch)
NOTE: Applying patch 'autotools.patch' (../openembedded/recipes/zlib/zlib-1.2.3/autotools.patch)
NOTE: package zlib-native-1.2.3-r7.0: task do_patch: Succeeded
............... .. ............. 95%  111K 3s
  3750K .. ................... ............ . ......NOTE: Running task 77 of 339 (ID: 256, /home/nahsan/openembedded/openembedded/recipes/bzip2/bzip2-full-native_1.0.6.bb, do_patch)
NOTE: package bzip2-full-native-1.0.6-r0: task do_patch: Started
NOTE: Applying patch 'bzip2-1.0.5-autoconfiscated.patch' (../openembedded/recipes/bzip2/bzip2-1.0.6/bzip2-1.0.5-autoconfiscated.patch)
NOTE: package bzip2-full-native-1.0.6-r0: task do_patch: Succeeded
.... ..--2011-03-17 11:14:01--  http://www.python.org/ftp/python/2.6.6/Python-2.6.6.tar.bz2
Resolving www.python.org... 82.94.164.162
Connecting to www.python.org|82.94.164.162|:80... ............. ....... .............. 17% 55.6K 12m45s...connected.
HTTP request sent, awaiting response... 
 10950K ...... ....... ...... 96%  119K 2s
  3800K ........................ .. .200 OK
Length: 11080872 (11M) [application/x-bzip2]
Saving to: `/home/nahsan/sources/Python-2.6.6.tar.bz2'

     0K ....... 80% 69.5K 39s
 11150K ................... .... ................... .. ......... ............. ................... 97% 81.4K 1s
  3850K .......... .. .......... .......... 81% 73.8K 38s......... .......... ............. .......... .......... ... ......
 11200K. ........... ................. .....  0% 56.4K 3m11s
    50K ....... ................. 99%  109K 0s
  3900K ..... ..... ............. .................. ..... 17% 39.1K 12m47s... ....... ...
 11000K .......... .                    100%  169K=57s

2011-03-17 11:14:02 (69.5 KB/s) - `/home/nahsan/sources/openssl-1.0.0d.tar.gz' saved [4025484/4025484]

......... ............. ........ .... ............... ....  0%  104K 2m26s
   100K .NOTE: Running task 78 of 339 (ID: 235, /home/nahsan/openembedded/openembedded/recipes/python/python-native_2.6.6.bb, do_setscene)
NOTE: package python-native-2.6.6-ml12.0: task do_setscene: Started
NOTE: package python-native-2.6.6-ml12.0: task do_setscene: Succeeded
NOTE: Running task 79 of 339 (ID: 234, /home/nahsan/openembedded/openembedded/recipes/python/python-native_2.6.6.bb, do_fetch)
NOTE: package python-native-2.6.6-ml12.0: task do_fetch: Started
NOTE: fetch http://www.python.org/ftp/python/2.6.6/Python-2.6.6.tar.bz2
................. .......... ........... ... .............. 81% 54.0K 37s
 11250K .... .............. ............. ..............  1%  110K 2m9s
   150K . ........NOTE: package openssl-native-1.0.0d-r14.0: task do_fetch: Succeeded
NOTE: Running task 80 of 339 (ID: 241, /home/nahsan/openembedded/openembedded/recipes/openssl/openssl-native_1.0.0d.bb, do_unpack)
...... 17% 61.7K 12m47s...
 11050K ......... .... ............. ........... .............. ...NOTE: package openssl-native-1.0.0d-r14.0: task do_unpack: Started
NOTE: Unpacking ../../sources/openssl-1.0.0d.tar.gz to tmp/work/i686-linux/openssl-native-1.0.0d-r14.0/
NOTE: package openssl-native-1.0.0d-r14.0: task do_unpack: Succeeded
 ................ ........... ... ................  1%  100K 2m3s
   200K ............NOTE: Running task 81 of 339 (ID: 242, /home/nahsan/openembedded/openembedded/recipes/openssl/openssl-native_1.0.0d.bb, do_patch)
NOTE: package openssl-native-1.0.0d-r14.0: task do_patch: Started
NOTE: Applying patch 'configure-targets.patch' (../openembedded/recipes/openssl/openssl-1.0.0d/configure-targets.patch)
NOTE: Applying patch 'shared-libs.patch' (../openembedded/recipes/openssl/openssl-1.0.0d/shared-libs.patch)
NOTE: Applying patch 'debian.patch' (../openembedded/recipes/openssl/openssl-1.0.0d/debian.patch)
NOTE: Applying patch 'libdeps-first.patch' (../openembedded/recipes/openssl/openssl-1.0.0d/libdeps-first.patch)
NOTE: package openssl-native-1.0.0d-r14.0: task do_patch: Succeeded
.. 81% 65.0K 36s .
 11300K ........ ..................... ........ .NOTE: Running task 82 of 339 (ID: 137, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_setscene)
NOTE: package libxml2-native-2.7.8-r9.1: task do_setscene: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_setscene: Succeeded
....... ........... .......... .......... .............. 17% 53.6K 12m47s .
 11100K ...  2% 94.7K 2m0s
   250K ........................... . ...... ........... ...........NOTE: Running task 83 of 339 (ID: 136, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_fetch)
NOTE: package libxml2-native-2.7.8-r9.1: task do_fetch: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_fetch: Succeeded
NOTE: Running task 84 of 339 (ID: 129, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_unpack)
.. ................. 82% 57.3K 36s
 11350K .......... .. ..............  2% 89.0K 2m0s
   300K ....... .......... .............. ....... ......... ........... .........NOTE: package libxml2-native-2.7.8-r9.1: task do_unpack: Started
NOTE: Unpacking ../../sources/libxml2-2.7.8.tar.gz to tmp/work/i686-linux/libxml2-native-2.7.8-r9.1/
NOTE: package libxml2-native-2.7.8-r9.1: task do_unpack: Succeeded
NOTE: Running task 85 of 339 (ID: 130, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_patch)
.... ... 17% 58.5K 12m47s.... .......
 11150K ................ ......... ..... ......  3% 99.8K 1m57s
   350K ..NOTE: package libxml2-native-2.7.8-r9.1: task do_patch: Started
NOTE: Applying patch '0cbeb50ee03ce582a0c979c70d8fbf030e270c37.patch' (../openembedded/recipes/libxml/libxml2-2.7.8/0cbeb50ee03ce582a0c979c70d8fbf030e270c37.patch)
NOTE: Applying patch 'df83c17e5a2646bd923f75e5e507bc80d73c9722.patch' (../openembedded/recipes/libxml/libxml2-2.7.8/df83c17e5a2646bd923f75e5e507bc80d73c9722.patch)
NOTE: Applying patch 'fec31bcd452e77c10579467ca87a785b41115de6.patch' (../openembedded/recipes/libxml/libxml2-2.7.8/fec31bcd452e77c10579467ca87a785b41115de6.patch)
NOTE: Applying patch '00819877651b87842ed878898ba17dba489820f0.patch' (../openembedded/recipes/libxml/libxml2-2.7.8/00819877651b87842ed878898ba17dba489820f0.patch)
NOTE: package libxml2-native-2.7.8-r9.1: task do_patch: Succeeded
.................. ....... ..... 82% 67.6K 35s
 11400K ........... .....................NOTE: Running task 86 of 339 (ID: 165, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_setscene)
NOTE: package gnome-common-native-2.28.0-r0: task do_setscene: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_setscene: Succeeded
. ... ....... ........ .................... ..... ...  3%  110K 1m54s
   400K ..................NOTE: Running task 87 of 339 (ID: 164, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_fetch)
NOTE: package gnome-common-native-2.28.0-r0: task do_fetch: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_fetch: Succeeded
 ......... 17% 64.8K 12m46s
 11200K ....... ............... . .......... .........NOTE: Running task 88 of 339 (ID: 157, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_unpack)
NOTE: package gnome-common-native-2.28.0-r0: task do_unpack: Started
NOTE: Unpacking ../../sources/gnome-common-2.28.0.tar.bz2 to tmp/work/i686-linux/gnome-common-native-2.28.0-r0/
NOTE: package gnome-common-native-2.28.0-r0: task do_unpack: Succeeded
. ..........  4%  124K 1m50s
   450K ......... .......... 83% 59.1K 34s
 11450K .......... ............ .NOTE: Running task 89 of 339 (ID: 151, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_setscene)
NOTE: package libxslt-native-1.1.26-r6.0: task do_setscene: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_setscene: Succeeded
............ .... .......... .......... ..............NOTE: Running task 90 of 339 (ID: 150, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_fetch)
NOTE: package libxslt-native-1.1.26-r6.0: task do_fetch: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_fetch: Succeeded
... 17% 61.2K 12m46s
 11250K .......... .NOTE: Running task 91 of 339 (ID: 143, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_unpack)
NOTE: package libxslt-native-1.1.26-r6.0: task do_unpack: Started
NOTE: Unpacking ../../sources/libxslt-1.1.26.tar.gz to tmp/work/i686-linux/libxslt-native-1.1.26-r6.0/
NOTE: package libxslt-native-1.1.26-r6.0: task do_unpack: Succeeded
.... .......... .......... ...................  4% 64.4K 1m54s
   500K ...... .......... ........... ........ .................. ..... ....... ......NOTE: Running task 92 of 339 (ID: 39, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_setscene)
NOTE: package gettext-native-0.18-r6: task do_setscene: Started
NOTE: package gettext-native-0.18-r6: task do_setscene: Succeeded
NOTE: Running task 93 of 339 (ID: 38, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_fetch)
......... ... 17% 66.6K 12m45s
 11300K ........ 83% 41.1K 34s..
 11500K .............. ............ ........  5% 61.3K 1m59s
   550K ........ .......... .............. ...... ........... ........ ........... ......NOTE: package gettext-native-0.18-r6: task do_fetch: Started
NOTE: package gettext-native-0.18-r6: task do_fetch: Succeeded
NOTE: Running task 94 of 339 (ID: 31, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_unpack)
NOTE: package gettext-native-0.18-r6: task do_unpack: Started
NOTE: Unpacking ../../sources/gettext-0.18.tar.gz to tmp/work/i686-linux/gettext-native-0.18-r6/
..... ............... 18% 57.2K 12m45s
 11350K .. ...........NOTE: package gettext-native-0.18-r6: task do_unpack: Succeeded
..... 83% 54.0K 33s...
 11550K . ................. ...NOTE: Running task 95 of 339 (ID: 158, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_patch)
NOTE: package gnome-common-native-2.28.0-r0: task do_patch: Started
NOTE: Applying patch 'omf.patch' (../openembedded/recipes/gnome/gnome-common/omf.patch)
NOTE: package gnome-common-native-2.28.0-r0: task do_patch: Succeeded
.. ................. ...... .......... ..........  5% 61.0K 2m2s
   600K .......... .......... ... .................. ....... ...... ................... 18% 65.9K 12m44s
 11400K ........... .... .............  6% 85.7K 2m1s
   650K ....... ... 84% 63.1K 32s.
 11600K ................... .......... ...... ........ .......... ........... ............. ............ ..NOTE: Running task 96 of 339 (ID: 144, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_patch)
NOTE: package libxslt-native-1.1.26-r6.0: task do_patch: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_patch: Succeeded
NOTE: Running task 97 of 339 (ID: 32, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_patch)
NOTE: package gettext-native-0.18-r6: task do_patch: Started
NOTE: Applying patch 'autotools.patch' (../openembedded/recipes/gettext/gettext-0.18/autotools.patch)
NOTE: Applying patch 'gettext-autoconf-lib-link-no-L.patch' (../openembedded/recipes/gettext/gettext-0.18/gettext-autoconf-lib-link-no-L.patch)
NOTE: Applying patch 'gnulib-uclibc-sched_param-def.patch' (../openembedded/recipes/gettext/gettext-0.18/gnulib-uclibc-sched_param-def.patch)
 ................... ........ 18% 68.8K 12m43s
 11450K ...... .......  6% 75.9K 2m2s...
   700K .........NOTE: package gettext-native-0.18-r6: task do_patch: Succeeded
...... .... 84% 69.0K 31s
 11650K .....--2011-03-17 11:14:10--  http://ftp.gnome.org/pub/GNOME/sources/gnome-doc-utils/0.19/gnome-doc-utils-0.19.2.tar.bz2
Resolving ftp.gnome.org... ... .................. ......... . .................. .......... .....130.239.18.163, 130.239.18.173
Connecting to ftp.gnome.org|130.239.18.163|:80... ....... .......... ...... .................. 84% 85.6K 31s
 11700K ...  6% 72.2K 2m2s .......... ...
   750K .........connected.
HTTP request sent, awaiting response... ............ .... 18% 57.7K 12m43s
 11500K ...... ................ ........ ....... .200 OK
Length: 854440 (834K) [application/x-bzip2]
Saving to: `/home/nahsan/sources/gnome-doc-utils-0.19.2.tar.bz2'

     0K .......... ....................... ..... ... ....................... 85% 89.6K 30s.. ..
 11750K ............  7% 76.1K 2m2s
   800K ........ ............. ........... .......... ............ ... .......... .......... ......... ............... ......... ......... .. ............  5% 60.8K 13s
    50K .............. ............ .............. 85% 73.2K 29s.
 11800K ...  7% 86.1K 2m1s.
   850K .................. .......... .......... .......... 11%  169K 8s
   100K .......... ............. 18% 37.4K 12m45s
 11550K .......... ..... .......... .......... ...... ............ .......... .............. 17%  153K 7s
   150K ..... ........... ......... ....... ........ ..................... ......... .......... . .................  8% 58.5K 2m4s
   900K ...... ......... ........ 23%  126K 6s
   200K .......... ............ ........ 85% 51.1K 28s....
 11850K ............. .......... .......... .. .............. .......... .......... 29% 99.9K 5s
   250K ... .......... ............ 18% 40.1K 12m46s
 11600K ............... ............. ........... .............  8% 55.0K 2m6s
   950K .... ..... ............... ..... .......... .......... 86% 49.8K 28s
 11900K ................ ... ... ...................... ........ 35% 66.0K 6s
   300K .......... . ............... ...... .......................... ....  9% 81.2K 2m5s
  1000K ......... ................. . ............ .......... ............... .... ........... 18% 40.3K 12m48s
 11650K ............ 41% 87.2K 5s
   350K .......... ... .................... ...... ..... .................. 86% 51.9K 27s ...
 11950K .........  9% 81.4K 2m4s
  1050K ................ ..... ................... .... . ........................ ........ 47% 93.6K 5s
   400K ... ...... ................. .................. ........... .......... ......... .... 10% 82.9K 2m3s.
  1100K ........ .............. .......... .......... ............ 18% 46.4K 12m49s
 11700K ....... 87% 56.1K 26s.... .......... .......
 12000K ........... ... ...... 53% 68.6K 4s
   450K .......................... ... .......... ... .................. 10% 78.7K 2m3s
  1150K ............... .. ......... ............... ............ ... . .............. ................ 18% 54.6K 12m49s
 11750K ................ .......... .......... .......... 59% 55.4K 4s
   500K .......... 11% 74.6K 2m2s. ....
  1200K .... .......... 87% 45.6K 26s
 12050K ................ . ......................... .......... .. ...... .............. ................... ... .. ...................... 18% 62.4K 12m48s
 11800K .. .......... ............ ....... ....... 11% 57.6K 2m3s
  1250K ........... ............... ............. .. ........... ...................... ..... 65% 40.8K 4s
   550K ..... ............. 87% 39.7K 25s
 12100K ......... 18% 67.2K 12m47s
 11850K ............ ..... ............ ....... ........... ........... ......... ..................... ..... ... ........... 18%  123K 12m45s
 11900K ................ ................ .... .. ........... ......... 12% 43.7K 2m6s........... ............ .......
  1300K .... 18%  130K 12m43s. ..
 11950K ......... ................... ............ ............ 88% 49.5K 24s
 12150K ........... ..... .. 71% 43.9K 3s
   600K .................. ........... 19%  166K 12m40s
 12000K ........ .... .......................... ......... .... ........... ............ . ............. 19%  214K 12m37s
 12050K ............ ............... ........ ..... .......... 12% 58.3K 2m7s
  1350K .............. ......... ............ ........ .......... ... 88% 65.2K 24s
 12200K ... .......... 19%  130K 12m35s
 12100K .......... .......... .................... ...... ............... ................... ...... .... 19%  280K 12m32s
 12150K ............ ............ ... ......... ..................... . .............. .......... 19%  169K 12m29s
 12200K .......... ........ ............ 77% 42.0K 3s
   650K ......... 12% 72.7K 2m7s...
  1400K ........... ........ ........... .......... 88% 63.7K 23s
 12250K ........ .......... .......... 19%  152K 12m27s
 12250K .......... ..... .......... .......... ............ .......... .......... ................ ..... ............ 19%  163K 12m24s..
 12300K ..... ............. ................ 13% 69.3K 2m6s
  1450K ..... ... ............ .... ................... ........ ............. 19%  134K 12m22s
 12350K ...... .............. ............... .......... .............. ............ 89% 43.6K 22s
 12300K ....... ....... ............ ........ .......... 19% 72.4K 12m21s
 12400K .......... ........... ......... ...... ............ ......... .......... ....... ........... 13% 37.8K 2m10s..
  1500K ........... 83% 22.9K 2s.... 19%  101K 12m19s
 12450K ........... ........... ........ .......... 89% 50.8K 21s
 12350K ...... .......... .................. .......... .......... 19% 94.4K 12m18s
 12500K ..... .............
   700K ... .... ............... ...... ................... .... ........... 14% 49.1K 2m11s
  1550K .......... ............ ........ 19% 86.8K 12m17s
 12550K ............ .................. 89% 41.9K 21s. .......... .......
 12400K ........ ........ ......... .... . ..................... 20% 69.9K 12m16s..
 12600K .. .............. ................ ...... .... ................ ................ .......... ............. 90% 52.8K 20s
 12450K ....... ........ ... 20% 79.0K 12m15s
 12650K .......... ... ................ .................... ....... ........... .......... ......... ............... ... ........... ......... 90% 82.9K 19s
 12500K .... 89% 16.6K 2s
   750K ............ 20% 83.2K 12m13s
 12700K ....... 14% 22.9K 2m19s
  1600K ................... .............. ....... ....... ...... ......... ............... .............. ................ .......... 91% 86.2K 18s.. ..... .... ................. .......... 20% 58.2K 12m13s
 12750K .............. ..........
 12550K .......... .. ........... ... 15% 50.3K 2m19s
  1650K ............. ............. .. ........... ..... ............... ..... ........... ............ 20% 89.1K 12m12s
 12800K ....................... 91% 49.8K 18s
 12600K ........ ...... ............. ...... .......... .............. 95% 27.3K 1s
   800K ..... .......... 15% 58.6K 2m19s.
  1700K ........ ......... .......... .......... 20% 57.4K 12m12s
 12850K ............... ........... .............. ......... ......... ........ .......... .......... ...... 20% 58.1K 12m11s
 12900K ............ ..... ....... 91% 25.3K 17s............ ..........
 12650K ............... ......... .......... ..... ........ .. ........ 20% 42.3K 12m12s..
 12950K .......... ............. .......... ........ 92% 37.0K 16s
 12700K .......... .......... .................... ....... 16% 14.8K 2m32s ..
  1750K ........... .....                 100% 9.37K=20s

2011-03-17 11:14:30 (41.5 KB/s) - `/home/nahsan/sources/gnome-doc-utils-0.19.2.tar.bz2' saved [854440/854440]

...NOTE: Running task 98 of 339 (ID: 10, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_setscene)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_setscene: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_setscene: Succeeded
NOTE: Running task 99 of 339 (ID: 8, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_fetch)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_fetch: Started
NOTE: fetch http://ftp.gnome.org/pub/GNOME/sources/gnome-doc-utils/0.19/gnome-doc-utils-0.19.2.tar.bz2
... ........... ...... ............... ........ 92% 51.5K 16s
 12750K ............ ........ ......NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_fetch: Succeeded
NOTE: Running task 100 of 339 (ID: 0, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_unpack)
............ ..... ............ .. ...NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_unpack: Started
NOTE: Unpacking ../../sources/gnome-doc-utils-0.19.2.tar.bz2 to tmp/work/i686-linux/gnome-doc-utils-native-0.19.2-r6.2/
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_unpack: Succeeded
...... 20% 25.1K 12m16s....... ............NOTE: Running task 101 of 339 (ID: 1, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_patch)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_patch: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_patch: Succeeded
 ..--2011-03-17 11:14:32--  http://www.angstrom-distribution.org/unstable/sources/opkg-utils_svn.openmoko.org_.trunk.src.host._4747_.tar.gz
Resolving www.angstrom-distribution.org... ........ 16% 33.5K 2m34s
  1800K ...... 92% 50.2K 15s
 12800K .......... ....
 13000K .188.40.83.200
Connecting to www.angstrom-distribution.org|188.40.83.200|:80... ...... ...connected.
HTTP request sent, awaiting response... ......... ............. .....200 OK
Length: 45394 (44K) [application/x-gzip]
Saving to: `/home/nahsan/sources/opkg-utils_svn.openmoko.org_.trunk.src.host._4747_.tar.gz'

     0K ........ ............ ............ .......... .......... .............. 93% 64.1K 14s
 12850K .......... .......... ............. ....      100% 49.9K=0.9s

2011-03-17 11:14:33 (49.9 KB/s) - `/home/nahsan/sources/opkg-utils_svn.openmoko.org_.trunk.src.host._4747_.tar.gz' saved [45394/45394]

......... ..NOTE: Running task 102 of 339 (ID: 25, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_setscene)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_setscene: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_setscene: Succeeded
NOTE: Running task 103 of 339 (ID: 24, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_fetch)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_fetch: Started
NOTE: fetch http://www.angstrom-distribution.org/unstable/sources/opkg-utils_svn.openmoko.org_.trunk.src.host._4747_.tar.gz
........ ...... ........NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_fetch: Succeeded
.... ... ....... ....NOTE: Running task 104 of 339 (ID: 17, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_unpack)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_unpack: Started
NOTE: Unpacking ../../sources/opkg-utils_svn.openmoko.org_.trunk.src.host._4747_.tar.gz to tmp/work/i686-linux/opkg-utils-native-0.1.8+svnr4747-r6/
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_unpack: Succeeded
... .............NOTE: Running task 105 of 339 (ID: 18, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_patch)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_patch: Started
NOTE: Applying patch 'index-ignore-filenotfound.patch' (../openembedded/recipes/opkg-utils/opkg-utils/index-ignore-filenotfound.patch)
NOTE: Applying patch 'mtime-int.patch' (../openembedded/recipes/opkg-utils/opkg-utils/mtime-int.patch)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_patch: Succeeded
..NOTE: Running task 106 of 339 (ID: 99, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_package)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package: Succeeded
....... 93% 28.8K 14s
 12900K ........... ...... .... 17% 17.8K 2m43sNOTE: Running task 107 of 339 (ID: 225, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_package)
NOTE: package unifdef-native-2.6-0: task do_package: Started
NOTE: package unifdef-native-2.6-0: task do_package: Succeeded
...NOTE: Running task 108 of 339 (ID: 211, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_package)
NOTE: package quilt-native-0.48-r7.1: task do_package: Started
NOTE: package quilt-native-0.48-r7.1: task do_package: Succeeded
NOTE: Running task 109 of 339 (ID: 226, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_package_write_ipk)
NOTE: package unifdef-native-2.6-0: task do_package_write_ipk: Started
NOTE: package unifdef-native-2.6-0: task do_package_write_ipk: Succeeded

  1850K .......... ..NOTE: Running task 110 of 339 (ID: 218, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_package_write)
NOTE: package unifdef-native-2.6-0: task do_package_write: Started
NOTE: package unifdef-native-2.6-0: task do_package_write: Succeeded
......NOTE: Running task 111 of 339 (ID: 217, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_qa_staging)
NOTE: package unifdef-native-2.6-0: task do_qa_staging: Started
NOTE: package unifdef-native-2.6-0: task do_qa_staging: Succeeded
....... 20% 11.4K 12m30s
 13050K ... .......NOTE: Running task 112 of 339 (ID: 219, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_package_stage)
NOTE: package unifdef-native-2.6-0: task do_package_stage: Started
NOTE: package unifdef-native-2.6-0: task do_package_stage: Succeeded
.......... .......... .......... ..... .. ...NOTE: Running task 113 of 339 (ID: 212, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_package_write_ipk)
NOTE: package quilt-native-0.48-r7.1: task do_package_write_ipk: Started
NOTE: package quilt-native-0.48-r7.1: task do_package_write_ipk: Succeeded
.......NOTE: Running task 114 of 339 (ID: 204, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_package_write)
NOTE: package quilt-native-0.48-r7.1: task do_package_write: Started
NOTE: package quilt-native-0.48-r7.1: task do_package_write: Succeeded
.... .....NOTE: Running task 115 of 339 (ID: 203, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_qa_staging)
NOTE: package quilt-native-0.48-r7.1: task do_qa_staging: Started
NOTE: package quilt-native-0.48-r7.1: task do_qa_staging: Succeeded
NOTE: Running task 116 of 339 (ID: 205, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_package_stage)
......... 17% 19.6K 2m50s
  1900K ...... .NOTE: package quilt-native-0.48-r7.1: task do_package_stage: Started
NOTE: package quilt-native-0.48-r7.1: task do_package_stage: Succeeded
..........NOTE: Running task 117 of 339 (ID: 100, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_package_write_ipk)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package_write_ipk: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package_write_ipk: Succeeded
... .............. ..NOTE: Running task 118 of 339 (ID: 92, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_package_write)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package_write: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package_write: Succeeded
... ...........NOTE: Running task 119 of 339 (ID: 91, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_qa_staging)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_qa_staging: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_qa_staging: Succeeded
...... ......... 93% 13.4K 13s .......... 20% 20.4K 12m35s
 13100K .
 12950K .................... ....... ... .................. .. 18% 27.3K 2m53s
  1950K ....... ....................... ....... ........ ....... ........ .......... ............ 94% 31.8K 12s
 13000K .............. .............. .... 20% 29.1K 12m38s
 13150K ......... ............ ..... ............ 18% 43.2K 2m53s
  2000K .............. ....... ......... ................ ............ ...... . .......... ................. 94% 23.7K 12s
 13050K .............. ...... .. 18% 24.9K 2m56s.........
  2050K ...... ............... 20% 19.2K 12m44s. ........
 13200K ........... ... ........... 95% 35.3K 11s
 13100K .......... .......... ........... ................ ... .............. ...... ...... .......... 95% 51.1K 10s
 13150K ................... ...... 21% 26.4K 12m48s........... ..
 13250K ................. ... ... ................... .... ................. 95% 36.7K 9s
 13200K ............ .... ..... ...................... .... ....... ............. ............. 21% 29.1K 12m51s
 13300K ........ 19% 12.2K 3m8s. ............... 96% 64.0K 8s.. .
  2100K .....
 13250K .................. ........ .. ............. ................ ....... ........... ..... ...................... ... 96% 42.4K 8s
 13300K ............. ........... ......... ...... ........... .......... 96% 64.9K 7s......... 21% 22.4K 12m55s
 13350K ..
 13350K .......... .. ................. ....... ......... 19% 19.5K 3m13s
  2150K ........ ............. ........ ....................... 97% 53.0K 6s
 13400K .......... .. ........... ....... ............ .......... ........ 21% 41.5K 12m56s
 13400K ...... .......... ............... ....... ......... 97% 83.5K 5s
 13450K ............... ............ .......... .............. ... .......... ........... ..... 97% 51.3K 5s
 13500K ................. ................. 20% 22.4K 3m16s
  2200K ..... . ............... ...... ........ 21% 27.9K 12m59s
 13450K ................ ...... ............ .......... ........ 98% 50.4K 4s
 13550K .......... ................ ....... ...... .................... ..... ..... 20% 43.2K 3m15s
  2250K .............. ......... .... .................... ....... 98% 64.1K 3s. 21% 41.0K 13m0s
 13500K ...
 13600K ................. .... .......... ......... .......... ......................... ......... 21% 38.2K 3m15s
  2300K .... ...... ............ ...... 99% 43.0K 2s
 13650K ............... ........ .......... ................... ... ...... ................ ........ 21% 29.1K 13m2s... .........
 13550K ........... ...... 21% 51.7K 3m13s......
  2350K .......... ........... 99% 52.1K 1s
 13700K ........ ..... .... ............... ........... ........... ........ ........ ................ ........... ......... ....... 99% 76.2K 1s..... 21% 46.7K 13m3s.
 13600K ..
 13750K ........ 22% 44.9K 3m12s
  2400K .......... ....... ............ ........... ................ ........... . ......               100% 41.1K=3m38s

2011-03-17 11:14:56 (63.2 KB/s) - `/home/nahsan/sources/perl-5.10.1.tar.gz' saved [14117518/14117518]

......... ......... .........NOTE: Running task 120 of 339 (ID: 93, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_package_stage)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package_stage: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package_stage: Succeeded
NOTE: Running task 121 of 339 (ID: 15, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_distribute_sources)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_distribute_sources: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_distribute_sources: Succeeded
....... .......... 22% 48.8K 3m10s.. ........
  2450K ............ 21% 32.8K 13m4s
 13650K ... .............. .... ........... ........... .NOTE: package perl-native-5.10.1-r10: task do_fetch: Succeeded
NOTE: Running task 122 of 339 (ID: 185, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_unpack)
NOTE: package perl-native-5.10.1-r10: task do_unpack: Started
NOTE: Unpacking ../../sources/perl-5.10.1.tar.gz to tmp/work/i686-linux/perl-native-5.10.1-r10/
....... .............. ...... 23% 60.2K 3m8s
  2500K ......NOTE: Unpacking ../openembedded/recipes/perl/perl-native/CPAN-Config.pm to tmp/work/i686-linux/perl-native-5.10.1-r10/
NOTE: package perl-native-5.10.1-r10: task do_unpack: Succeeded
............. ..... .............. ...... 21% 48.9K 13m4s
 13700K ......... ............. ..... ................. .... 23% 60.1K 3m6s
  2550K ............... .... ................. ...... ......... ............ 21% 57.8K 13m4s
 13750K ....... ............... ..... 24% 72.6K 3m3s.
  2600K ................ ..... .......... ........ ............ ........ .......... 21% 51.1K 13m4s
 13800K .......... ............ .......... ........ ............... ...... 24% 32.5K 3m3s
  2650K ................ 22% 58.8K 13m3s
 13850K .... .......... ........ ............. ........ ............ ......... ............ 24% 74.9K 3m1s
  2700K ....... ............. ......... 22% 61.0K 13m2s
 13900K ............ ........... .......... .......... ... ................. 25% 69.8K 2m59s
  2750K ..... .......... ........... 22% 59.2K 13m2s
 13950K ................ .... .......... ........ ........... ............. ..... ................... 22% 80.3K 13m0s
 14000K .......... . .......... 25% 43.2K 2m58s
  2800K .......... ................. .......... ........... .......... ..... 22% 70.0K 12m59s
 14050K .......... ........... ........... ............. .. .......... ................ 22% 91.0K 12m58s
 14100K .......... ..... 26% 39.7K 2m57s
  2850K .......... .......... .......... ............. ....... 22% 90.4K 12m56s
 14150K ................ .......... ........ ........ .............. ..... ......... 22% 89.3K 12m54s
 14200K ............. ............. .......... .......... 26% 37.9K 2m57s
  2900K ... ............... .......... 22% 64.6K 12m53s
 14250K .......... ........ ........ ............. ........... .... .................... 22% 64.6K 12m53s
 14300K . .............. .......... 27% 28.9K 2m57s
  2950K ...... ................. .......... .......... .... .............. ......... ......... ............... 22% 30.2K 12m55s
 14350K ... 27% 43.3K 2m56s
  3000K ................. ...... ........... .......... ........... ........ .......... ............... 28% 48.5K 2m55s
  3050K . .................. .. 22% 38.9K 12m56s
 14400K ............... ...... .............. ........ ............. ............ ........... 28% 33.4K 2m54s
  3100K . .............. 22% 28.3K 12m58s
 14450K .......... ........... .......... ........ .......... ............. ..... 23% 41.4K 12m59s
 14500K ................. .. .................. ..... ............. ......... 29% 21.6K 2m56s
  3150K ....... ................ .. 23% 57.4K 12m58s
 14550K ................... . ................ ..... .......... ............. .......... ........... 29% 45.1K 2m55s
  3200K ......... 23% 54.0K 12m58s
 14600K ........... ......... .............. .... ............. ......... ......... ............. ....... 30% 59.3K 2m53s
  3250K ............. 23% 56.7K 12m57s
 14650K ..... .................. . ................. .......... ...... ........... .......... 30% 70.9K 2m51s
  3300K .............. .... .............. 23% 57.4K 12m56s.
 14700K .... .................. . ................. ...... ............ 30% 68.8K 2m49s
  3350K .......... ......... .............. ... ................ 23% 57.0K 12m56s..
 14750K . ............... .............. 31% 61.9K 2m47s
  3400K ....... .......... ............. .. .......... .................. .. .......... .......... 31% 55.3K 2m45s
  3450K .................. 23% 34.8K 12m57s .
 14800K ................ ..... .................. . .................. ... .................. 32% 56.8K 2m44s ..
  3500K ............. 23% 55.5K 12m57s..
 14850K ........ ............ ........ .......... ............. ... ................... .... ............. 32% 38.2K 2m43s... 23% 42.9K 12m57s
  3550K .
 14900K ........... ................ ....... .............. ..... ............... .... ............... 23% 42.2K 12m57s
 14950K ... ................... 33% 35.7K 2m43s .
  3600K ................... . .................. .......... ......... ............ .. ............... 33% 62.5K 2m41s... 23% 48.7K 12m57s
 15000K .
  3650K ................... .... ........... ............ ............ .......... 34% 35.7K 2m40s
  3700K .. ............ ............ ........... .......... .......... 34% 45.8K 2m39s
  3750K ........... .......... ......... ........ .............. ..NOTE: Running task 123 of 339 (ID: 186, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_patch)
NOTE: package perl-native-5.10.1-r10: task do_patch: Started
NOTE: Applying patch 'Configure-multilib.patch' (../openembedded/recipes/perl/files/Configure-multilib.patch)
NOTE: Applying patch 'perl-configpm-switch.patch' (../openembedded/recipes/perl/perl-5.10.1/perl-configpm-switch.patch)
NOTE: Applying patch 'native-nopacklist.patch' (../openembedded/recipes/perl/perl-5.10.1/native-nopacklist.patch)
NOTE: Applying patch 'native-perlinc.patch' (../openembedded/recipes/perl/perl-5.10.1/native-perlinc.patch)
NOTE: Applying patch 'perl-fix-cross-library-check.patch' (../openembedded/recipes/perl/perl-5.10.1/perl-fix-cross-library-check.patch)
NOTE: package perl-native-5.10.1-r10: task do_patch: Succeeded
NOTE: Running task 124 of 339 (ID: 194, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_configure)
NOTE: package perl-native-5.10.1-r10: task do_configure: Started
....... ..... 35% 63.4K 2m37s
  3800K ........NOTE: package perl-native-5.10.1-r10: task do_configure: Succeeded
....... ....... 23% 14.3K 13m5s
 15050K ........ ................ ....... ......... ............... 35% 59.9K 2m36s
  3850K ... ............... ............ ...... .............. .... ............. ........ 24% 39.8K 13m6s
 15100K ........... 36% 68.9K 2m34s
  3900K ............... .... ............ ....... .............. .......... ...... .............. ..... 36% 68.0K 2m32s
  3950K .................. 24% 44.8K 13m6s
 15150K .......... .... .......... ................ ... ................ ... ............... 36% 64.0K 2m30s
  4000K ....... ............ ...... 24% 82.4K 13m4s.....
 15200K ........ .............. ....... .......... ............ .......... ... 37% 71.0K 2m29s
  4050K .................. .... ............... ..... 24% 62.2K 13m3s
 15250K ........ ................. ...... ................ 37% 85.8K 2m27s
  4100K .. ................ ... ................ ........ .......... 24% 72.0K 13m2s
 15300K ...... .................. ... ............... 38% 72.6K 2m25s.
  4150K .......... ............ ..... .......... ............ ...... ............ .............. 24% 56.9K 13m1s
 15350K ..... 38% 82.2K 2m23s
  4200K ........... ......... ............. .......... .... ................... ....... ............ .. 39% 87.1K 2m21s
  4250K .............. ....... 24% 71.3K 13m0s
 15400K ............. ........... ...... ................ ......... .......... 39% 87.1K 2m19s
  4300K ............ ........ .......... .... ............... ........ 24% 55.6K 13m0s...... .......... 40% 77.5K 2m18s
  4350K .........
 15450K ..... .......... ................ ... .......... ............... 40% 74.0K 2m16s
  4400K ......... ....... ............... ......... ...... ............... ... ............. 41% 67.2K 2m15s
  4450K ............. 24% 28.4K 13m2s
 15500K ..... .......... ................. ... ................. .. .......... .......... ......... 41% 48.1K 2m13s
  4500K .......... ............ ................ 24% 44.7K 13m2s.
 15550K . ................. ..... .......... 42%  110K 2m12s
  4550K .............. ....... ............... ... ............ ........ .............. ...... 24% 63.1K 13m1s...
 15600K .......... .......... ......... 42% 58.2K 2m10s
  4600K .......... ............ ........... ....... .............. 24% 85.3K 12m59s
 15650K ........... ..... ............. ..... ............. ............ 42% 80.9K 2m9s.
  4650K ..... .............. .... 24% 95.8K 12m58s
 15700K .................. .... ............. ............. ... ................ .... ............ 25%  103K 12m56s.
 15750K .......... 43% 70.4K 2m7s..
  4700K .... .......... .. ............. .......... ............. .......... .......... 25% 78.9K 12m54s
 15800K .......... ........... .... ................. ... 43% 72.3K 2m6s.
  4750K .......... ................ .. 25%  159K 12m52s.
 15850K .............. ......... ........... ......... ....... .................. . ................ 25% 89.8K 12m50s
 15900K ...... 44% 65.1K 2m4s.
  4800K ......... ................. . ................... . ............... ......... ........ 25% 93.7K 12m49s.
 15950K .............. .... ............... 44% 68.3K 2m3s..
  4850K .... ............... ..... ............... ..... ................ ... 25% 72.3K 12m48s.
 16000K ............... .... ............... 45% 66.4K 2m2s..
  4900K .... ........... .......... ........ .......... .......... .......... .......... 45% 65.4K 2m0s
  4950K .......... ................. .. 25% 36.2K 12m48s
 16050K .......... .......... .......... ............ ................ ... 25%  328K 12m46s.
 16100K ............... .... ................. 46% 71.1K 1m59s.
  5000K .. ................. ... .................. . .................. .. 25% 75.7K 12m44s.
 16150K ................. .. .................. 46% 71.4K 1m57s.
  5050K .. ................. ... .................. . .................. .......... .......... 47% 69.8K 1m56s
  5100K .......... .......... ........ 25% 36.8K 12m45s
 16200K .......... .......... .......... .......... ............ .. 25%  849K 12m42s.
 16250K ................. .. .................. 47% 70.7K 1m55s.
  5150K .. ................. .. ................... . .................. .. 25% 66.0K 12m41s.
 16300K ................. .. .................. 48% 61.8K 1m54s.
  5200K .. ................. .. ................... . .............. .......... .......... 48% 55.4K 1m52s
  5250K .......... ......... 25% 33.1K 12m42s
 16350K .......... .......... .......... .......... .......... 26%  210K 12m40s
 16400K .......... ............ .......... .......... ............. 48% 58.8K 1m51s.
  5300K .. ................. .. ................... . .................. .. 26% 55.6K 12m39s.
 16450K .................. . .................. 49% 53.9K 1m50s.
  5350K .. ............ .......... .......... ................ .......... .......... 26% 39.9K 12m40s
 16500K .......... . ............ ................ 49% 30.7K 1m50s
  5400K ... .......... ................. .......... ...... 26% 37.8K 12m40s
 16550K .......... .......... .............. ........ .... .......... 50% 57.9K 1m49s
  5450K .......... ................... . .................. .. 26% 69.4K 12m39s.
 16600K .................. . .................. 50% 56.3K 1m47s. .
  5500K .................. .. .................. .......... 26% 45.8K 12m39s
 16650K ....... ......... ....... .................. . ................. ... 51% 39.8K 1m47s
  5550K ................. .......... 26% 49.2K 12m39s
 16700K .......... ....... ...... .............. ........... ......... .......... .......... 51% 41.6K 1m46s
  5600K ........... ......... ...... 26% 40.9K 12m39s
 16750K ............... ........ .............. ....... ............ ....... ............. 52% 30.7K 1m45s
  5650K ...... .............. ...... 26% 32.9K 12m40s.
 16800K .......... ............ ............. ... ................. .. .................. 52% 40.3K 1m45s
  5700K ... ................. .. 26% 43.3K 12m40s
 16850K ................. ...... ............ ............ ... ................... .... ............. 26% 64.6K 12m39s
 16900K ...... 53% 45.5K 1m44s
  5750K ................. .......... . ............. .......... .............. ....... ........ 26% 64.6K 12m38s
 16950K ................ ..... ......... .......... ............. 53% 39.7K 1m43s
  5800K .............. . ................ .......... ......... 27% 47.1K 12m38s
 17000K .......... .......... .............. . ................... 54% 66.2K 1m42s
  5850K . ........... 27%  140K 12m36s
 17050K ................. ... .............. ........... ...... ............... ...... .......... 27% 96.3K 12m34s
 17100K ............. .......... 54% 53.9K 1m40s
  5900K ..... .......... .......... ............... ....... ............ 27% 87.0K 12m33s
 17150K ............. .... ............... ........ ......... .............. .... ................ 27% 84.4K 12m31s
 17200K .. 54% 57.8K 99s
  5950K ............... .......... ........ ................ . ................ ....... ........ 27% 91.7K 12m30s
 17250K .................. . .............. ........... 55% 62.6K 98s
  6000K .......... ......... ...... ............. .......... ............ 27% 62.4K 12m29s
 17300K .......... ............. ..... .............. .... 55% 69.0K 97s
  6050K ............... ....... .............. 27%  131K 12m27s
 17350K ..... ............... ..... ................ .... ................ .. 56% 86.5K 96s
  6100K ................... . .................. 27% 80.3K 12m26s
 17400K .. ................... . ................... . ................... 56% 79.3K 94s
  6150K . ................... . .................. .. 27% 74.3K 12m25s
 17450K ................... . ................... . ................... 57% 74.1K 93s
  6200K . ................... . .................. 27% 75.3K 12m23s. .
 17500K ................... . ................... .......... .......... .......... 27% 70.3K 12m22s
 17550K .......... .......... ..... .......... 57% 37.4K 92s
  6250K .......... .......... .......... .......... ............. 58% 1.02M 90s..
  6300K . ................... . .................. 27% 76.4K 12m21s. .
 17600K ................... . ................... . .................. 58% 76.1K 89s.
  6350K . ................... . .................. 28% 67.1K 12m20s. .
 17650K ................... . ................. .... .......... .......... .......... 28% 55.4K 12m19s
 17700K .......... ................ 59% 29.9K 89s
  6400K .......... .......... .......... ............ . ................... 59%  301K 87s
  6450K . ................... . .................. 28% 58.2K 12m19s
 17750K .. ................... . ................... . .................. 60% 73.3K 86s.
  6500K . ................... . .................. 28% 72.3K 12m18s. .
 17800K ................... . .................. ... ................. 60% 72.4K 85s.
  6550K . ................... . .................. 28% 71.6K 12m16s. .
 17850K ................... . ................... . .................. 60% 78.4K 84s.
  6600K . ................... .. ................. 28% 83.5K 12m15s. .
 17900K ................... . ................... . .................. 61% 84.4K 82s.
  6650K . ................... .. .......... .......... .................. 28% 52.3K 12m15s
 17950K .......... .......... . .................. 61% 68.2K 81s.
  6700K . .................. ... ................. 28%  127K 12m13s. .
 18000K ...................  ................... .. .................. 62% 76.6K 80s.
  6750K . ................... . .................. 28% 74.7K 12m12s. .
 18050K ................. .......... .......... 62% 69.2K 79s
  6800K ........ .......... .......... .............. . .................. 28% 73.3K 12m10s. .
 18100K ...................  .................... . .................. 63% 80.3K 78s.
  6850K . ................... . ................... 28% 74.6K 12m9s .
 18150K ................... . ................... . ............... .......... .......... 28% 75.0K 12m8s
 18200K .......... .......... .......... ............ 63% 33.9K 77s
  6900K .......... .......... .......... .......... .......... 64%  447M 75s
  6950K ............ . ................... 29% 74.3K 12m7s .
 18250K ................... . ................... . ............... 64% 85.6K 74s
  7000K .......... .............. .......... .......... 29% 70.6K 12m6s
 18300K .......... .......... .......... .......... .......... 29% 75.8K 12m5s .......... .......... .......... 65% 53.0K 73s
  7050K .......... .......... .
 18350K. .................. . ................... . .................. 65%  132K 72s.
  7100K . ................... . ................... 29% 75.9K 12m3s .
 18400K .................. .. ................... . .................. 66% 74.7K 71s.
  7150K . ................... . ................... 29% 71.4K 12m2s .
 18450K ................... .. .................. . .................. 66% 70.1K 70s.
  7200K . ................... . ................... 29% 65.6K 12m1s .
 18500K ................... . ................... . .................. 66% 53.7K 69s.
  7250K . ................... . ................... 29% 53.3K 12m1s .
 18550K ................... . ................... . .................. 67% 64.2K 68s.
  7300K . .................. .. ................... 29% 75.1K 12m0s .
 18600K ................... . ................... . .......... 67% 75.1K 67s
  7350K .......... .......... .......... .......... 29% 69.9K 11m59s
 18650K .......... .......... .......... ............... .......... .......... .......... 68% 74.2K 66s
  7400K .............. . ................... 29% 87.7K 11m57s .
 18700K ................... . ................... . .................. 68% 88.2K 64s.
  7450K . ................... . ................... 29% 78.2K 11m56s .
 18750K ................... . ................... . .................. 69% 77.8K 63s.
  7500K . ................... . ................... 29% 76.1K 11m55s ..
 18800K .................. . ................... . .................. 69% 70.7K 62s.
  7550K . ................... . ................... 29% 66.4K 11m54s ..
 18850K .................. . ............... .......... 70% 63.9K 61s
  7600K .......... .......... .......... .......... ............. 30% 63.3K 11m53s. .
 18900K ................... . .......... .......... 70% 47.4K 60s......... ...
  7650K ........ .......... .......... 30% 46.7K 11m53s
 18950K .......... ................... . ............ .......... .......... ............... 71% 59.6K 59s.
  7700K .... ............... .... ................. .. 30% 54.4K 11m52s..
 19000K ................ ... ................. ... ................ 71% 44.5K 58s.
  7750K .... ........... .......... 30% 51.8K 11m52s
 19050K .......... ........... .......... .......... .......... ............... 72% 94.5K 57s .
  7800K ................. ..... ........... ................ . ............... ........ 30% 79.6K 11m51s.
 19100K ......... 72%  116K 56s..
  7850K ............. .. .................. ..... .............. ..... .............. ....... ....... 73%  104K 55s
  7900K .................. 30% 79.1K 11m49s. .
 19150K ................... .. .................. . ................. ... ............ .......... 30% 55.3K 11m49s
 19200K .............. 73% 44.9K 54s..
  7950K .. ........... .............. .......... .......... .......... .......... ............. 73% 96.8K 53s .
  8000K ................ 30% 64.5K 11m48s.
 19250K ..... .............. ...... ............... ..... .............. ...... ............... .... 74% 61.2K 52s..
  8050K ............. 30% 65.7K 11m47s.
 19300K ..... .............. ....... .............. ..... .............. ...... ............... .... 74% 83.1K 51s..
  8100K ............. 30% 86.6K 11m46s.
 19350K ..... .............. ....... .............. ..... .............. ........ ........... ........ 75% 97.1K 50s.
  8150K ............ 30% 97.7K 11m44s
 19400K ....... ............ ......... ............ ....... ............ ......... ........... ......... 75%  101K 49s.
  8200K ........ 30%  104K 11m43s..
 19450K .......... ......... ........... ......... .......... .......... .......... .......... .......... 76% 94.1K 48s.
  8250K ........ 30% 89.9K 11m41s..
 19500K .......... ......... ........... ......... .......... ........ .............. ....... ............. 76% 93.8K 47s.
  8300K ........... .......... .......... .......... .......... 77% 94.5K 46s
  8350K .......... .......... .......... .......... .......... 77% 98.5K 45s
  8400K .. 31% 33.3K 11m42s.
 19550K .......... .......... ............. .......... .......... .......... 31%  268K 11m40s
 19600K .......... .......... .......... .......... .......... 31%  447M 11m37s
 19650K .......... ............... .. ................. .. ................... . .................. 31%  133K 11m36s
 19700K .. 78% 86.4K 44s
  8450K ................ .......... .......... ........... ..... ........... .......... .......... ............... 31% 82.0K 11m34s
 19750K .. 78% 81.9K 43s
  8500K ........... .......... .......... .......... .......... 79% 67.2K 42s
  8550K .......... .......... .......... ........... .......... .......... ......... .................. .......... 31% 34.6K 11m35s
 19800K .......... .......... .......... .......... .......... 31%  496M 11m32s
 19850K . 79% 72.5K 41s
  8600K ...................  .................... .. .................. . ................... . ............ 79% 48.1K 40s
  8650K .......... .......... .......... .......... ............ 80%  427K 39s
  8700K ........... 31% 40.8K 11m32s
 19900K ........... ........ ........... ....... ........... .......... ............ ......... .......... 80% 86.1K 38s
  8750K .......... 31% 87.2K 11m31s
 19950K ........... ........ .............. ............ .......... .......... 81% 49.9K 37s
  8800K .......... .......... ........ ............ ......... ......... ..... ........ 31% 40.3K 11m31s
 20000K .......... .......... .......... .............. .......... 81%  120K 36s
  8850K .......... 31%  295K 11m29s
 20050K ........... ......... ........... .......... .......... ......... ........... ......... .......... 82% 70.0K 35s
  8900K .......... 31% 70.6K 11m28s
 20100K ........... ......... ............ ......... .......... ......... ........... ......... .......... 82% 72.0K 34s
  8950K .......... 32% 71.9K 11m27s
 20150K ........... ......... .......... ........... .......... ......... ........... .......... .......... 83% 74.2K 33s
  9000K ......... 32% 72.9K 11m26s
 20200K ........... ......... .......... ......... ............ ......... ........... .......... .......... 83% 68.6K 32s
  9050K ....... 32% 68.1K 11m25s
 20250K ............. ......... .......... .......... ........... ......... ........... .......... ........ 84% 66.2K 31s..
  9100K ......... 32% 64.1K 11m24s
 20300K ........... ......... .......... .......... ...... .......... .......... 84% 64.8K 30s
  9150K .......... .......... .......... ............... .......... .......... 32% 41.9K 11m24s
 20350K .......... .......... .......... .......... .......... ........ 85% 70.9K 29s..
  9200K ........ 32%  199K 11m22s
 20400K. ............ .......... ............. .......... .......... .......... .......... 32% 55.9K 11m22s
 20450K ....... .......... .......... 85% 51.3K 28s... ........
  9250K. ... ........... .......... ............. ......... ............ ....... ........... 85% 90.0K 27s..
  9300K ....... 32% 79.7K 11m21s
 20500K. ............ ........ .......... .......... ........... ......... ........... ........ .......... 86% 63.9K 26s..
  9350K ........ 32% 62.0K 11m20s.
 20550K ........... ......... ............ .......... .......... .......... 32% 58.7K 11m19s
 20600K .... .......... .......... .......... 86% 51.6K 26s......... .......... ...
  9400K .......... .......... ............. ......... ........ ............. ......... 87% 65.1K 25s..
  9450K ....... 32% 56.5K 11m18s..
 20650K ............ ....... .......... .......... ........... ......... ............. ...... .......... 87% 58.5K 24s..
  9500K ........ 32% 59.0K 11m18s..
 20700K ........... ....... ............ ......... ........... ........ ........... ....... .......... 32% 64.9K 11m17s
 20750K ......... 88% 40.9K 23s
  9550K .......... .......... .......... .......... .......... 88%  129K 22s
  9600K .............. .......... .......... .......... .......... 33% 57.1K 11m16s
 20800K ........... .......... .......... ......... ........... ......... .......... .......... ......... 89% 55.6K 21s..
  9650K ............ .......... .......... .......... ... 33% 31.4K 11m17s.
 20850K ........... .......... .......... ............ .......... 89% 51.5K 20s.
  9700K ........ 33%  197K 11m15s.
 20900K ........... .......... .......... ......... ...... .......... .......... .......... 33% 39.4K 11m15s
 20950K ................... .......... 90% 34.4K 19s
  9750K .......... ...... .......... ......... ........... ......... .......... .......... .......... 90% 71.6K 18s.
  9800K ........ 33% 56.1K 11m15s.
 21000K ........... .......... ........... .......... ........ ............ .......... .... .......... 33% 48.7K 11m14s
 21050K ................. 91% 38.4K 18s
  9850K .......... ........ .......... ......... ........... ......... .......... .......... ........... 91% 65.2K 17s
  9900K ........
 21100K ............ .......... .......... ......... ........... ......... .......... .......... .......... 91% 55.1K 16s.
  9950K ........ 33% 55.2K 11m13s.
 21150K ........... .......... .......... ......... ........... ............ .......... 92% 51.4K 15s
 10000K .......... ......... .......... .......... 33% 41.4K 11m13s
 21200K .......... ......... ......... ........... ......... .......... .......... .......... 92% 54.4K 14s
 10050K ......... 33% 71.6K 11m12s.
 21250K ............ ......... ........... ....... ............ .......... ......... ........... .......... 93% 51.7K 13s.
 10100K ....... 33% 53.3K 11m12s.
 21300K .......... ........... .......... ......... ........... .......... .......... ......... .......... 93% 58.3K 12s.
 10150K ........ 33% 56.9K 11m11s.
 21350K .......... ......... ............ ......... ........... .......... .......... ....... ............ 94% 51.9K 11s..
 10200K ....... 34% 51.1K 11m10s.
 21400K ............ ........ ........... ......... ........... .......... .......... ......... ........ 94% 50.6K 10s...
 10250K ........ 34% 51.1K 11m10s
 21450K. ........... ......... ............ ....... ............. ....... ............. ...... ............ 95% 54.0K 9s.
 10300K ........ 34% 54.5K 11m9s.
 21500K .......... .......... ........... ......... ........... .......... .......... ......... ........... 95% 54.4K 9s
 10350K ........ 34% 55.0K 11m9s.
 21550K .......... .......... ........... ......... ....... .......... .......... 96% 56.6K 8s
 10400K .......... ......... .......... .......... 34% 35.2K 11m9s
 21600K .......... .......... .......... .......... .......... 34%  162K 11m7s
 21650K .......... .......... .......... .......... .......... 34% 56.9K 11m7s
 21700K .......... ............ .......... .......... .......... 96% 24.6K 7s
 10450K .......... .......... .......... .......... .......... 97%  394M 6s
 10500K .......... ............. ......... ........... .......... .......... ......... .......... 97% 95.0K 5s.
 10550K ........ 34% 59.0K 11m6s.
 21750K .......... .......... ........... ............. ........ .......... .......... .......... 34% 37.9K 11m6s
 21800K .......... .......... .......... .......... .......... 34%  109K 11m5s
 21850K .......... ......... .............. 97% 22.6K 4s
 10600K .......... ....... .......... ..... .......... .......... .......... 98%  224K 3s
 10650K .......... .......... .......... .............. ...... .......... 34% 54.6K 11m4s
 21900K .......... .................. 98% 39.9K 2s
 10700K .......... .......... .......... .......... .......... 99%  357M 1s
 10750K .......... .......... . .......... .......... .......... 34% 39.4K 11m4s
 21950K .......... .............. .......... ........... .......... ......... .......... 99% 60.4K 0s.
 10800K ........ 34% 90.2K 11m3s..
 22000K .......... ......... ........... .                               100% 56.4K=3m15s

2011-03-17 11:17:16 (55.4 KB/s) - `/home/nahsan/sources/Python-2.6.6.tar.bz2' saved [11080872/11080872]

.... .......... .......... ......NOTE: Running task 125 of 339 (ID: 195, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_qa_configure)
NOTE: package perl-native-5.10.1-r10: task do_qa_configure: Started
NOTE: package perl-native-5.10.1-r10: task do_qa_configure: Succeeded
NOTE: Running task 126 of 339 (ID: 196, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_compile)
NOTE: package perl-native-5.10.1-r10: task do_compile: Started
.... 35% 63.1K 11m2s
 22050K .......... .......... .......... .......... .......... 35% 63.0K 11m1s
 22100K .......... .......... .......... .......... .......... 35% 65.0K 11m0s
 22150K .......... .......... .......... .......... .......... 35% 61.8K 10m59s
 22200K .......NOTE: package python-native-2.6.6-ml12.0: task do_fetch: Succeeded
NOTE: Running task 127 of 339 (ID: 227, /home/nahsan/openembedded/openembedded/recipes/python/python-native_2.6.6.bb, do_unpack)
NOTE: package python-native-2.6.6-ml12.0: task do_unpack: Started
NOTE: Unpacking ../../sources/Python-2.6.6.tar.bz2 to tmp/work/i686-linux/python-native-2.6.6-ml12.0/
... .......... .......... .......... .......... 35% 56.8K 10m59s
 22250K .......... .......... .......... .......... .......... 35% 72.5K 10m58s
 22300K .......... .......... .......... .......... .......... 35% 62.9K 10m57s
 22350K .......... .......... .......... .......... .......... 35% 61.5K 10m56s
 22400K .......... .......... .......... .......... .......... 35% 60.4K 10m55s
 22450K .......... .......... .......... .......... .......... 35% 60.5K 10m55s
 22500K .......... .......... .......... .......... .......... 35% 60.6K 10m54s
 22550K .......... .......... .......... .......... .......... 35% 60.4K 10m53s
 22600K .......... .......... .......... .......... .......... 36% 60.0K 10m52s
 22650K .......... .......... .......... .......... .......... 36% 63.6K 10m51s
 22700K .......... .......... .......... .......... .......... 36% 63.8K 10m50s
 22750K .......... .......... .......... .......... .......... 36% 28.4K 10m51s
 22800K .......... .......... .......... .......... .......... 36%  390M 10m49s
 22850K .......... .......... .......... .......... .......... 36%  269K 10m47s
 22900K .......... .......... .......... .......... .......... 36% 80.1K 10m46s
 22950K .......... .......... .......... .......... .......... 36% 47.8K 10m46s
 23000K .......... .......... .......... .......... .......... 36%  206K 10m44s
 23050K .......... .......... .......... .......... .......... 36% 75.5K 10m43s
 23100K .......... .......... .......... .......... .......... 36% 53.8K 10m42s
 23150K .......... .......... .......... .......... .......... 36%  144K 10m41s
 23200K .......... .......... .......... .......... .......... 36% 86.5K 10m39s
 23250K .......... .......... .......... .......... .......... 37% 83.6K 10m38s
 23300K .......... .......... .......... .......... .......... 37% 83.4K 10m37s
 23350K .......... .......... .......... .......... .......... 37% 81.6K 10m36s
 23400K .......... .......... .......... .......... .......... 37% 81.4K 10m35s
 23450K .......... .......... .......... ........NOTE: package python-native-2.6.6-ml12.0: task do_unpack: Succeeded
NOTE: Running task 128 of 339 (ID: 228, /home/nahsan/openembedded/openembedded/recipes/python/python-native_2.6.6.bb, do_patch)
NOTE: package python-native-2.6.6-ml12.0: task do_patch: Started
NOTE: Applying patch '00-fix-parallel-make.patch' (../openembedded/recipes/python/python-2.6.6/00-fix-parallel-make.patch)
NOTE: Applying patch '04-default-is-optimized.patch' (../openembedded/recipes/python/python-2.6.6/04-default-is-optimized.patch)
NOTE: Applying patch '05-enable-ctypes-cross-build.patch' (../openembedded/recipes/python/python-2.6.6/05-enable-ctypes-cross-build.patch)
NOTE: Applying patch '06-ctypes-libffi-fix-configure.patch' (../openembedded/recipes/python/python-2.6.6/06-ctypes-libffi-fix-configure.patch)
NOTE: Applying patch '10-distutils-fix-swig-parameter.patch' (../openembedded/recipes/python/python-2.6.6/10-distutils-fix-swig-parameter.patch)
NOTE: Applying patch '11-distutils-never-modify-shebang-line.patch' (../openembedded/recipes/python/python-2.6.6/11-distutils-never-modify-shebang-line.patch)
NOTE: Applying patch '12-distutils-prefix-is-inside-staging-area.patch' (../openembedded/recipes/python/python-2.6.6/12-distutils-prefix-is-inside-staging-area.patch)
NOTE: Applying patch 'debug.patch' (../openembedded/recipes/python/python-2.6.6/debug.patch)
NOTE: Applying patch 'nohostlibs.patch' (../openembedded/recipes/python/python-2.6.6/nohostlibs.patch)
NOTE: package python-native-2.6.6-ml12.0: task do_patch: Succeeded
.. .......... 37% 72.8K 10m34s
 23500K .......... .......... .......... .......... .......... 37% 91.8K 10m33s
 23550K .......... .......... .......... .......... .......... 37% 82.5K 10m32s
 23600K .......... .......... .......... .......... .......... 37% 92.0K 10m30s
 23650K .......... .......... .......... .......... .......... 37% 90.9K 10m29s
 23700K .......... .......... .......... .......... .......... 37% 83.1K 10m28s
 23750K .......... .......... .......... .......... .......... 37% 80.8K 10m27s
 23800K .......... .......... .......... .......... .......... 37% 78.0K 10m26s
 23850K .......... .......... .......... .......... .......... 37% 67.6K 10m25s
 23900K .......... .......... .......... ........NOTE: package perl-native-5.10.1-r10: task do_compile: Succeeded
NOTE: Running task 129 of 339 (ID: 187, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_install)
NOTE: package perl-native-5.10.1-r10: task do_install: Started
.. .......... 38% 73.0K 10m24s
 23950K .........NOTE: package perl-native-5.10.1-r10: task do_install: Succeeded
NOTE: Running task 130 of 339 (ID: 188, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_populate_sysroot)
NOTE: package perl-native-5.10.1-r10: task do_populate_sysroot: Started
NOTE: Running task 131 of 339 (ID: 197, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_package)
NOTE: package perl-native-5.10.1-r10: task do_package: Started
NOTE: package perl-native-5.10.1-r10: task do_package: Succeeded
. .......... .......... .......... .......... 38% 27.2K 10m25s
 24000K .......... .......... .......... .......... .......... 38%  351M 10m23s
 24050K .......... .......... .......... .......... .......... 38% 42.8K 10m22s
 24100K .......... .......... .......... .......... .......... 38%  208M 10m20s
 24150K .......... .......... .......... .......... .......... 38%  211K 10m19s
 24200K .......... .......... .......... .......... .......... 38% 75.1K 10m18s
 24250K .......... .......... .......... .......... .......... 38% 72.4K 10m17s
 24300K .......... .......... .......... .......... .......... 38% 30.9K 10m17s
 24350K .......... .......... .......... .......... .......... 38%  351M 10m15s
 24400K .......... .......... .......... .......... .......... 38% 31.3K 10m16s
 24450K .......... .......... .......... .......... .......... 38%  368M 10m14s
 24500K .......... .......... .......... .......... .......... 39%  167K 10m12s
 24550K .......... ..........NOTE: Running task 132 of 339 (ID: 198, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_package_write_ipk)
NOTE: package perl-native-5.10.1-r10: task do_package_write_ipk: Started
NOTE: package perl-native-5.10.1-r10: task do_package_write_ipk: Succeeded
NOTE: Running task 133 of 339 (ID: 190, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_package_write)
NOTE: package perl-native-5.10.1-r10: task do_package_write: Started
NOTE: package perl-native-5.10.1-r10: task do_package_write: Succeeded
 .......... ........NOTE: package perl-native-5.10.1-r10: task do_populate_sysroot: Succeeded
.. .......... 39% 72.5K 10m11s
 24600K .......... .......... .......... .......... .......... 39% 74.1K 10m10s
 24650K .......... .......... .......... .......... .......... 39% 80.1K 10m9s
 24700K .......... .......... .......... .......... .......... 39% 74.8K 10m8s
 24750K .......... .......... .......... .......... .......... 39% 39.0K 10m8s
 24800K .......... .......... .......... .......... .......... 39%  356M 10m6s
 24850K .......... .......... .......... .......... .......... 39% 85.7K 10m5s
 24900K .......... .......... .......... .......... .......... 39% 74.3K 10m4s
 24950K .......... .......... .......... .......... .......... 39% 74.1K 10m3s
 25000K .......... .......... .......... .......... .......... 39% 66.8K 10m2s
 25050K .......... .......... .......... .......... .......... 39% 69.9K 10m1s
 25100K .......... .......... .......... .......... .......... 39% 61.4K 10m0s
 25150K .......... .......... .......... .......... .......... 40% 33.5K 10m0s
 25200K .......... .......... .......... .......... .......... 40%  496K 9m59s
 25250K .......... .......... .......... .......... .......... 40% 67.7K 9m58s
 25300K .......... .......... .......... .......... .......... 40% 75.8K 9m57s
 25350K .......... .......... .......... .......... .......... 40% 74.6K 9m56s
 25400K .......... .......... .......... .......... .......... 40% 69.0K 9m55s
 25450K .......... .......... .......... .......... .......... 40% 74.8K 9m54s
 25500K .......... .......... .......... .......... .......... 40% 47.8K 9m53s
 25550K .......... .......... .......... .......... .......... 40%  160K 9m52s
 25600K .......... .......... .......... .......... .......... 40% 71.4K 9m51s
 25650K .......... .......... .......... .......... .......... 40% 63.3K 9m50s
 25700K .......... .......... .......... .......... .......... 40% 86.1K 9m49s
 25750K .......... .......... .......... .......... .......... 41% 70.1K 9m48s
 25800K .......... .......... .......... .......... .......... 41% 77.1K 9m47s
 25850K .......... .......... .......... .......... .......... 41% 77.4K 9m46s
 25900K .......... .......... .......... .......... .......... 41% 78.7K 9m45s
 25950K .......... .......... .......... .......... .......... 41% 72.8K 9m44s
 26000K .......... .......... .......... .......... .......... 41% 94.7K 9m43s
 26050K .......... .......... .......... .......... .......... 41% 83.6K 9m42s
 26100K .......... .......... .......... .......... .......... 41% 98.1K 9m41s
 26150K .......... .......... .......... .......... .......... 41%  109K 9m40s
 26200K .......... .......... .......... .......... .......... 41% 95.9K 9m38s
 26250K .......... .......... .......... .......... .......... 41% 29.6K 9m39s
 26300K .......... .......... .......... .......... .......... 41%  309M 9m37s
 26350K .......... .......... .......... .......... .......... 41%  151K 9m36s
 26400K .......... .......... .......... .......... .......... 42% 76.9K 9m35s
 26450K .......... .......... .......... .......... .......... 42% 77.5K 9m34s
 26500K .......... .......... .......... .......... .......... 42% 91.3K 9m33s
 26550K .......... .......... .......... .......... .......... 42% 82.2K 9m32s
 26600K .......... .......... .......... .......... .......... 42% 81.8K 9m30s
 26650K .......... .......... .......... .......... .......... 42% 71.3K 9m30s
 26700K .......... .......... .......... .......... .......... 42% 65.7K 9m29s
 26750K .......... .......... .......... .......... .......... 42% 72.1K 9m28s
 26800K .......... .......... .......... .......... .......... 42% 68.4K 9m27s
 26850K .......... .......... .......... .......... .......... 42% 65.8K 9m26s
 26900K .......... .......... .......... .......... .......... 42% 66.7K 9m25s
 26950K .......... .......... .......... .......... .......... 42% 68.9K 9m24s
 27000K .......... .......... .......... .......... .......... 42% 67.9K 9m24s
 27050K .......... .......... .......... .......... .......... 43% 60.1K 9m23s
 27100K .......... .......... .......... .......... .......... 43% 20.5K 9m24s
 27150K .......... .......... .......... .......... .......... 43%  102K 9m23s
 27200K .......... .......... .......... .......... .......... 43%  100K 9m22s
 27250K .......... .......... .......... .......... .......... 43%  534K 9m20s
 27300K .......... .......... .......... .......... .......... 43% 52.0K 9m20s
 27350K .......... .......... .......... .......... .......... 43% 60.5K 9m19s
 27400K .......... .......... .......... .......... .......... 43% 59.2K 9m18s
 27450K .......... .......... .......... .......... .......... 43% 64.6K 9m17s
 27500K .......... .......... .......... .......... .......... 43% 18.0K 9m19s
 27550K .......... .......... .......... .......... .......... 43%  156K 9m18s
 27600K .......... .......... .......... .......... .......... 43%  112K 9m17s
 27650K .......... .......... .......... .......... .......... 44% 76.9K 9m16s
 27700K .......... .......... .......... .......... .......... 44% 2.16M 9m14s
 27750K .......... .......... .......... .......... .......... 44% 23.5K 9m15s
 27800K .......... .......... .......... .......... .......... 44%  286M 9m13s
 27850K .......... .......... .......... .......... .......... 44%  591K 9m11s
 27900K .......... .......... .......... .......... .......... 44% 71.0K 9m10s
 27950K .......... .......... .......... .......... .......... 44% 68.6K 9m10s
 28000K .......... .......... .......... .......... .......... 44% 66.1K 9m9s
 28050K .......... .......... .......... .......... .......... 44% 66.3K 9m8s
 28100K .......... .......... .......... .......... .......... 44% 77.4K 9m7s
 28150K .......... .......... .......... .......... .......... 44% 72.3K 9m6s
 28200K .......... .......... .......... .......... .......... 44% 57.7K 9m5s
 28250K .......... .......... .......... .......... .......... 44% 28.2K 9m6s
 28300K .......... .......... .......... .......... .......... 45%  409M 9m4s
 28350K .......... .......... .......... .......... .......... 45% 88.0K 9m3s
 28400K .......... .......... .......... .......... .......... 45% 71.3K 9m2s
 28450K .......... .......... .......... .......... .......... 45% 75.8K 9m1s
 28500K .......... .......... .......... .......... .......... 45% 65.6K 9m0s
 28550K .......... .......... .......... .......... .......... 45% 34.3K 9m0s
 28600K .......... .......... .......... .......... .......... 45%  384K 8m59s
 28650K .......... .......... .......... .......... .......... 45% 65.0K 8m58s
 28700K .......... .......... .......... .......... .......... 45% 77.3K 8m57s
 28750K .......... .......... .......... .......... .......... 45% 76.0K 8m56s
 28800K .......... .......... .......... .......... .......... 45% 34.0K 8m56s
 28850K .......... .......... .......... .......... .......... 45%  366M 8m54s
 28900K .......... .......... .......... .......... .......... 46% 88.6K 8m53s
 28950K .......... .......... .......... .......... .......... 46% 93.3K 8m52s
 29000K .......... .......... .......... .......... .......... 46% 89.2K 8m51s
 29050K .......... .......... .......... .......... .......... 46% 93.2K 8m50s
 29100K .......... .......... .......... .......... .......... 46% 99.3K 8m49s
 29150K .......... .......... .......... .......... .......... 46% 94.4K 8m48s
 29200K .......... .......... .......... .......... .......... 46% 88.5K 8m47s
 29250K .......... .......... .......... .......... .......... 46% 93.5K 8m46s
 29300K .......... .......... .......... .......... .......... 46% 74.7K 8m45s
 29350K .......... .......... .......... .......... .......... 46% 30.2K 8m45s
 29400K .......... .......... .......... .......... .......... 46%  185K 8m44s
 29450K .......... .......... .......... .......... .......... 46% 76.9K 8m43s
 29500K .......... .......... .......... .......... .......... 46% 69.6K 8m42s
 29550K .......... .......... .......... .......... .......... 47% 88.6K 8m41s
 29600K .......... .......... .......... .......... .......... 47% 84.3K 8m40s
 29650K .......... .......... .......... .......... .......... 47% 54.0K 8m39s
 29700K .......... .......... .......... .......... .......... 47% 98.9K 8m38s
 29750K .......... .......... .......... .......... .......... 47% 60.5K 8m38s
 29800K .......... .......... .......... .......... .......... 47% 39.4K 8m37s
 29850K .......... .......... .......... .......... .......... 47% 56.1K 8m37s
 29900K .......... .......... .......... .......... .......... 47% 50.0K 8m36s
 29950K .......... .......... .......... .......... .......... 47% 99.0K 8m35s
 30000K .......... .......... .......... .......... .......... 47% 67.2K 8m34s
 30050K .......... .......... .......... .......... .......... 47% 54.1K 8m34s
 30100K .......... .......... .......... .......... .......... 47% 33.5K 8m34s
 30150K .......... .......... .......... .......... .......... 48% 54.9K 8m33s
 30200K .......... .......... .......... .......... .......... 48% 25.6K 8m33s
 30250K .......... .......... .......... .......... .......... 48% 30.6K 8m34s
 30300K .......... .......... .......... .......... .......... 48% 33.2K 8m34s
 30350K .......... .......... .......... .......... .......... 48% 24.2K 8m34s
 30400K .......... .......... .......... .......... .......... 48% 34.2K 8m34s
 30450K .......... .......... .......... .......... .......... 48% 41.0K 8m34s
 30500K .......... .......... .......... .......... .......... 48% 41.4K 8m33s
 30550K .......... .......... .......... .......... .......... 48% 38.2K 8m33s
 30600K .......... .......... .......... .......... .......... 48% 36.6K 8m33s
 30650K .......... .......... .......... .......... .......... 48% 33.7K 8m33s
 30700K .......... .......... .......... .......... .......... 48% 28.8K 8m33s
 30750K .......... .......... .......... .......... .......... 48% 34.4K 8m33s
 30800K .......... .......... .......... .......... .......... 49% 35.9K 8m33s
 30850K .......... .......... .......... .......... .......... 49% 27.0K 8m33s
 30900K .......... .......... .......... .......... .......... 49% 31.2K 8m33s
 30950K .......... .......... .......... .......... .......... 49% 28.4K 8m33s
 31000K .......... .......... .......... .......... .......... 49% 67.8K 8m32s
 31050K .......... .......... .......... .......... .......... 49% 48.7K 8m32s
 31100K .......... .......... .......... .......... .......... 49% 32.4K 8m32s
 31150K .......... .......... .......... .......... .......... 49% 31.9K 8m32s
 31200K .......... .......... .......... .......... .......... 49% 39.4K 8m31s
 31250K .......... .......... .......... .......... .......... 49% 36.9K 8m31s
 31300K .......... .......... .......... .......... .......... 49% 43.0K 8m31s
 31350K .......... .......... .......... .......... .......... 49% 50.7K 8m30s
 31400K .......... .......... .......... .......... .......... 49% 44.0K 8m30s
 31450K .......... .......... .......... .......... .......... 50% 43.2K 8m29s
 31500K .......... .......... .......... .......... .......... 50% 43.8K 8m29s
 31550K .......... .......... .......... .......... .......... 50% 48.4K 8m28s
 31600K .......... .......... .......... .......... .......... 50% 42.4K 8m28s
 31650K .......... .......... .......... .......... .......... 50% 36.7K 8m27s
 31700K .......... .......... .......... .......... .......... 50% 31.7K 8m27s
 31750K .......... .......... .......... .......... .......... 50% 40.9K 8m27s
 31800K .......... .......... .......... .......... .......... 50% 55.4K 8m26s
 31850K .......... .......... .......... .......... .......... 50% 39.9K 8m26s
 31900K .......... .......... .......... .......... .......... 50% 46.5K 8m25s
 31950K .......... .......... .......... .......... .......... 50% 41.1K 8m25s
 32000K .......... .......... .......... .......... .......... 50% 45.7K 8m24s
 32050K .......... .......... .......... .......... .......... 51% 53.7K 8m23s
 32100K .......... .......... .......... .......... .......... 51% 67.4K 8m23s
 32150K .......... .......... .......... .......... .......... 51% 53.8K 8m22s
 32200K .......... .......... .......... .......... .......... 51% 45.9K 8m21s
 32250K .......... .......... .......... .......... .......... 51% 45.6K 8m21s
 32300K .......... .......... .......... .......... .......... 51% 38.2K 8m20s
 32350K .......... .......... .......... .......... .......... 51% 28.3K 8m20s
 32400K .......... .......... .......... .......... .......... 51% 30.3K 8m20s
 32450K .......... .......... .......... .......... .......... 51% 33.4K 8m20s
 32500K .......... .......... .......... .......... .......... 51% 21.9K 8m21s
 32550K .......... .......... .......... .......... .......... 51% 35.9K 8m20s
 32600K .......... .......... .......... .......... .......... 51% 36.3K 8m20s
 32650K .......... .......... .......... .......... .......... 51% 45.8K 8m20s
 32700K .......... .......... .......... .......... .......... 52% 52.1K 8m19s
 32750K .......... .......... .......... .......... .......... 52% 61.2K 8m18s
 32800K .......... .......... .......... .......... .......... 52% 49.2K 8m17s
 32850K .......... .......... .......... .......... .......... 52% 42.8K 8m17s
 32900K .......... .......... .......... .......... .......... 52% 40.6K 8m16s
 32950K .......... .......... .......... .......... .......... 52% 32.6K 8m16s
 33000K .......... .......... .......... .......... .......... 52% 33.9K 8m16s
 33050K .......... .......... .......... .......... .......... 52% 34.9K 8m16s
 33100K .......... .......... .......... .......... .......... 52% 35.2K 8m15s
 33150K .......... .......... .......... .......... .......... 52% 56.1K 8m15s
 33200K .......... .......... .......... .......... .......... 52% 36.1K 8m14s
 33250K .......... .......... .......... .......... .......... 52% 28.8K 8m14s
 33300K .......... .......... .......... .......... .......... 53% 38.6K 8m14s
 33350K .......... .......... .......... .......... .......... 53% 35.4K 8m13s
 33400K .......... .......... .......... .......... .......... 53% 38.5K 8m13s
 33450K .......... .......... .......... .......... .......... 53% 34.8K 8m13s
 33500K .......... .......... .......... .......... .......... 53% 32.5K 8m12s
 33550K .......... .......... .......... .......... .......... 53% 38.5K 8m12s
 33600K .......... .......... .......... .......... .......... 53% 40.5K 8m12s
 33650K .......... .......... .......... .......... .......... 53% 44.4K 8m11s
 33700K .......... .......... .......... .......... .......... 53% 27.7K 8m11s
 33750K .......... .......... .......... .......... .......... 53%  126K 8m10s
 33800K .......... .......... .......... .......... .......... 53% 49.6K 8m9s
 33850K .......... .......... .......... .......... .......... 53% 57.6K 8m8s
 33900K .......... .......... .......... .......... .......... 53% 55.4K 8m7s
 33950K .......... .......... .......... .......... .......... 54% 57.9K 8m7s
 34000K .......... .......... .......... .......... .......... 54% 32.1K 8m6s
 34050K .......... .......... .......... .......... .......... 54%  192K 8m5s
 34100K .......... .......... .......... .......... .......... 54% 54.0K 8m4s
 34150K .......... .......... .......... .......... .......... 54% 62.3K 8m3s
 34200K .......... .......... .......... .......... .......... 54% 60.3K 8m3s
 34250K .......... .......... .......... .......... .......... 54% 50.5K 8m2s
 34300K .......... .......... .......... .......... .......... 54% 51.7K 8m1s
 34350K .......... .......... .......... .......... .......... 54% 58.6K 8m0s
 34400K .......... .......... .......... .......... .......... 54% 60.3K 7m59s
 34450K .......... .......... .......... .......... .......... 54% 58.8K 7m59s
 34500K .......... .......... .......... .......... .......... 54% 30.6K 7m58s
 34550K .......... .......... .......... .......... .......... 54%  410M 7m57s
 34600K .......... .......... .......... .......... .......... 55% 65.0K 7m56s
 34650K .......... .......... .......... .......... .......... 55% 61.9K 7m55s
 34700K .......... .......... .......... .......... .......... 55% 55.8K 7m54s
 34750K .......... .......... .......... .......... .......... 55% 29.1K 7m54s
 34800K .......... .......... .......... .......... .......... 55%  490M 7m53s
 34850K .......... .......... .......... .......... .......... 55% 59.4K 7m52s
 34900K .......... .......... .......... .......... .......... 55% 47.9K 7m51s
 34950K .......... .......... .......... .......... .......... 55% 88.9K 7m50s
 35000K .......... .......... .......... .......... .......... 55% 35.6K 7m50s
 35050K .......... .......... .......... .......... .......... 55% 92.2K 7m49s
 35100K .......... .......... .......... .......... .......... 55% 24.2K 7m49s
 35150K .......... .......... .......... .......... .......... 55% 78.7K 7m48s
 35200K .......... .......... .......... .......... .......... 56% 43.8K 7m47s
 35250K .......... .......... .......... .......... .......... 56% 47.7K 7m46s
 35300K .......... .......... .......... .......... .......... 56% 36.1K 7m46s
 35350K .......... .......... .......... .......... .......... 56% 38.8K 7m45s
 35400K .......... .......... .......... .......... .......... 56% 27.5K 7m45s
 35450K .......... .......... .......... .......... .......... 56% 71.4K 7m44s
 35500K .......... .......... .......... .......... .......... 56% 44.9K 7m44s
 35550K .......... .......... .......... .......... .......... 56% 55.3K 7m43s
 35600K .......... .......... .......... .......... .......... 56% 56.0K 7m42s
 35650K .......... .......... .......... .......... .......... 56% 52.9K 7m41s
 35700K .......... .......... .......... .......... .......... 56% 48.9K 7m41s
 35750K .......... .......... .......... .......... .......... 56% 55.2K 7m40s
 35800K .......... .......... .......... .......... .......... 56% 50.2K 7m39s
 35850K .......... .......... .......... .......... .......... 57% 52.2K 7m38s
 35900K .......... .......... .......... .......... .......... 57% 58.8K 7m38s
 35950K .......... .......... .......... .......... .......... 57% 56.2K 7m37s
 36000K .......... .......... .......... .......... .......... 57% 58.9K 7m36s
 36050K .......... .......... .......... .......... .......... 57% 55.9K 7m35s
 36100K .......... .......... .......... .......... .......... 57% 44.3K 7m34s
 36150K .......... .......... .......... .......... .......... 57% 75.0K 7m33s
 36200K .......... .......... .......... .......... .......... 57% 29.6K 7m33s
 36250K .......... .......... .......... .......... .......... 57% 85.7K 7m32s
 36300K .......... .......... .......... .......... .......... 57% 49.4K 7m31s
 36350K .......... .......... .......... .......... .......... 57% 62.1K 7m31s
 36400K .......... .......... .......... .......... .......... 57% 54.8K 7m30s
 36450K .......... .......... .......... .......... .......... 58% 70.5K 7m29s
 36500K .......... .......... .......... .......... .......... 58% 49.1K 7m28s
 36550K .......... .......... .......... .......... .......... 58% 93.9K 7m27s
 36600K .......... .......... .......... .......... .......... 58% 59.0K 7m26s
 36650K .......... .......... .......... .......... .......... 58% 54.1K 7m25s
 36700K .......... .......... .......... .......... .......... 58% 55.2K 7m24s
 36750K .......... .......... .......... .......... .......... 58% 52.5K 7m24s
 36800K .......... .......... .......... .......... .......... 58% 49.8K 7m23s
 36850K .......... .......... .......... .......... .......... 58% 59.2K 7m22s
 36900K .......... .......... .......... .......... .......... 58% 55.3K 7m21s
 36950K .......... .......... .......... .......... .......... 58% 55.0K 7m21s
 37000K .......... .......... .......... .......... .......... 58% 65.2K 7m20s
 37050K .......... .......... .......... .......... .......... 58% 67.1K 7m19s
 37100K .......... .......... .......... .......... .......... 59% 67.2K 7m18s
 37150K .......... .......... .......... .......... .......... 59% 64.5K 7m17s
 37200K .......... .......... .......... .......... .......... 59% 46.8K 7m16s
 37250K .......... .......... .......... .......... .......... 59% 78.8K 7m15s
 37300K .......... .......... .......... .......... .......... 59% 66.5K 7m14s
 37350K .......... .......... .......... .......... .......... 59% 61.2K 7m13s
 37400K .......... .......... .......... .......... .......... 59% 64.5K 7m12s
 37450K .......... .......... .......... .......... .......... 59% 36.4K 7m12s
 37500K .......... .......... .......... .......... .......... 59%  175K 7m11s
 37550K .......... .......... .......... .......... .......... 59% 50.6K 7m10s
 37600K .......... .......... .......... .......... .......... 59% 51.3K 7m9s
 37650K .......... .......... .......... .......... .......... 59% 53.3K 7m8s
 37700K .......... .......... .......... .......... .......... 60% 44.0K 7m8s
 37750K .......... .......... .......... .......... .......... 60% 50.4K 7m7s
 37800K .......... .......... .......... .......... .......... 60% 56.8K 7m6s
 37850K .......... .......... .......... .......... .......... 60% 60.3K 7m5s
 37900K .......... .......... .......... .......... .......... 60% 59.0K 7m4s
 37950K .......... .......... .......... .......... .......... 60% 65.6K 7m4s
 38000K .......... .......... .......... .......... .......... 60% 70.4K 7m3s
 38050K .......... .......... .......... .......... .......... 60% 67.8K 7m2s
 38100K .......... .......... .......... .......... .......... 60% 75.7K 7m1s
 38150K .......... .......... .......... .......... .......... 60% 75.7K 7m0s
 38200K .......... .......... .......... .......... .......... 60% 22.5K 7m0s
 38250K .......... .......... .......... .......... .......... 60%  131K 6m59s
 38300K .......... .......... .......... .......... .......... 60% 88.5K 6m58s
 38350K .......... .......... .......... .......... .......... 61%  126K 6m56s
 38400K .......... .......... .......... .......... .......... 61% 1.12M 6m55s
 38450K .......... .......... .......... .......... .......... 61% 63.3K 6m54s
 38500K .......... .......... .......... .......... .......... 61% 67.3K 6m53s
 38550K .......... .......... .......... .......... .......... 61% 64.1K 6m52s
 38600K .......... .......... .......... .......... .......... 61% 19.7K 6m53s
 38650K .......... .......... .......... .......... .......... 61%  161K 6m51s
 38700K .......... .......... .......... .......... .......... 61% 99.8K 6m50s
 38750K .......... .......... .......... .......... .......... 61%  100K 6m49s
 38800K .......... .......... .......... .......... .......... 61% 34.1K 6m49s
 38850K .......... .......... .......... .......... .......... 61%  244M 6m47s
 38900K .......... .......... .......... .......... .......... 61%  164K 6m46s
 38950K .......... .......... .......... .......... .......... 61% 28.5K 6m46s
 39000K .......... .......... .......... .......... .......... 62%  293M 6m45s
 39050K .......... .......... .......... .......... .......... 62% 53.8K 6m44s
 39100K .......... .......... .......... .......... .......... 62% 43.1K 6m43s
 39150K .......... .......... .......... .......... .......... 62% 90.7K 6m42s
 39200K .......... .......... .......... .......... .......... 62% 57.1K 6m41s
 39250K .......... .......... .......... .......... .......... 62% 57.5K 6m40s
 39300K .......... .......... .......... .......... .......... 62% 64.0K 6m40s
 39350K .......... .......... .......... .......... .......... 62% 61.0K 6m39s
 39400K .......... .......... .......... .......... .......... 62% 52.5K 6m38s
 39450K .......... .......... .......... .......... .......... 62% 54.2K 6m37s
 39500K .......... .......... .......... .......... .......... 62% 52.7K 6m36s
 39550K .......... .......... .......... .......... .......... 62% 53.8K 6m36s
 39600K .......... .......... .......... .......... .......... 63% 17.9K 6m36s
 39650K .......... .......... .......... .......... .......... 63%  287M 6m34s
 39700K .......... .......... .......... .......... .......... 63% 36.6K 6m34s
 39750K .......... .......... .......... .......... .......... 63%  291M 6m33s
 39800K .......... .......... .......... .......... .......... 63% 59.5K 6m32s
 39850K .......... .......... .......... .......... .......... 63% 22.0K 6m32s
 39900K .......... .......... .......... .......... .......... 63%  441K 6m30s
 39950K .......... .......... .......... .......... .......... 63% 49.1K 6m30s
 40000K .......... .......... .......... .......... .......... 63%  310K 6m28s
 40050K .......... .......... .......... .......... .......... 63% 58.6K 6m28s
 40100K .......... .......... .......... .......... .......... 63% 65.3K 6m27s
 40150K .......... .......... .......... .......... .......... 63% 64.9K 6m26s
 40200K .......... .......... .......... .......... .......... 63% 62.5K 6m25s
 40250K .......... .......... .......... .......... .......... 64% 57.5K 6m24s
 40300K .......... .......... .......... .......... .......... 64% 67.5K 6m23s
 40350K .......... .......... .......... .......... .......... 64% 70.4K 6m22s
 40400K .......... .......... .......... .......... .......... 64% 30.5K 6m22s
 40450K .......... .......... .......... .......... .......... 64% 60.4K 6m21s
 40500K .......... .......... .......... .......... .......... 64% 60.5K 6m20s
 40550K .......... .......... .......... .......... .......... 64% 50.6K 6m19s
 40600K .......... .......... .......... .......... .......... 64% 41.5K 6m19s
 40650K .......... .......... .......... .......... .......... 64% 80.0K 6m18s
 40700K .......... .......... .......... .......... .......... 64% 61.0K 6m17s
 40750K .......... .......... .......... .......... .......... 64% 54.5K 6m16s
 40800K .......... .......... .......... .......... .......... 64% 50.1K 6m15s
 40850K .......... .......... .......... .......... .......... 65% 52.4K 6m14s
 40900K .......... .......... .......... .......... .......... 65% 52.0K 6m14s
 40950K .......... .......... .......... .......... .......... 65% 52.6K 6m13s
 41000K .......... .......... .......... .......... .......... 65% 48.2K 6m12s
 41050K .......... .......... .......... .......... .......... 65% 52.2K 6m11s
 41100K .......... .......... .......... .......... .......... 65% 47.8K 6m11s
 41150K .......... .......... .......... .......... .......... 65% 50.3K 6m10s
 41200K .......... .......... .......... .......... .......... 65% 56.2K 6m9s
 41250K .......... .......... .......... .......... .......... 65% 56.7K 6m8s
 41300K .......... .......... .......... .......... .......... 65% 18.3K 6m8s
 41350K .......... .......... .......... .......... .......... 65%  101K 6m7s
 41400K .......... .......... .......... .......... .......... 65% 59.0K 6m6s
 41450K .......... .......... .......... .......... .......... 65%  294M 6m5s
 41500K .......... .......... .......... .......... .......... 66% 63.9K 6m4s
 41550K .......... .......... .......... .......... .......... 66% 51.9K 6m3s
 41600K .......... .......... .......... .......... .......... 66% 45.4K 6m3s
 41650K .......... .......... .......... .......... .......... 66% 46.1K 6m2s
 41700K .......... .......... .......... .......... .......... 66% 46.6K 6m1s
 41750K .......... .......... .......... .......... .......... 66% 16.4K 6m1s
 41800K .......... .......... .......... .......... .......... 66% 84.8K 6m0s
 41850K .......... .......... .......... .......... .......... 66% 81.0K 5m59s
 41900K .......... .......... .......... .......... .......... 66%  415M 5m58s
 41950K .......... .......... .......... .......... .......... 66% 47.2K 5m57s
 42000K .......... .......... .......... .......... .......... 66% 20.2K 5m57s
 42050K .......... .......... .......... .......... .......... 66%  302M 5m56s
 42100K .......... .......... .......... .......... .......... 66%  114K 5m55s
 42150K .......... .......... .......... .......... .......... 67% 22.2K 5m55s
 42200K .......... .......... .......... .......... .......... 67%  298M 5m54s
 42250K .......... .......... .......... .......... .......... 67% 38.4K 5m53s
 42300K .......... .......... .......... .......... .......... 67%  125K 5m52s
 42350K .......... .......... .......... .......... .......... 67% 56.8K 5m51s
 42400K .......... .......... .......... .......... .......... 67% 57.7K 5m50s
 42450K .......... .......... .......... .......... .......... 67% 59.0K 5m49s
 42500K .......... .......... .......... .......... .......... 67% 57.2K 5m48s
 42550K .......... .......... .......... .......... .......... 67% 58.0K 5m48s
 42600K .......... .......... .......... .......... .......... 67% 56.6K 5m47s
 42650K .......... .......... .......... .......... .......... 67% 55.1K 5m46s
 42700K .......... .......... .......... .......... .......... 67% 57.4K 5m45s
 42750K .......... .......... .......... .......... .......... 68% 50.7K 5m44s
 42800K .......... .......... .......... .......... .......... 68% 50.7K 5m44s
 42850K .......... .......... .......... .......... .......... 68% 58.9K 5m43s
 42900K .......... .......... .......... .......... .......... 68% 59.3K 5m42s
 42950K .......... .......... .......... .......... .......... 68% 64.9K 5m41s
 43000K .......... .......... .......... .......... .......... 68% 19.8K 5m41s
 43050K .......... .......... .......... .......... .......... 68%  108K 5m40s
 43100K .......... .......... .......... .......... .......... 68% 78.4K 5m39s
 43150K .......... .......... .......... .......... .......... 68%  146K 5m38s
 43200K .......... .......... .......... .......... .......... 68%  222K 5m37s
 43250K .......... .......... .......... .......... .......... 68% 65.5K 5m36s
 43300K .......... .......... .......... .......... .......... 68% 71.5K 5m35s
 43350K .......... .......... .......... .......... .......... 68% 68.8K 5m34s
 43400K .......... .......... .......... .......... .......... 69% 66.3K 5m33s
 43450K .......... .......... .......... .......... .......... 69% 19.7K 5m33s
 43500K .......... .......... .......... .......... .......... 69%  147K 5m32s
 43550K .......... .......... .......... .......... .......... 69%  243K 5m31s
 43600K .......... .......... .......... .......... .......... 69% 51.9K 5m30s
 43650K .......... .......... .......... .......... .......... 69%  463M 5m29s
 43700K .......... .......... .......... .......... .......... 69% 81.9K 5m28s
 43750K .......... .......... .......... .......... .......... 69% 23.0K 5m27s
 43800K .......... .......... .......... .......... .......... 69%  400M 5m26s
 43850K .......... .......... .......... .......... .......... 69%  203K 5m25s
 43900K .......... .......... .......... .......... .......... 69% 62.8K 5m24s
 43950K .......... .......... .......... .......... .......... 69% 33.1K 5m24s
 44000K .......... .......... .......... .......... .......... 70% 33.0K 5m23s
 44050K .......... .......... .......... .......... .......... 70%  254M 5m22s
 44100K .......... .......... .......... .......... .......... 70% 79.7K 5m21s
 44150K .......... .......... .......... .......... .......... 70% 78.0K 5m20s
 44200K .......... .......... .......... .......... .......... 70% 73.9K 5m19s
 44250K .......... .......... .......... .......... .......... 70% 68.5K 5m18s
 44300K .......... .......... .......... .......... .......... 70% 61.2K 5m17s
 44350K .......... .......... .......... .......... .......... 70% 68.0K 5m16s
 44400K .......... .......... .......... .......... .......... 70% 67.3K 5m15s
 44450K .......... .......... .......... .......... .......... 70% 73.7K 5m14s
 44500K .......... .......... .......... .......... .......... 70% 29.3K 5m14s
 44550K .......... .......... .......... .......... .......... 70%  185K 5m13s
 44600K .......... .......... .......... .......... .......... 70%  640K 5m12s
 44650K .......... .......... .......... .......... .......... 71% 64.8K 5m11s
 44700K .......... .......... .......... .......... .......... 71% 52.2K 5m10s
 44750K .......... .......... .......... .......... .......... 71% 35.9K 5m9s
 44800K .......... .......... .......... .......... .......... 71%  231K 5m8s
 44850K .......... .......... .......... .......... .......... 71% 66.7K 5m7s
 44900K .......... .......... .......... .......... .......... 71% 62.8K 5m6s
 44950K .......... .......... .......... .......... .......... 71% 59.4K 5m6s
 45000K .......... .......... .......... .......... .......... 71% 27.2K 5m5s
 45050K .......... .......... .......... .......... .......... 71%  319K 5m4s
 45100K .......... .......... .......... .......... .......... 71% 94.5K 5m3s
 45150K .......... .......... .......... .......... .......... 71% 48.1K 5m2s
 45200K .......... .......... .......... .......... .......... 71%  151K 5m1s
 45250K .......... .......... .......... .......... .......... 72% 72.4K 5m0s
 45300K .......... .......... .......... .......... .......... 72% 72.2K 4m59s
 45350K .......... .......... .......... .......... .......... 72% 70.8K 4m58s
 45400K .......... .......... .......... .......... .......... 72% 75.3K 4m58s
 45450K .......... .......... .......... .......... .......... 72% 70.5K 4m57s
 45500K .......... .......... .......... .......... .......... 72% 74.2K 4m56s
 45550K .......... .......... .......... .......... .......... 72% 76.1K 4m55s
 45600K .......... .......... .......... .......... .......... 72% 49.8K 4m54s
 45650K .......... .......... .......... .......... .......... 72%  117K 4m53s
 45700K .......... .......... .......... .......... .......... 72% 78.1K 4m52s
 45750K .......... .......... .......... .......... .......... 72% 77.3K 4m51s
 45800K .......... .......... .......... .......... .......... 72% 73.8K 4m50s
 45850K .......... .......... .......... .......... .......... 72% 45.1K 4m49s
 45900K .......... .......... .......... .......... .......... 73%  222K 4m48s
 45950K .......... .......... .......... .......... .......... 73% 81.8K 4m47s
 46000K .......... .......... .......... .......... .......... 73% 79.5K 4m46s
 46050K .......... .......... .......... .......... .......... 73% 39.3K 4m46s
 46100K .......... .......... .......... .......... .......... 73%  101K 4m45s
 46150K .......... .......... .......... .......... .......... 73%  215K 4m44s
 46200K .......... .......... .......... .......... .......... 73% 84.7K 4m43s
 46250K .......... .......... .......... .......... .......... 73% 85.0K 4m42s
 46300K .......... .......... .......... .......... .......... 73% 80.9K 4m41s
 46350K .......... .......... .......... .......... .......... 73% 81.3K 4m40s
 46400K .......... .......... .......... .......... .......... 73% 81.4K 4m39s
 46450K .......... .......... .......... .......... .......... 73% 80.8K 4m38s
 46500K .......... .......... .......... .......... .......... 73% 76.2K 4m37s
 46550K .......... .......... .......... .......... .......... 74% 46.3K 4m36s
 46600K .......... .......... .......... .......... .......... 74%  118K 4m35s
 46650K .......... .......... .......... .......... .......... 74% 78.1K 4m35s
 46700K .......... .......... .......... .......... .......... 74% 46.8K 4m34s
 46750K .......... .......... .......... .......... .......... 74%  288K 4m33s
 46800K .......... .......... .......... .......... .......... 74% 78.4K 4m32s
 46850K .......... .......... .......... .......... .......... 74% 84.2K 4m31s
 46900K .......... .......... .......... .......... .......... 74% 83.6K 4m30s
 46950K .......... .......... .......... .......... .......... 74% 68.3K 4m29s
 47000K .......... .......... .......... .......... .......... 74% 96.4K 4m28s
 47050K .......... .......... .......... .......... .......... 74% 75.2K 4m27s
 47100K .......... .......... .......... .......... .......... 74% 75.0K 4m26s
 47150K .......... .......... .......... .......... .......... 75% 85.3K 4m25s
 47200K .......... .......... .......... .......... .......... 75% 84.8K 4m24s
 47250K .......... .......... .......... .......... .......... 75% 82.0K 4m23s
 47300K .......... .......... .......... .......... .......... 75% 80.0K 4m23s
 47350K .......... .......... .......... .......... .......... 75% 72.1K 4m22s
 47400K .......... .......... .......... .......... .......... 75% 57.2K 4m21s
 47450K .......... .......... .......... .......... .......... 75%  124K 4m20s
 47500K .......... .......... .......... .......... .......... 75% 79.7K 4m19s
 47550K .......... .......... .......... .......... .......... 75% 83.8K 4m18s
 47600K .......... .......... .......... .......... .......... 75% 73.4K 4m17s
 47650K .......... .......... .......... .......... .......... 75% 76.2K 4m16s
 47700K .......... .......... .......... .......... .......... 75% 76.2K 4m15s
 47750K .......... .......... .......... .......... .......... 75% 35.5K 4m15s
 47800K .......... .......... .......... .......... .......... 76%  524K 4m14s
 47850K .......... .......... .......... .......... .......... 76% 65.2K 4m13s
 47900K .......... .......... .......... .......... .......... 76% 84.4K 4m12s
 47950K .......... .......... .......... .......... .......... 76% 75.1K 4m11s
 48000K .......... .......... .......... .......... .......... 76% 81.0K 4m10s
 48050K .......... .......... .......... .......... .......... 76% 92.7K 4m9s
 48100K .......... .......... .......... .......... .......... 76% 97.1K 4m8s
 48150K .......... .......... .......... .......... .......... 76% 78.0K 4m7s
 48200K .......... .......... .......... .......... .......... 76%  128K 4m6s
 48250K .......... .......... .......... .......... .......... 76% 97.5K 4m5s
 48300K .......... .......... .......... .......... .......... 76% 95.9K 4m4s
 48350K .......... .......... .......... .......... .......... 76% 97.2K 4m3s
 48400K .......... .......... .......... .......... .......... 77% 93.4K 4m2s
 48450K .......... .......... .......... .......... .......... 77% 86.6K 4m2s
 48500K .......... .......... .......... .......... .......... 77% 84.4K 4m1s
 48550K .......... .......... .......... .......... .......... 77% 91.7K 4m0s
 48600K .......... .......... .......... .......... .......... 77% 83.5K 3m59s
 48650K .......... .......... .......... .......... .......... 77% 60.9K 3m58s
 48700K .......... .......... .......... .......... .......... 77%  182K 3m57s
 48750K .......... .......... .......... .......... .......... 77% 87.9K 3m56s
 48800K .......... .......... .......... .......... .......... 77% 87.5K 3m55s
 48850K .......... .......... .......... .......... .......... 77% 91.0K 3m54s
 48900K .......... .......... .......... .......... .......... 77% 90.1K 3m53s
 48950K .......... .......... .......... .......... .......... 77% 95.4K 3m52s
 49000K .......... .......... .......... .......... .......... 77%  109K 3m51s
 49050K .......... .......... .......... .......... .......... 78% 96.5K 3m51s
 49100K .......... .......... .......... .......... .......... 78% 53.2K 3m50s
 49150K .......... .......... .......... .......... .......... 78%  138K 3m49s
 49200K .......... .......... .......... .......... .......... 78% 58.3K 3m48s
 49250K .......... .......... .......... .......... .......... 78% 66.3K 3m47s
 49300K .......... .......... .......... .......... .......... 78% 38.5K 3m46s
 49350K .......... .......... .......... .......... .......... 78%  124K 3m45s
 49400K .......... .......... .......... .......... .......... 78% 93.0K 3m45s
 49450K .......... .......... .......... .......... .......... 78% 97.5K 3m44s
 49500K .......... .......... .......... .......... .......... 78% 95.9K 3m43s
 49550K .......... .......... .......... .......... .......... 78%  106K 3m42s
 49600K .......... .......... .......... .......... .......... 78% 99.1K 3m41s
 49650K .......... .......... .......... .......... .......... 78% 73.0K 3m40s
 49700K .......... .......... .......... .......... .......... 79%  112K 3m39s
 49750K .......... .......... .......... .......... .......... 79%  101K 3m38s
 49800K .......... .......... .......... .......... .......... 79%  115K 3m37s
 49850K .......... .......... .......... .......... .......... 79%  118K 3m36s
 49900K .......... .......... .......... .......... .......... 79% 98.3K 3m35s
 49950K .......... .......... .......... .......... .......... 79%  114K 3m34s
 50000K .......... .......... .......... .......... .......... 79% 96.1K 3m33s
 50050K .......... .......... .......... .......... .......... 79%  115K 3m33s
 50100K .......... .......... .......... .......... .......... 79%  130K 3m32s
 50150K .......... .......... .......... .......... .......... 79%  136K 3m31s
 50200K .......... .......... .......... .......... .......... 79%  130K 3m30s
 50250K .......... .......... .......... .......... .......... 79%  126K 3m29s
 50300K .......... .......... .......... .......... .......... 80%  135K 3m28s
 50350K .......... .......... .......... .......... .......... 80%  112K 3m27s
 50400K .......... .......... .......... .......... .......... 80%  125K 3m26s
 50450K .......... .......... .......... .......... .......... 80% 69.3K 3m25s
 50500K .......... .......... .......... .......... .......... 80%  417M 3m24s
 50550K .......... .......... .......... .......... .......... 80%  178K 3m23s
 50600K .......... .......... .......... .......... .......... 80%  150K 3m22s
 50650K .......... .......... .......... .......... .......... 80%  154K 3m21s
 50700K .......... .......... .......... .......... .......... 80%  141K 3m20s
 50750K .......... .......... .......... .......... .......... 80%  169K 3m19s
 50800K .......... .......... .......... .......... .......... 80%  153K 3m18s
 50850K .......... .......... .......... .......... .......... 80%  147K 3m17s
 50900K .......... .......... .......... .......... .......... 80%  134K 3m17s
 50950K .......... .......... .......... .......... .......... 81% 59.5K 3m16s
 51000K .......... .......... .......... .......... .......... 81% 1.51M 3m15s
 51050K .......... .......... .......... .......... .......... 81%  123K 3m14s
 51100K .......... .......... .......... .......... .......... 81% 80.5K 3m13s
 51150K .......... .......... .......... .......... .......... 81%  248K 3m12s
 51200K .......... .......... .......... .......... .......... 81%  161K 3m11s
 51250K .......... .......... .......... .......... .......... 81%  141K 3m10s
 51300K .......... .......... .......... .......... .......... 81%  113K 3m9s
 51350K .......... .......... .......... .......... .......... 81%  112K 3m8s
 51400K .......... .......... .......... .......... .......... 81%  114K 3m7s
 51450K .......... .......... .......... .......... .......... 81%  130K 3m7s
 51500K .......... .......... .......... .......... .......... 81%  119K 3m6s
 51550K .......... .......... .......... .......... .......... 82%  127K 3m5s
 51600K .......... .......... .......... .......... .......... 82%  124K 3m4s
 51650K .......... .......... .......... .......... .......... 82%  103K 3m3s
 51700K .......... .......... .......... .......... .......... 82%  133K 3m2s
 51750K .......... .......... .......... .......... .......... 82% 72.3K 3m1s
 51800K .......... .......... .......... .......... .......... 82%  250K 3m0s
 51850K .......... .......... .......... .......... .......... 82% 61.2K 2m59s
 51900K .......... .......... .......... .......... .......... 82%  279K 2m58s
 51950K .......... .......... .......... .......... .......... 82% 90.7K 2m58s
 52000K .......... .......... .......... .......... .......... 82%  104K 2m57s
 52050K .......... .......... .......... .......... .......... 82%  107K 2m56s
 52100K .......... .......... .......... .......... .......... 82%  120K 2m55s
 52150K .......... .......... .......... .......... .......... 82%  117K 2m54s
 52200K .......... .......... .......... .......... .......... 83%  118K 2m53s
 52250K .......... .......... .......... .......... .......... 83%  115K 2m52s
 52300K .......... .......... .......... .......... .......... 83%  110K 2m51s
 52350K .......... .......... .......... .......... .......... 83%  114K 2m50s
 52400K .......... .......... .......... .......... .......... 83% 96.9K 2m50s
 52450K .......... .......... .......... .......... .......... 83%  160K 2m49s
 52500K .......... .......... .......... .......... .......... 83%  142K 2m48s
 52550K .......... .......... .......... .......... .......... 83%  148K 2m47s
 52600K .......... .......... .......... .......... .......... 83%  143K 2m46s
 52650K .......... .......... .......... .......... .......... 83%  146K 2m45s
 52700K .......... .......... .......... .......... .......... 83%  151K 2m44s
 52750K .......... .......... .......... .......... .......... 83%  136K 2m43s
 52800K .......... .......... .......... .......... .......... 84%  145K 2m42s
 52850K .......... .......... .......... .......... .......... 84%  164K 2m42s
 52900K .......... .......... .......... .......... .......... 84%  175K 2m41s
 52950K .......... .......... .......... .......... .......... 84%  179K 2m40s
 53000K .......... .......... .......... .......... .......... 84%  181K 2m39s
 53050K .......... .......... .......... .......... .......... 84%  173K 2m38s
 53100K .......... .......... .......... .......... .......... 84%  168K 2m37s
 53150K .......... .......... .......... .......... .......... 84% 44.6K 2m36s
 53200K .......... .......... .......... .......... .......... 84%  294M 2m35s
 53250K .......... .......... .......... .......... .......... 84%  442M 2m34s
 53300K .......... .......... .......... .......... .......... 84% 43.2K 2m34s
 53350K .......... .......... .......... .......... .......... 84%  162K 2m33s
 53400K .......... .......... .......... .......... .......... 84% 99.3K 2m32s
 53450K .......... .......... .......... .......... .......... 85%  121K 2m31s
 53500K .......... .......... .......... .......... .......... 85%  132K 2m30s
 53550K .......... .......... .......... .......... .......... 85%  132K 2m29s
 53600K .......... .......... .......... .......... .......... 85%  137K 2m28s
 53650K .......... .......... .......... .......... .......... 85%  132K 2m28s
 53700K .......... .......... .......... .......... .......... 85%  132K 2m27s
 53750K .......... .......... .......... .......... .......... 85%  135K 2m26s
 53800K .......... .......... .......... .......... .......... 85%  140K 2m25s
 53850K .......... .......... .......... .......... .......... 85% 95.9K 2m24s
 53900K .......... .......... .......... .......... .......... 85%  126K 2m23s
 53950K .......... .......... .......... .......... .......... 85%  114K 2m22s
 54000K .......... .......... .......... .......... .......... 85%  138K 2m21s
 54050K .......... .......... .......... .......... .......... 85%  111K 2m21s
 54100K .......... .......... .......... .......... .......... 86% 67.6K 2m20s
 54150K .......... .......... .......... .......... .......... 86%  138K 2m19s
 54200K .......... .......... .......... .......... .......... 86% 62.7K 2m18s
 54250K .......... .......... .......... .......... .......... 86%  127K 2m17s
 54300K .......... .......... .......... .......... .......... 86% 84.7K 2m16s
 54350K .......... .......... .......... .......... .......... 86% 97.2K 2m16s
 54400K .......... .......... .......... .......... .......... 86%  109K 2m15s
 54450K .......... .......... .......... .......... .......... 86% 93.4K 2m14s
 54500K .......... .......... .......... .......... .......... 86% 98.3K 2m13s
 54550K .......... .......... .......... .......... .......... 86% 93.2K 2m12s
 54600K .......... .......... .......... .......... .......... 86%  110K 2m11s
 54650K .......... .......... .......... .......... .......... 86%  104K 2m11s
 54700K .......... .......... .......... .......... .......... 87%  128K 2m10s
 54750K .......... .......... .......... .......... .......... 87% 99.7K 2m9s
 54800K .......... .......... .......... .......... .......... 87%  138K 2m8s
 54850K .......... .......... .......... .......... .......... 87%  127K 2m7s
 54900K .......... .......... .......... .......... .......... 87% 61.9K 2m6s
 54950K .......... .......... .......... .......... .......... 87% 66.7K 2m6s
 55000K .......... .......... .......... .......... .......... 87% 78.1K 2m5s
 55050K .......... .......... .......... .......... .......... 87% 50.3K 2m4s
 55100K .......... .......... .......... .......... .......... 87% 62.6K 2m3s
 55150K .......... .......... .......... .......... .......... 87% 86.9K 2m2s
 55200K .......... .......... .......... .......... .......... 87%  102K 2m2s
 55250K .......... .......... .......... .......... .......... 87%  125K 2m1s
 55300K .......... .......... .......... .......... .......... 87%  217K 2m0s
 55350K .......... .......... .......... .......... .......... 88%  228K 1m59s
 55400K .......... .......... .......... .......... .......... 88%  179K 1m58s
 55450K .......... .......... .......... .......... .......... 88%  257K 1m57s
 55500K .......... .......... .......... .......... .......... 88%  284K 1m56s
 55550K .......... .......... .......... .......... .......... 88%  175K 1m55s
 55600K .......... .......... .......... .......... .......... 88%  584K 1m55s
 55650K .......... .......... .......... .......... .......... 88%  256K 1m54s
 55700K .......... .......... .......... .......... .......... 88%  271K 1m53s
 55750K .......... .......... .......... .......... .......... 88%  275K 1m52s
 55800K .......... .......... .......... .......... .......... 88%  280K 1m51s
 55850K .......... .......... .......... .......... .......... 88%  163K 1m50s
 55900K .......... .......... .......... .......... .......... 88%  542K 1m49s
 55950K .......... .......... .......... .......... .......... 89%  171K 1m49s
 56000K .......... .......... .......... .......... .......... 89%  233K 1m48s
 56050K .......... .......... .......... .......... .......... 89%  244K 1m47s
 56100K .......... .......... .......... .......... .......... 89%  142K 1m46s
 56150K .......... .......... .......... .......... .......... 89%  166K 1m45s
 56200K .......... .......... .......... .......... .......... 89%  182K 1m44s
 56250K .......... .......... .......... .......... .......... 89%  164K 1m43s
 56300K .......... .......... .......... .......... .......... 89%  205K 1m43s
 56350K .......... .......... .......... .......... .......... 89%  139K 1m42s
 56400K .......... .......... .......... .......... .......... 89%  121K 1m41s
 56450K .......... .......... .......... .......... .......... 89% 99.3K 1m40s
 56500K .......... .......... .......... .......... .......... 89%  139K 99s
 56550K .......... .......... .......... .......... .......... 89%  131K 99s
 56600K .......... .......... .......... .......... .......... 90% 93.7K 98s
 56650K .......... .......... .......... .......... .......... 90%  135K 97s
 56700K .......... .......... .......... .......... .......... 90%  111K 96s
 56750K .......... .......... .......... .......... .......... 90%  140K 95s
 56800K .......... .......... .......... .......... .......... 90% 86.5K 94s
 56850K .......... .......... .......... .......... .......... 90%  120K 94s
 56900K .......... .......... .......... .......... .......... 90% 97.1K 93s
 56950K .......... .......... .......... .......... .......... 90% 97.5K 92s
 57000K .......... .......... .......... .......... .......... 90% 64.9K 91s
 57050K .......... .......... .......... .......... .......... 90% 91.5K 90s
 57100K .......... .......... .......... .......... .......... 90% 94.7K 90s
 57150K .......... .......... .......... .......... .......... 90% 89.7K 89s
 57200K .......... .......... .......... .......... .......... 90% 77.6K 88s
 57250K .......... .......... .......... .......... .......... 91% 69.4K 87s
 57300K .......... .......... .......... .......... .......... 91% 83.4K 86s
 57350K .......... .......... .......... .......... .......... 91% 77.0K 86s
 57400K .......... .......... .......... .......... .......... 91% 86.0K 85s
 57450K .......... .......... .......... .......... .......... 91% 85.5K 84s
 57500K .......... .......... .......... .......... .......... 91% 78.0K 83s
 57550K .......... .......... .......... .......... .......... 91% 78.1K 83s
 57600K .......... .......... .......... .......... .......... 91%  104K 82s
 57650K .......... .......... .......... .......... .......... 91%  113K 81s
 57700K .......... .......... .......... .......... .......... 91%  134K 80s
 57750K .......... .......... .......... .......... .......... 91%  138K 79s
 57800K .......... .......... .......... .......... .......... 91%  147K 78s
 57850K .......... .......... .......... .......... .......... 92%  191K 78s
 57900K .......... .......... .......... .......... .......... 92%  141K 77s
 57950K .......... .......... .......... .......... .......... 92%  131K 76s
 58000K .......... .......... .......... .......... .......... 92%  137K 75s
 58050K .......... .......... .......... .......... .......... 92%  127K 74s
 58100K .......... .......... .......... .......... .......... 92%  156K 74s
 58150K .......... .......... .......... .......... .......... 92%  129K 73s
 58200K .......... .......... .......... .......... .......... 92%  139K 72s
 58250K .......... .......... .......... .......... .......... 92% 91.6K 71s
 58300K .......... .......... .......... .......... .......... 92%  161K 70s
 58350K .......... .......... .......... .......... .......... 92%  126K 70s
 58400K .......... .......... .......... .......... .......... 92%  139K 69s
 58450K .......... .......... .......... .......... .......... 92%  123K 68s
 58500K .......... .......... .......... .......... .......... 93%  137K 67s
 58550K .......... .......... .......... .......... .......... 93%  138K 66s
 58600K .......... .......... .......... .......... .......... 93%  140K 66s
 58650K .......... .......... .......... .......... .......... 93%  139K 65s
 58700K .......... .......... .......... .......... .......... 93%  125K 64s
 58750K .......... .......... .......... .......... .......... 93%  139K 63s
 58800K .......... .......... .......... .......... .......... 93%  117K 62s
 58850K .......... .......... .......... .......... .......... 93%  126K 62s
 58900K .......... .......... .......... .......... .......... 93%  138K 61s
 58950K .......... .......... .......... .......... .......... 93%  138K 60s
 59000K .......... .......... .......... .......... .......... 93%  134K 59s
 59050K .......... .......... .......... .......... .......... 93% 84.8K 58s
 59100K .......... .......... .......... .......... .......... 94% 70.1K 58s
 59150K .......... .......... .......... .......... .......... 94% 66.5K 57s
 59200K .......... .......... .......... .......... .......... 94% 90.0K 56s
 59250K .......... .......... .......... .......... .......... 94% 65.9K 55s
 59300K .......... .......... .......... .......... .......... 94% 54.6K 55s
 59350K .......... .......... .......... .......... .......... 94% 76.9K 54s
 59400K .......... .......... .......... .......... .......... 94% 52.3K 53s
 59450K .......... .......... .......... .......... .......... 94% 72.8K 52s
 59500K .......... .......... .......... .......... .......... 94% 82.6K 52s
 59550K .......... .......... .......... .......... .......... 94% 55.9K 51s
 59600K .......... .......... .......... .......... .......... 94% 58.7K 50s
 59650K .......... .......... .......... .......... .......... 94% 57.1K 49s
 59700K .......... .......... .......... .......... .......... 94% 87.8K 48s
 59750K .......... .......... .......... .......... .......... 95% 68.0K 48s
 59800K .......... .......... .......... .......... .......... 95% 73.5K 47s
 59850K .......... .......... .......... .......... .......... 95% 84.7K 46s
 59900K .......... .......... .......... .......... .......... 95% 86.8K 45s
 59950K .......... .......... .......... .......... .......... 95% 43.6K 45s
 60000K .......... .......... .......... .......... .......... 95%  257M 44s
 60050K .......... .......... .......... .......... .......... 95% 52.9K 43s
 60100K .......... .......... .......... .......... .......... 95% 71.3K 42s
 60150K .......... .......... .......... .......... .......... 95% 79.6K 42s
 60200K .......... .......... .......... .......... .......... 95% 69.5K 41s
 60250K .......... .......... .......... .......... .......... 95% 84.1K 40s
 60300K .......... .......... .......... .......... .......... 95% 80.2K 39s
 60350K .......... .......... .......... .......... .......... 96% 85.5K 38s
 60400K .......... .......... .......... .......... .......... 96% 80.1K 38s
 60450K .......... .......... .......... .......... .......... 96% 92.9K 37s
 60500K .......... .......... .......... .......... .......... 96% 88.5K 36s
 60550K .......... .......... .......... .......... .......... 96%  122K 35s
 60600K .......... .......... .......... .......... .......... 96%  121K 35s
 60650K .......... .......... .......... .......... .......... 96%  139K 34s
 60700K .......... .......... .......... .......... .......... 96%  175K 33s
 60750K .......... .......... .......... .......... .......... 96%  124K 32s
 60800K .......... .......... .......... .......... .......... 96%  196K 31s
 60850K .......... .......... .......... .......... .......... 96%  195K 31s
 60900K .......... .......... .......... .......... .......... 96%  157K 30s
 60950K .......... .......... .......... .......... .......... 96%  183K 29s
 61000K .......... .......... .......... .......... .......... 97%  175K 28s
 61050K .......... .......... .......... .......... .......... 97%  163K 28s
 61100K .......... .......... .......... .......... .......... 97%  144K 27s
 61150K .......... .......... .......... .......... .......... 97%  149K 26s
 61200K .......... .......... .......... .......... .......... 97%  108K 25s
 61250K .......... .......... .......... .......... .......... 97%  118K 25s
 61300K .......... .......... .......... .......... .......... 97% 95.6K 24s
 61350K .......... .......... .......... .......... .......... 97%  104K 23s
 61400K .......... .......... .......... .......... .......... 97%  115K 22s
 61450K .......... .......... .......... .......... .......... 97%  100K 21s
 61500K .......... .......... .......... .......... .......... 97%  120K 21s
 61550K .......... .......... .......... .......... .......... 97% 96.3K 20s
 61600K .......... .......... .......... .......... .......... 97%  111K 19s
 61650K .......... .......... .......... .......... .......... 98%  122K 18s
 61700K .......... .......... .......... .......... .......... 98%  109K 18s
 61750K .......... .......... .......... .......... .......... 98%  103K 17s
 61800K .......... .......... .......... .......... .......... 98%  120K 16s
 61850K .......... .......... .......... .......... .......... 98% 70.6K 15s
 61900K .......... .......... .......... .......... .......... 98%  161K 15s
 61950K .......... .......... .......... .......... .......... 98%  101K 14s
 62000K .......... .......... .......... .......... .......... 98% 90.5K 13s
 62050K .......... .......... .......... .......... .......... 98% 93.0K 12s
 62100K .......... .......... .......... .......... .......... 98% 88.9K 12s
 62150K .......... .......... .......... .......... .......... 98% 79.2K 11s
 62200K .......... .......... .......... .......... .......... 98% 57.4K 10s
 62250K .......... .......... .......... .......... .......... 99% 91.7K 9s
 62300K .......... .......... .......... .......... .......... 99% 66.0K 9s
 62350K .......... .......... .......... .......... .......... 99% 92.5K 8s
 62400K .......... .......... .......... .......... .......... 99% 73.3K 7s
 62450K .......... .......... .......... .......... .......... 99% 83.7K 6s
 62500K .......... .......... .......... .......... .......... 99% 70.7K 6s
 62550K .......... .......... .......... .......... .......... 99% 65.7K 5s
 62600K .......... .......... .......... .......... .......... 99% 84.9K 4s
 62650K .......... .......... .......... .......... .......... 99% 78.7K 3s
 62700K .......... .......... .......... .......... .......... 99% 85.1K 2s
 62750K .......... .......... .......... .......... .......... 99% 71.9K 2s
 62800K .......... .......... .......... .......... .......... 99% 76.7K 1s
 62850K .......... .......... .......... .......... .......... 99% 71.2K 0s
 62900K .......... ....                                       100%  184K=15m49s

2011-03-17 11:27:09 (66.3 KB/s) - `/home/nahsan/sources/linux-2.6.32.tar.bz2' saved [64424138/64424138]

NOTE: Running task 134 of 339 (ID: 189, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_qa_staging)
NOTE: package perl-native-5.10.1-r10: task do_qa_staging: Started
NOTE: package perl-native-5.10.1-r10: task do_qa_staging: Succeeded
NOTE: Running task 135 of 339 (ID: 191, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_package_stage)
NOTE: package perl-native-5.10.1-r10: task do_package_stage: Started
NOTE: package perl-native-5.10.1-r10: task do_package_stage: Succeeded
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_fetch: Succeeded
NOTE: Running task 136 of 339 (ID: 101, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_unpack)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_unpack: Started
NOTE: Unpacking ../../sources/linux-2.6.32.tar.bz2 to tmp/work/i686-linux/linux-libc-headers-native-2.6.32-r5/
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_unpack: Succeeded
NOTE: Running task 137 of 339 (ID: 102, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_patch)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_patch: Started
NOTE: Applying patch 'export_sa_family_t.patch' (../openembedded/recipes/linux-libc-headers/linux-libc-headers-2.6.32/export_sa_family_t.patch)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_patch: Succeeded
NOTE: Running task 138 of 339 (ID: 110, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_configure)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_configure: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_configure: Succeeded
NOTE: Running task 139 of 339 (ID: 111, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_qa_configure)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_qa_configure: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_qa_configure: Succeeded
NOTE: Running task 140 of 339 (ID: 112, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_compile)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_compile: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_compile: Succeeded
NOTE: Running task 141 of 339 (ID: 103, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_install)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_install: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_install: Succeeded
NOTE: Running task 142 of 339 (ID: 104, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_populate_sysroot)
NOTE: Running task 143 of 339 (ID: 113, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_package)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_populate_sysroot: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_populate_sysroot: Succeeded
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package: Succeeded
NOTE: Running task 145 of 339 (ID: 26, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_configure)
NOTE: Running task 144 of 339 (ID: 180, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_configure)
NOTE: Running task 147 of 339 (ID: 114, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_package_write_ipk)
NOTE: package m4-native-1.4.14-r0.1: task do_configure: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_configure: Started
NOTE: Running task 146 of 339 (ID: 105, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_qa_staging)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package_write_ipk: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package_write_ipk: Succeeded
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_configure: Succeeded
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_qa_staging: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_qa_staging: Succeeded
NOTE: Running task 148 of 339 (ID: 27, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_qa_configure)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_qa_configure: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_qa_configure: Succeeded
NOTE: Running task 149 of 339 (ID: 106, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_package_write)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package_write: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package_write: Succeeded
NOTE: Running task 150 of 339 (ID: 28, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_compile)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_compile: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_compile: Succeeded
NOTE: Running task 151 of 339 (ID: 107, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_package_stage)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package_stage: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package_stage: Succeeded
NOTE: Running task 152 of 339 (ID: 19, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_install)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_install: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_install: Succeeded
NOTE: Running task 153 of 339 (ID: 29, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_package)
NOTE: Running task 154 of 339 (ID: 20, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_populate_sysroot)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package: Succeeded
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_populate_sysroot: Started
NOTE: Legacy staging mode for /home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb
NOTE: Running task 155 of 339 (ID: 30, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_package_write_ipk)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package_write_ipk: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package_write_ipk: Succeeded
NOTE: Running task 156 of 339 (ID: 22, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_package_write)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package_write: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package_write: Succeeded
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_populate_sysroot: Succeeded
NOTE: Running task 157 of 339 (ID: 21, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_qa_staging)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_qa_staging: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_qa_staging: Succeeded
NOTE: Running task 158 of 339 (ID: 23, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_package_stage)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package_stage: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package_stage: Succeeded
NOTE: package m4-native-1.4.14-r0.1: task do_configure: Succeeded
NOTE: Running task 159 of 339 (ID: 181, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_qa_configure)
NOTE: package m4-native-1.4.14-r0.1: task do_qa_configure: Started
NOTE: package m4-native-1.4.14-r0.1: task do_qa_configure: Succeeded
NOTE: Running task 160 of 339 (ID: 182, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_compile)
NOTE: package m4-native-1.4.14-r0.1: task do_compile: Started
NOTE: package m4-native-1.4.14-r0.1: task do_compile: Succeeded
NOTE: Running task 161 of 339 (ID: 173, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_install)
NOTE: package m4-native-1.4.14-r0.1: task do_install: Started
NOTE: package m4-native-1.4.14-r0.1: task do_install: Succeeded
NOTE: Running task 162 of 339 (ID: 174, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_populate_sysroot)
NOTE: package m4-native-1.4.14-r0.1: task do_populate_sysroot: Started
NOTE: package m4-native-1.4.14-r0.1: task do_populate_sysroot: Succeeded
NOTE: Running task 163 of 339 (ID: 183, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_package)
NOTE: package m4-native-1.4.14-r0.1: task do_package: Started
NOTE: package m4-native-1.4.14-r0.1: task do_package: Succeeded
NOTE: Running task 164 of 339 (ID: 54, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_configure)
NOTE: Running task 165 of 339 (ID: 175, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_qa_staging)
NOTE: package autoconf-native-2.65-r13.1: task do_configure: Started
NOTE: package m4-native-1.4.14-r0.1: task do_qa_staging: Started
NOTE: package m4-native-1.4.14-r0.1: task do_qa_staging: Succeeded
NOTE: Running task 166 of 339 (ID: 184, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_package_write_ipk)
NOTE: package m4-native-1.4.14-r0.1: task do_package_write_ipk: Started
NOTE: package m4-native-1.4.14-r0.1: task do_package_write_ipk: Succeeded
NOTE: Running task 167 of 339 (ID: 176, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_package_write)
NOTE: package m4-native-1.4.14-r0.1: task do_package_write: Started
NOTE: package m4-native-1.4.14-r0.1: task do_package_write: Succeeded
NOTE: Running task 168 of 339 (ID: 177, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_package_stage)
NOTE: package m4-native-1.4.14-r0.1: task do_package_stage: Started
NOTE: package m4-native-1.4.14-r0.1: task do_package_stage: Succeeded
NOTE: package autoconf-native-2.65-r13.1: task do_configure: Succeeded
NOTE: Running task 169 of 339 (ID: 55, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_qa_configure)
NOTE: package autoconf-native-2.65-r13.1: task do_qa_configure: Started
NOTE: package autoconf-native-2.65-r13.1: task do_qa_configure: Succeeded
NOTE: Running task 170 of 339 (ID: 56, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_compile)
NOTE: package autoconf-native-2.65-r13.1: task do_compile: Started
NOTE: package autoconf-native-2.65-r13.1: task do_compile: Succeeded
NOTE: Running task 171 of 339 (ID: 47, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_install)
NOTE: package autoconf-native-2.65-r13.1: task do_install: Started
NOTE: package autoconf-native-2.65-r13.1: task do_install: Succeeded
NOTE: Running task 172 of 339 (ID: 48, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_populate_sysroot)
NOTE: Running task 173 of 339 (ID: 57, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_package)
NOTE: package autoconf-native-2.65-r13.1: task do_populate_sysroot: Started
NOTE: package autoconf-native-2.65-r13.1: task do_populate_sysroot: Succeeded
NOTE: package autoconf-native-2.65-r13.1: task do_package: Started
NOTE: package autoconf-native-2.65-r13.1: task do_package: Succeeded
NOTE: Running task 174 of 339 (ID: 68, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_configure)
NOTE: Running task 175 of 339 (ID: 49, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_qa_staging)
NOTE: package automake-native-1.11.1-r4.2: task do_configure: Started
NOTE: package autoconf-native-2.65-r13.1: task do_qa_staging: Started
NOTE: package autoconf-native-2.65-r13.1: task do_qa_staging: Succeeded
NOTE: Running task 176 of 339 (ID: 58, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_package_write_ipk)
NOTE: package autoconf-native-2.65-r13.1: task do_package_write_ipk: Started
NOTE: package autoconf-native-2.65-r13.1: task do_package_write_ipk: Succeeded
NOTE: Running task 177 of 339 (ID: 50, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_package_write)
NOTE: package autoconf-native-2.65-r13.1: task do_package_write: Started
NOTE: package autoconf-native-2.65-r13.1: task do_package_write: Succeeded
NOTE: Running task 178 of 339 (ID: 51, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_package_stage)
NOTE: package autoconf-native-2.65-r13.1: task do_package_stage: Started
NOTE: package autoconf-native-2.65-r13.1: task do_package_stage: Succeeded
NOTE: package automake-native-1.11.1-r4.2: task do_configure: Succeeded
NOTE: Running task 179 of 339 (ID: 69, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_qa_configure)
NOTE: package automake-native-1.11.1-r4.2: task do_qa_configure: Started
NOTE: package automake-native-1.11.1-r4.2: task do_qa_configure: Succeeded
NOTE: Running task 180 of 339 (ID: 70, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_compile)
NOTE: package automake-native-1.11.1-r4.2: task do_compile: Started
NOTE: package automake-native-1.11.1-r4.2: task do_compile: Succeeded
NOTE: Running task 181 of 339 (ID: 61, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_install)
NOTE: package automake-native-1.11.1-r4.2: task do_install: Started
NOTE: package automake-native-1.11.1-r4.2: task do_install: Succeeded
NOTE: Running task 182 of 339 (ID: 62, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_populate_sysroot)
NOTE: package automake-native-1.11.1-r4.2: task do_populate_sysroot: Started
NOTE: package automake-native-1.11.1-r4.2: task do_populate_sysroot: Succeeded
NOTE: Running task 183 of 339 (ID: 71, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_package)
NOTE: package automake-native-1.11.1-r4.2: task do_package: Started
NOTE: package automake-native-1.11.1-r4.2: task do_package: Succeeded
NOTE: Running task 184 of 339 (ID: 82, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_configure)
NOTE: Running task 185 of 339 (ID: 63, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_qa_staging)
NOTE: package libtool-native-2.4-r28.1: task do_configure: Started
NOTE: package automake-native-1.11.1-r4.2: task do_qa_staging: Started
NOTE: package automake-native-1.11.1-r4.2: task do_qa_staging: Succeeded
NOTE: Running task 186 of 339 (ID: 72, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_package_write_ipk)
NOTE: package automake-native-1.11.1-r4.2: task do_package_write_ipk: Started
NOTE: package automake-native-1.11.1-r4.2: task do_package_write_ipk: Succeeded
NOTE: Running task 187 of 339 (ID: 64, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_package_write)
NOTE: package automake-native-1.11.1-r4.2: task do_package_write: Started
NOTE: package automake-native-1.11.1-r4.2: task do_package_write: Succeeded
NOTE: Running task 188 of 339 (ID: 65, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_package_stage)
NOTE: package automake-native-1.11.1-r4.2: task do_package_stage: Started
NOTE: package automake-native-1.11.1-r4.2: task do_package_stage: Succeeded
NOTE: package libtool-native-2.4-r28.1: task do_configure: Succeeded
NOTE: Running task 189 of 339 (ID: 83, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_qa_configure)
NOTE: package libtool-native-2.4-r28.1: task do_qa_configure: Started
NOTE: package libtool-native-2.4-r28.1: task do_qa_configure: Succeeded
NOTE: Running task 190 of 339 (ID: 84, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_compile)
NOTE: package libtool-native-2.4-r28.1: task do_compile: Started
NOTE: package libtool-native-2.4-r28.1: task do_compile: Succeeded
NOTE: Running task 191 of 339 (ID: 75, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_install)
NOTE: package libtool-native-2.4-r28.1: task do_install: Started
NOTE: package libtool-native-2.4-r28.1: task do_install: Succeeded
NOTE: Running task 192 of 339 (ID: 76, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_populate_sysroot)
NOTE: Running task 193 of 339 (ID: 85, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_package)
NOTE: package libtool-native-2.4-r28.1: task do_populate_sysroot: Started
NOTE: package libtool-native-2.4-r28.1: task do_populate_sysroot: Succeeded
NOTE: package libtool-native-2.4-r28.1: task do_package: Started
NOTE: package libtool-native-2.4-r28.1: task do_package: Succeeded
NOTE: Running task 194 of 339 (ID: 320, virtual:native:/home/nahsan/openembedded/openembedded/recipes/ncurses/ncurses_5.7.bb, do_configure)
NOTE: Running task 195 of 339 (ID: 124, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_configure)
NOTE: Running task 196 of 339 (ID: 334, virtual:native:/home/nahsan/openembedded/openembedded/recipes/tcltk/tcl_8.5.8.bb, do_configure)
NOTE: package ncurses-native-5.7+20110115-r16: task do_configure: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_configure: Started
NOTE: package tcl-native-8.5.8-r8: task do_configure: Started
NOTE: Running task 197 of 339 (ID: 278, virtual:native:/home/nahsan/openembedded/openembedded/recipes/zlib/zlib_1.2.3.bb, do_configure)
NOTE: package zlib-native-1.2.3-r7.0: task do_configure: Started
NOTE: package tcl-native-8.5.8-r8: task do_configure: Succeeded
NOTE: package zlib-native-1.2.3-r7.0: task do_configure: Succeeded
NOTE: Running task 198 of 339 (ID: 335, virtual:native:/home/nahsan/openembedded/openembedded/recipes/tcltk/tcl_8.5.8.bb, do_qa_configure)
NOTE: package tcl-native-8.5.8-r8: task do_qa_configure: Started
NOTE: package tcl-native-8.5.8-r8: task do_qa_configure: Succeeded
NOTE: Running task 199 of 339 (ID: 279, virtual:native:/home/nahsan/openembedded/openembedded/recipes/zlib/zlib_1.2.3.bb, do_qa_configure)
NOTE: Running task 200 of 339 (ID: 336, virtual:native:/home/nahsan/openembedded/openembedded/recipes/tcltk/tcl_8.5.8.bb, do_compile)
NOTE: package zlib-native-1.2.3-r7.0: task do_qa_configure: Started
NOTE: package zlib-native-1.2.3-r7.0: task do_qa_configure: Succeeded
NOTE: package tcl-native-8.5.8-r8: task do_compile: Started
NOTE: Running task 201 of 339 (ID: 280, virtual:native:/home/nahsan/openembedded/openembedded/recipes/zlib/zlib_1.2.3.bb, do_compile)
NOTE: package zlib-native-1.2.3-r7.0: task do_compile: Started
NOTE: package zlib-native-1.2.3-r7.0: task do_compile: Succeeded
NOTE: Running task 202 of 339 (ID: 271, virtual:native:/home/nahsan/openembedded/openembedded/recipes/zlib/zlib_1.2.3.bb, do_install)
NOTE: package zlib-native-1.2.3-r7.0: task do_install: Started
NOTE: package zlib-native-1.2.3-r7.0: task do_install: Succeeded
NOTE: Running task 203 of 339 (ID: 272, virtual:native:/home/nahsan/openembedded/openembedded/recipes/zlib/zlib_1.2.3.bb, do_populate_sysroot)
NOTE: package zlib-native-1.2.3-r7.0: task do_populate_sysroot: Started
NOTE: package zlib-native-1.2.3-r7.0: task do_populate_sysroot: Succeeded
NOTE: Running task 204 of 339 (ID: 281, virtual:native:/home/nahsan/openembedded/openembedded/recipes/zlib/zlib_1.2.3.bb, do_package)
NOTE: package zlib-native-1.2.3-r7.0: task do_package: Started
NOTE: package zlib-native-1.2.3-r7.0: task do_package: Succeeded
NOTE: Running task 205 of 339 (ID: 282, virtual:native:/home/nahsan/openembedded/openembedded/recipes/zlib/zlib_1.2.3.bb, do_package_write_ipk)
NOTE: package zlib-native-1.2.3-r7.0: task do_package_write_ipk: Started
NOTE: package zlib-native-1.2.3-r7.0: task do_package_write_ipk: Succeeded
NOTE: Running task 206 of 339 (ID: 274, virtual:native:/home/nahsan/openembedded/openembedded/recipes/zlib/zlib_1.2.3.bb, do_package_write)
NOTE: package zlib-native-1.2.3-r7.0: task do_package_write: Started
NOTE: package zlib-native-1.2.3-r7.0: task do_package_write: Succeeded
NOTE: Running task 207 of 339 (ID: 273, virtual:native:/home/nahsan/openembedded/openembedded/recipes/zlib/zlib_1.2.3.bb, do_qa_staging)
NOTE: package zlib-native-1.2.3-r7.0: task do_qa_staging: Started
NOTE: package zlib-native-1.2.3-r7.0: task do_qa_staging: Succeeded
NOTE: Running task 208 of 339 (ID: 275, virtual:native:/home/nahsan/openembedded/openembedded/recipes/zlib/zlib_1.2.3.bb, do_package_stage)
NOTE: package zlib-native-1.2.3-r7.0: task do_package_stage: Started
NOTE: package zlib-native-1.2.3-r7.0: task do_package_stage: Succeeded
NOTE: Running task 209 of 339 (ID: 86, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_package_write_ipk)
NOTE: package libtool-native-2.4-r28.1: task do_package_write_ipk: Started
NOTE: package libtool-native-2.4-r28.1: task do_package_write_ipk: Succeeded
NOTE: Running task 210 of 339 (ID: 78, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_package_write)
NOTE: package libtool-native-2.4-r28.1: task do_package_write: Started
NOTE: package libtool-native-2.4-r28.1: task do_package_write: Succeeded
NOTE: Running task 211 of 339 (ID: 77, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_qa_staging)
NOTE: package libtool-native-2.4-r28.1: task do_qa_staging: Started
NOTE: package libtool-native-2.4-r28.1: task do_qa_staging: Succeeded
NOTE: Running task 212 of 339 (ID: 79, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_package_stage)
NOTE: package libtool-native-2.4-r28.1: task do_package_stage: Started
NOTE: package libtool-native-2.4-r28.1: task do_package_stage: Succeeded
NOTE: package tcl-native-8.5.8-r8: task do_compile: Succeeded
NOTE: Running task 213 of 339 (ID: 327, virtual:native:/home/nahsan/openembedded/openembedded/recipes/tcltk/tcl_8.5.8.bb, do_install)
NOTE: package tcl-native-8.5.8-r8: task do_install: Started
NOTE: package ncurses-native-5.7+20110115-r16: task do_configure: Succeeded
NOTE: Running task 214 of 339 (ID: 321, virtual:native:/home/nahsan/openembedded/openembedded/recipes/ncurses/ncurses_5.7.bb, do_qa_configure)
NOTE: package ncurses-native-5.7+20110115-r16: task do_qa_configure: Started
NOTE: package ncurses-native-5.7+20110115-r16: task do_qa_configure: Succeeded
NOTE: package tcl-native-8.5.8-r8: task do_install: Succeeded
NOTE: Running task 215 of 339 (ID: 328, virtual:native:/home/nahsan/openembedded/openembedded/recipes/tcltk/tcl_8.5.8.bb, do_populate_sysroot)
NOTE: Running task 216 of 339 (ID: 337, virtual:native:/home/nahsan/openembedded/openembedded/recipes/tcltk/tcl_8.5.8.bb, do_package)
NOTE: package tcl-native-8.5.8-r8: task do_populate_sysroot: Started
NOTE: package tcl-native-8.5.8-r8: task do_package: Started
NOTE: package tcl-native-8.5.8-r8: task do_package: Succeeded
NOTE: Running task 217 of 339 (ID: 322, virtual:native:/home/nahsan/openembedded/openembedded/recipes/ncurses/ncurses_5.7.bb, do_compile)
NOTE: package ncurses-native-5.7+20110115-r16: task do_compile: Started
NOTE: Running task 218 of 339 (ID: 338, virtual:native:/home/nahsan/openembedded/openembedded/recipes/tcltk/tcl_8.5.8.bb, do_package_write_ipk)
NOTE: package tcl-native-8.5.8-r8: task do_package_write_ipk: Started
NOTE: package tcl-native-8.5.8-r8: task do_package_write_ipk: Succeeded
NOTE: Running task 219 of 339 (ID: 330, virtual:native:/home/nahsan/openembedded/openembedded/recipes/tcltk/tcl_8.5.8.bb, do_package_write)
NOTE: package tcl-native-8.5.8-r8: task do_package_write: Started
NOTE: package tcl-native-8.5.8-r8: task do_package_write: Succeeded
NOTE: package tcl-native-8.5.8-r8: task do_populate_sysroot: Succeeded
NOTE: Running task 220 of 339 (ID: 329, virtual:native:/home/nahsan/openembedded/openembedded/recipes/tcltk/tcl_8.5.8.bb, do_qa_staging)
NOTE: package tcl-native-8.5.8-r8: task do_qa_staging: Started
NOTE: package tcl-native-8.5.8-r8: task do_qa_staging: Succeeded
NOTE: Running task 221 of 339 (ID: 331, virtual:native:/home/nahsan/openembedded/openembedded/recipes/tcltk/tcl_8.5.8.bb, do_package_stage)
NOTE: package tcl-native-8.5.8-r8: task do_package_stage: Started
NOTE: package tcl-native-8.5.8-r8: task do_package_stage: Succeeded
NOTE: package pkgconfig-native-0.23-r8.1: task do_configure: Succeeded
NOTE: Running task 222 of 339 (ID: 125, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_qa_configure)
NOTE: package pkgconfig-native-0.23-r8.1: task do_qa_configure: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_qa_configure: Succeeded
NOTE: Running task 223 of 339 (ID: 126, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_compile)
NOTE: package pkgconfig-native-0.23-r8.1: task do_compile: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_compile: Succeeded
NOTE: Running task 224 of 339 (ID: 117, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_install)
NOTE: package pkgconfig-native-0.23-r8.1: task do_install: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_install: Succeeded
NOTE: Running task 225 of 339 (ID: 118, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_populate_sysroot)
NOTE: Running task 226 of 339 (ID: 127, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_package)
NOTE: package pkgconfig-native-0.23-r8.1: task do_populate_sysroot: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_populate_sysroot: Succeeded
NOTE: package pkgconfig-native-0.23-r8.1: task do_package: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_package: Succeeded
NOTE: Running task 227 of 339 (ID: 264, /home/nahsan/openembedded/openembedded/recipes/bzip2/bzip2-full-native_1.0.6.bb, do_configure)
NOTE: Running task 228 of 339 (ID: 250, /home/nahsan/openembedded/openembedded/recipes/openssl/openssl-native_1.0.0d.bb, do_configure)
NOTE: package bzip2-full-native-1.0.6-r0: task do_configure: Started
NOTE: package openssl-native-1.0.0d-r14.0: task do_configure: Started
NOTE: Running task 229 of 339 (ID: 166, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_configure)
NOTE: package gnome-common-native-2.28.0-r0: task do_configure: Started
NOTE: package openssl-native-1.0.0d-r14.0: task do_configure: Succeeded
NOTE: Running task 230 of 339 (ID: 251, /home/nahsan/openembedded/openembedded/recipes/openssl/openssl-native_1.0.0d.bb, do_qa_configure)
NOTE: package openssl-native-1.0.0d-r14.0: task do_qa_configure: Started
NOTE: package openssl-native-1.0.0d-r14.0: task do_qa_configure: Succeeded
NOTE: Running task 231 of 339 (ID: 252, /home/nahsan/openembedded/openembedded/recipes/openssl/openssl-native_1.0.0d.bb, do_compile)
NOTE: package openssl-native-1.0.0d-r14.0: task do_compile: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_configure: Succeeded
NOTE: Running task 232 of 339 (ID: 167, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_qa_configure)
NOTE: package gnome-common-native-2.28.0-r0: task do_qa_configure: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_qa_configure: Succeeded
NOTE: Running task 233 of 339 (ID: 168, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_compile)
NOTE: package gnome-common-native-2.28.0-r0: task do_compile: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_compile: Succeeded
NOTE: Running task 234 of 339 (ID: 159, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_install)
NOTE: package gnome-common-native-2.28.0-r0: task do_install: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_install: Succeeded
NOTE: Running task 235 of 339 (ID: 160, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_populate_sysroot)
NOTE: package gnome-common-native-2.28.0-r0: task do_populate_sysroot: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_populate_sysroot: Succeeded
NOTE: Running task 236 of 339 (ID: 169, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_package)
NOTE: package gnome-common-native-2.28.0-r0: task do_package: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_package: Succeeded
NOTE: Running task 237 of 339 (ID: 170, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_package_write_ipk)
NOTE: package gnome-common-native-2.28.0-r0: task do_package_write_ipk: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_package_write_ipk: Succeeded
NOTE: Running task 238 of 339 (ID: 162, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_package_write)
NOTE: package gnome-common-native-2.28.0-r0: task do_package_write: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_package_write: Succeeded
NOTE: Running task 239 of 339 (ID: 161, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_qa_staging)
NOTE: package gnome-common-native-2.28.0-r0: task do_qa_staging: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_qa_staging: Succeeded
NOTE: Running task 240 of 339 (ID: 163, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_package_stage)
NOTE: package gnome-common-native-2.28.0-r0: task do_package_stage: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_package_stage: Succeeded
NOTE: Running task 241 of 339 (ID: 128, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_package_write_ipk)
NOTE: package pkgconfig-native-0.23-r8.1: task do_package_write_ipk: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_package_write_ipk: Succeeded
NOTE: Running task 242 of 339 (ID: 120, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_package_write)
NOTE: package pkgconfig-native-0.23-r8.1: task do_package_write: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_package_write: Succeeded
NOTE: Running task 243 of 339 (ID: 119, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_qa_staging)
NOTE: package pkgconfig-native-0.23-r8.1: task do_qa_staging: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_qa_staging: Succeeded
NOTE: Running task 244 of 339 (ID: 121, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_package_stage)
NOTE: package pkgconfig-native-0.23-r8.1: task do_package_stage: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_package_stage: Succeeded
NOTE: package bzip2-full-native-1.0.6-r0: task do_configure: Succeeded
NOTE: Running task 245 of 339 (ID: 265, /home/nahsan/openembedded/openembedded/recipes/bzip2/bzip2-full-native_1.0.6.bb, do_qa_configure)
NOTE: package bzip2-full-native-1.0.6-r0: task do_qa_configure: Started
NOTE: package bzip2-full-native-1.0.6-r0: task do_qa_configure: Succeeded
NOTE: Running task 246 of 339 (ID: 266, /home/nahsan/openembedded/openembedded/recipes/bzip2/bzip2-full-native_1.0.6.bb, do_compile)
NOTE: package bzip2-full-native-1.0.6-r0: task do_compile: Started
NOTE: package bzip2-full-native-1.0.6-r0: task do_compile: Succeeded
NOTE: Running task 247 of 339 (ID: 257, /home/nahsan/openembedded/openembedded/recipes/bzip2/bzip2-full-native_1.0.6.bb, do_install)
NOTE: package bzip2-full-native-1.0.6-r0: task do_install: Started
NOTE: package bzip2-full-native-1.0.6-r0: task do_install: Succeeded
NOTE: Running task 248 of 339 (ID: 258, /home/nahsan/openembedded/openembedded/recipes/bzip2/bzip2-full-native_1.0.6.bb, do_populate_sysroot)
NOTE: package bzip2-full-native-1.0.6-r0: task do_populate_sysroot: Started
NOTE: Running task 249 of 339 (ID: 267, /home/nahsan/openembedded/openembedded/recipes/bzip2/bzip2-full-native_1.0.6.bb, do_package)
NOTE: package bzip2-full-native-1.0.6-r0: task do_package: Started
NOTE: package bzip2-full-native-1.0.6-r0: task do_package: Succeeded
NOTE: Running task 250 of 339 (ID: 268, /home/nahsan/openembedded/openembedded/recipes/bzip2/bzip2-full-native_1.0.6.bb, do_package_write_ipk)
NOTE: package bzip2-full-native-1.0.6-r0: task do_populate_sysroot: Succeeded
NOTE: package bzip2-full-native-1.0.6-r0: task do_package_write_ipk: Started
NOTE: package bzip2-full-native-1.0.6-r0: task do_package_write_ipk: Succeeded
NOTE: Running task 251 of 339 (ID: 259, /home/nahsan/openembedded/openembedded/recipes/bzip2/bzip2-full-native_1.0.6.bb, do_qa_staging)
NOTE: package bzip2-full-native-1.0.6-r0: task do_qa_staging: Started
NOTE: package bzip2-full-native-1.0.6-r0: task do_qa_staging: Succeeded
NOTE: Running task 252 of 339 (ID: 260, /home/nahsan/openembedded/openembedded/recipes/bzip2/bzip2-full-native_1.0.6.bb, do_package_write)
NOTE: package bzip2-full-native-1.0.6-r0: task do_package_write: Started
NOTE: package bzip2-full-native-1.0.6-r0: task do_package_write: Succeeded
NOTE: Running task 253 of 339 (ID: 261, /home/nahsan/openembedded/openembedded/recipes/bzip2/bzip2-full-native_1.0.6.bb, do_package_stage)
NOTE: package bzip2-full-native-1.0.6-r0: task do_package_stage: Started
NOTE: package bzip2-full-native-1.0.6-r0: task do_package_stage: Succeeded
NOTE: package openssl-native-1.0.0d-r14.0: task do_compile: Succeeded
NOTE: Running task 254 of 339 (ID: 243, /home/nahsan/openembedded/openembedded/recipes/openssl/openssl-native_1.0.0d.bb, do_install)
NOTE: package openssl-native-1.0.0d-r14.0: task do_install: Started
NOTE: package openssl-native-1.0.0d-r14.0: task do_install: Succeeded
NOTE: Running task 255 of 339 (ID: 244, /home/nahsan/openembedded/openembedded/recipes/openssl/openssl-native_1.0.0d.bb, do_populate_sysroot)
NOTE: Running task 256 of 339 (ID: 253, /home/nahsan/openembedded/openembedded/recipes/openssl/openssl-native_1.0.0d.bb, do_package)
NOTE: package openssl-native-1.0.0d-r14.0: task do_populate_sysroot: Started
NOTE: package openssl-native-1.0.0d-r14.0: task do_package: Started
NOTE: package openssl-native-1.0.0d-r14.0: task do_package: Succeeded
NOTE: Running task 257 of 339 (ID: 254, /home/nahsan/openembedded/openembedded/recipes/openssl/openssl-native_1.0.0d.bb, do_package_write_ipk)
NOTE: package openssl-native-1.0.0d-r14.0: task do_populate_sysroot: Succeeded
NOTE: package openssl-native-1.0.0d-r14.0: task do_package_write_ipk: Started
NOTE: package openssl-native-1.0.0d-r14.0: task do_package_write_ipk: Succeeded
NOTE: Running task 258 of 339 (ID: 245, /home/nahsan/openembedded/openembedded/recipes/openssl/openssl-native_1.0.0d.bb, do_qa_staging)
NOTE: Running task 259 of 339 (ID: 246, /home/nahsan/openembedded/openembedded/recipes/openssl/openssl-native_1.0.0d.bb, do_package_write)
NOTE: package openssl-native-1.0.0d-r14.0: task do_qa_staging: Started
NOTE: package openssl-native-1.0.0d-r14.0: task do_qa_staging: Succeeded
NOTE: package openssl-native-1.0.0d-r14.0: task do_package_write: Started
NOTE: package openssl-native-1.0.0d-r14.0: task do_package_write: Succeeded
NOTE: Running task 260 of 339 (ID: 247, /home/nahsan/openembedded/openembedded/recipes/openssl/openssl-native_1.0.0d.bb, do_package_stage)
NOTE: package ncurses-native-5.7+20110115-r16: task do_compile: Succeeded
NOTE: package openssl-native-1.0.0d-r14.0: task do_package_stage: Started
NOTE: Running task 261 of 339 (ID: 313, virtual:native:/home/nahsan/openembedded/openembedded/recipes/ncurses/ncurses_5.7.bb, do_install)
NOTE: package openssl-native-1.0.0d-r14.0: task do_package_stage: Succeeded
NOTE: package ncurses-native-5.7+20110115-r16: task do_install: Started
NOTE: package ncurses-native-5.7+20110115-r16: task do_install: Succeeded
NOTE: Running task 262 of 339 (ID: 314, virtual:native:/home/nahsan/openembedded/openembedded/recipes/ncurses/ncurses_5.7.bb, do_populate_sysroot)
NOTE: Running task 263 of 339 (ID: 323, virtual:native:/home/nahsan/openembedded/openembedded/recipes/ncurses/ncurses_5.7.bb, do_package)
NOTE: package ncurses-native-5.7+20110115-r16: task do_populate_sysroot: Started
NOTE: package ncurses-native-5.7+20110115-r16: task do_package: Started
NOTE: package ncurses-native-5.7+20110115-r16: task do_package: Succeeded
NOTE: Running task 264 of 339 (ID: 324, virtual:native:/home/nahsan/openembedded/openembedded/recipes/ncurses/ncurses_5.7.bb, do_package_write_ipk)
NOTE: package ncurses-native-5.7+20110115-r16: task do_package_write_ipk: Started
NOTE: package ncurses-native-5.7+20110115-r16: task do_package_write_ipk: Succeeded
NOTE: Running task 265 of 339 (ID: 316, virtual:native:/home/nahsan/openembedded/openembedded/recipes/ncurses/ncurses_5.7.bb, do_package_write)
NOTE: package ncurses-native-5.7+20110115-r16: task do_package_write: Started
NOTE: package ncurses-native-5.7+20110115-r16: task do_package_write: Succeeded
NOTE: package ncurses-native-5.7+20110115-r16: task do_populate_sysroot: Succeeded
NOTE: Running task 266 of 339 (ID: 292, virtual:native:/home/nahsan/openembedded/openembedded/recipes/readline/readline_5.2.bb, do_configure)
NOTE: Running task 267 of 339 (ID: 315, virtual:native:/home/nahsan/openembedded/openembedded/recipes/ncurses/ncurses_5.7.bb, do_qa_staging)
NOTE: package readline-native-5.2-r8: task do_configure: Started
NOTE: package ncurses-native-5.7+20110115-r16: task do_qa_staging: Started
NOTE: package ncurses-native-5.7+20110115-r16: task do_qa_staging: Succeeded
NOTE: Running task 268 of 339 (ID: 317, virtual:native:/home/nahsan/openembedded/openembedded/recipes/ncurses/ncurses_5.7.bb, do_package_stage)
NOTE: package ncurses-native-5.7+20110115-r16: task do_package_stage: Started
NOTE: package ncurses-native-5.7+20110115-r16: task do_package_stage: Succeeded
NOTE: package readline-native-5.2-r8: task do_configure: Succeeded
NOTE: Running task 269 of 339 (ID: 293, virtual:native:/home/nahsan/openembedded/openembedded/recipes/readline/readline_5.2.bb, do_qa_configure)
NOTE: package readline-native-5.2-r8: task do_qa_configure: Started
NOTE: package readline-native-5.2-r8: task do_qa_configure: Succeeded
NOTE: Running task 270 of 339 (ID: 294, virtual:native:/home/nahsan/openembedded/openembedded/recipes/readline/readline_5.2.bb, do_compile)
NOTE: package readline-native-5.2-r8: task do_compile: Started
NOTE: package readline-native-5.2-r8: task do_compile: Succeeded
NOTE: Running task 271 of 339 (ID: 285, virtual:native:/home/nahsan/openembedded/openembedded/recipes/readline/readline_5.2.bb, do_install)
NOTE: package readline-native-5.2-r8: task do_install: Started
NOTE: package readline-native-5.2-r8: task do_install: Succeeded
NOTE: Running task 272 of 339 (ID: 286, virtual:native:/home/nahsan/openembedded/openembedded/recipes/readline/readline_5.2.bb, do_populate_sysroot)
NOTE: Running task 273 of 339 (ID: 295, virtual:native:/home/nahsan/openembedded/openembedded/recipes/readline/readline_5.2.bb, do_package)
NOTE: package readline-native-5.2-r8: task do_populate_sysroot: Started
NOTE: package readline-native-5.2-r8: task do_populate_sysroot: Succeeded
NOTE: package readline-native-5.2-r8: task do_package: Started
NOTE: package readline-native-5.2-r8: task do_package: Succeeded
NOTE: Running task 274 of 339 (ID: 306, virtual:native:/home/nahsan/openembedded/openembedded/recipes/sqlite/sqlite3_3.6.23.1.bb, do_configure)
NOTE: Running task 275 of 339 (ID: 287, virtual:native:/home/nahsan/openembedded/openembedded/recipes/readline/readline_5.2.bb, do_qa_staging)
NOTE: package readline-native-5.2-r8: task do_qa_staging: Started
NOTE: package readline-native-5.2-r8: task do_qa_staging: Succeeded
NOTE: Running task 276 of 339 (ID: 296, virtual:native:/home/nahsan/openembedded/openembedded/recipes/readline/readline_5.2.bb, do_package_write_ipk)
NOTE: package readline-native-5.2-r8: task do_package_write_ipk: Started
NOTE: package readline-native-5.2-r8: task do_package_write_ipk: Succeeded
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_configure: Started
NOTE: Running task 277 of 339 (ID: 288, virtual:native:/home/nahsan/openembedded/openembedded/recipes/readline/readline_5.2.bb, do_package_write)
NOTE: package readline-native-5.2-r8: task do_package_write: Started
NOTE: package readline-native-5.2-r8: task do_package_write: Succeeded
NOTE: Running task 278 of 339 (ID: 289, virtual:native:/home/nahsan/openembedded/openembedded/recipes/readline/readline_5.2.bb, do_package_stage)
NOTE: package readline-native-5.2-r8: task do_package_stage: Started
NOTE: package readline-native-5.2-r8: task do_package_stage: Succeeded
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_configure: Succeeded
NOTE: Running task 279 of 339 (ID: 307, virtual:native:/home/nahsan/openembedded/openembedded/recipes/sqlite/sqlite3_3.6.23.1.bb, do_qa_configure)
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_qa_configure: Started
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_qa_configure: Succeeded
NOTE: Running task 280 of 339 (ID: 308, virtual:native:/home/nahsan/openembedded/openembedded/recipes/sqlite/sqlite3_3.6.23.1.bb, do_compile)
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_compile: Started
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_compile: Succeeded
NOTE: Running task 281 of 339 (ID: 299, virtual:native:/home/nahsan/openembedded/openembedded/recipes/sqlite/sqlite3_3.6.23.1.bb, do_install)
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_install: Started
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_install: Succeeded
NOTE: Running task 282 of 339 (ID: 300, virtual:native:/home/nahsan/openembedded/openembedded/recipes/sqlite/sqlite3_3.6.23.1.bb, do_populate_sysroot)
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_populate_sysroot: Started
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_populate_sysroot: Succeeded
NOTE: Running task 283 of 339 (ID: 309, virtual:native:/home/nahsan/openembedded/openembedded/recipes/sqlite/sqlite3_3.6.23.1.bb, do_package)
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_package: Started
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_package: Succeeded
NOTE: Running task 284 of 339 (ID: 236, /home/nahsan/openembedded/openembedded/recipes/python/python-native_2.6.6.bb, do_configure)
NOTE: package python-native-2.6.6-ml12.0: task do_configure: Started
NOTE: Running task 285 of 339 (ID: 301, virtual:native:/home/nahsan/openembedded/openembedded/recipes/sqlite/sqlite3_3.6.23.1.bb, do_qa_staging)
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_qa_staging: Started
NOTE: Running task 286 of 339 (ID: 310, virtual:native:/home/nahsan/openembedded/openembedded/recipes/sqlite/sqlite3_3.6.23.1.bb, do_package_write_ipk)
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_qa_staging: Succeeded
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_package_write_ipk: Started
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_package_write_ipk: Succeeded
NOTE: Running task 287 of 339 (ID: 302, virtual:native:/home/nahsan/openembedded/openembedded/recipes/sqlite/sqlite3_3.6.23.1.bb, do_package_write)
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_package_write: Started
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_package_write: Succeeded
NOTE: Running task 288 of 339 (ID: 303, virtual:native:/home/nahsan/openembedded/openembedded/recipes/sqlite/sqlite3_3.6.23.1.bb, do_package_stage)
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_package_stage: Started
NOTE: package sqlite3-native-3.6.23.1-r4.0: task do_package_stage: Succeeded
NOTE: package python-native-2.6.6-ml12.0: task do_configure: Succeeded
NOTE: Running task 289 of 339 (ID: 237, /home/nahsan/openembedded/openembedded/recipes/python/python-native_2.6.6.bb, do_qa_configure)
NOTE: package python-native-2.6.6-ml12.0: task do_qa_configure: Started
NOTE: package python-native-2.6.6-ml12.0: task do_qa_configure: Succeeded
NOTE: Running task 290 of 339 (ID: 238, /home/nahsan/openembedded/openembedded/recipes/python/python-native_2.6.6.bb, do_compile)
NOTE: package python-native-2.6.6-ml12.0: task do_compile: Started
NOTE: package python-native-2.6.6-ml12.0: task do_compile: Succeeded
NOTE: Running task 291 of 339 (ID: 229, /home/nahsan/openembedded/openembedded/recipes/python/python-native_2.6.6.bb, do_install)
NOTE: package python-native-2.6.6-ml12.0: task do_install: Started
NOTE: package python-native-2.6.6-ml12.0: task do_install: Succeeded
NOTE: Running task 292 of 339 (ID: 230, /home/nahsan/openembedded/openembedded/recipes/python/python-native_2.6.6.bb, do_populate_sysroot)
NOTE: package python-native-2.6.6-ml12.0: task do_populate_sysroot: Started
NOTE: Running task 293 of 339 (ID: 239, /home/nahsan/openembedded/openembedded/recipes/python/python-native_2.6.6.bb, do_package)
NOTE: package python-native-2.6.6-ml12.0: task do_package: Started
NOTE: package python-native-2.6.6-ml12.0: task do_package: Succeeded
NOTE: Running task 294 of 339 (ID: 240, /home/nahsan/openembedded/openembedded/recipes/python/python-native_2.6.6.bb, do_package_write_ipk)
NOTE: package python-native-2.6.6-ml12.0: task do_package_write_ipk: Started
NOTE: package python-native-2.6.6-ml12.0: task do_package_write_ipk: Succeeded
NOTE: Running task 295 of 339 (ID: 232, /home/nahsan/openembedded/openembedded/recipes/python/python-native_2.6.6.bb, do_package_write)
NOTE: package python-native-2.6.6-ml12.0: task do_package_write: Started
NOTE: package python-native-2.6.6-ml12.0: task do_package_write: Succeeded
NOTE: package python-native-2.6.6-ml12.0: task do_populate_sysroot: Succeeded
NOTE: Running task 296 of 339 (ID: 138, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_configure)
NOTE: Running task 297 of 339 (ID: 231, /home/nahsan/openembedded/openembedded/recipes/python/python-native_2.6.6.bb, do_qa_staging)
NOTE: package libxml2-native-2.7.8-r9.1: task do_configure: Started
NOTE: package python-native-2.6.6-ml12.0: task do_qa_staging: Started
NOTE: package python-native-2.6.6-ml12.0: task do_qa_staging: Succeeded
NOTE: Running task 298 of 339 (ID: 233, /home/nahsan/openembedded/openembedded/recipes/python/python-native_2.6.6.bb, do_package_stage)
NOTE: package python-native-2.6.6-ml12.0: task do_package_stage: Started
NOTE: package python-native-2.6.6-ml12.0: task do_package_stage: Succeeded
NOTE: package libxml2-native-2.7.8-r9.1: task do_configure: Succeeded
NOTE: Running task 299 of 339 (ID: 139, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_qa_configure)
NOTE: package libxml2-native-2.7.8-r9.1: task do_qa_configure: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_qa_configure: Succeeded
NOTE: Running task 300 of 339 (ID: 140, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_compile)
NOTE: package libxml2-native-2.7.8-r9.1: task do_compile: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_compile: Succeeded
NOTE: Running task 301 of 339 (ID: 131, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_install)
NOTE: package libxml2-native-2.7.8-r9.1: task do_install: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_install: Succeeded
NOTE: Running task 302 of 339 (ID: 132, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_populate_sysroot)
NOTE: Running task 303 of 339 (ID: 141, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_package)
NOTE: package libxml2-native-2.7.8-r9.1: task do_populate_sysroot: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_package: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_package: Succeeded
NOTE: package libxml2-native-2.7.8-r9.1: task do_populate_sysroot: Succeeded
NOTE: Running task 304 of 339 (ID: 142, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_package_write_ipk)
NOTE: package libxml2-native-2.7.8-r9.1: task do_package_write_ipk: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_package_write_ipk: Succeeded
NOTE: Running task 305 of 339 (ID: 152, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_configure)
NOTE: Running task 306 of 339 (ID: 40, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_configure)
NOTE: Running task 307 of 339 (ID: 133, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_qa_staging)
NOTE: package libxslt-native-1.1.26-r6.0: task do_configure: Started
NOTE: package gettext-native-0.18-r6: task do_configure: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_qa_staging: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_qa_staging: Succeeded
NOTE: Running task 308 of 339 (ID: 134, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_package_write)
NOTE: package libxml2-native-2.7.8-r9.1: task do_package_write: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_package_write: Succeeded
NOTE: Running task 309 of 339 (ID: 135, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_package_stage)
NOTE: package libxml2-native-2.7.8-r9.1: task do_package_stage: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_package_stage: Succeeded
NOTE: package libxslt-native-1.1.26-r6.0: task do_configure: Succeeded
NOTE: Running task 310 of 339 (ID: 153, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_qa_configure)
NOTE: package libxslt-native-1.1.26-r6.0: task do_qa_configure: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_qa_configure: Succeeded
NOTE: Running task 311 of 339 (ID: 154, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_compile)
NOTE: package libxslt-native-1.1.26-r6.0: task do_compile: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_compile: Succeeded
NOTE: Running task 312 of 339 (ID: 145, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_install)
NOTE: package libxslt-native-1.1.26-r6.0: task do_install: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_install: Succeeded
NOTE: Running task 313 of 339 (ID: 146, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_populate_sysroot)
NOTE: Running task 314 of 339 (ID: 155, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_package)
NOTE: package libxslt-native-1.1.26-r6.0: task do_populate_sysroot: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_package: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_package: Succeeded
NOTE: Running task 315 of 339 (ID: 156, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_package_write_ipk)
NOTE: package libxslt-native-1.1.26-r6.0: task do_populate_sysroot: Succeeded
NOTE: package libxslt-native-1.1.26-r6.0: task do_package_write_ipk: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_package_write_ipk: Succeeded
NOTE: Running task 317 of 339 (ID: 148, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_package_write)
NOTE: Running task 316 of 339 (ID: 147, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_qa_staging)
NOTE: package libxslt-native-1.1.26-r6.0: task do_qa_staging: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_package_write: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_package_write: Succeeded
NOTE: package libxslt-native-1.1.26-r6.0: task do_qa_staging: Succeeded
NOTE: Running task 318 of 339 (ID: 149, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_package_stage)
NOTE: package libxslt-native-1.1.26-r6.0: task do_package_stage: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_package_stage: Succeeded
NOTE: package gettext-native-0.18-r6: task do_configure: Succeeded
NOTE: Running task 319 of 339 (ID: 41, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_qa_configure)
NOTE: package gettext-native-0.18-r6: task do_qa_configure: Started
NOTE: package gettext-native-0.18-r6: task do_qa_configure: Succeeded
NOTE: Running task 320 of 339 (ID: 42, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_compile)
NOTE: package gettext-native-0.18-r6: task do_compile: Started
NOTE: package gettext-native-0.18-r6: task do_compile: Succeeded
NOTE: Running task 321 of 339 (ID: 33, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_install)
NOTE: package gettext-native-0.18-r6: task do_install: Started
NOTE: package gettext-native-0.18-r6: task do_install: Succeeded
NOTE: Running task 322 of 339 (ID: 34, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_populate_sysroot)
NOTE: Running task 323 of 339 (ID: 43, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_package)
NOTE: package gettext-native-0.18-r6: task do_populate_sysroot: Started
NOTE: package gettext-native-0.18-r6: task do_package: Started
NOTE: package gettext-native-0.18-r6: task do_package: Succeeded
NOTE: Running task 324 of 339 (ID: 44, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_package_write_ipk)
NOTE: package gettext-native-0.18-r6: task do_package_write_ipk: Started
NOTE: package gettext-native-0.18-r6: task do_package_write_ipk: Succeeded
NOTE: Running task 325 of 339 (ID: 36, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_package_write)
NOTE: package gettext-native-0.18-r6: task do_package_write: Started
NOTE: package gettext-native-0.18-r6: task do_package_write: Succeeded
NOTE: package gettext-native-0.18-r6: task do_populate_sysroot: Succeeded
NOTE: Running task 326 of 339 (ID: 11, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_configure)
NOTE: Running task 327 of 339 (ID: 35, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_qa_staging)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_configure: Started
NOTE: package gettext-native-0.18-r6: task do_qa_staging: Started
NOTE: package gettext-native-0.18-r6: task do_qa_staging: Succeeded
NOTE: Running task 328 of 339 (ID: 37, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_package_stage)
NOTE: package gettext-native-0.18-r6: task do_package_stage: Started
NOTE: package gettext-native-0.18-r6: task do_package_stage: Succeeded
ERROR: Task 11 (virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_configure) failed with 256
ERROR: 'virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb' failed
ERROR: Function do_configure failed
NOTE: Task failed: ('function do_configure failed', '/home/nahsan/openembedded/build/tmp/work/i686-linux/gnome-doc-utils-native-0.19.2-r6.2/temp/log.do_configure.20224')
ERROR: Logfile of failure stored in: /home/nahsan/openembedded/build/tmp/work/i686-linux/gnome-doc-utils-native-0.19.2-r6.2/temp/log.do_configure.20224
Log data follows:
| autoreconf: Entering directory `.'
| autoreconf: configure.in: not using Gettext
| autoreconf: running: aclocal -I /home/nahsan/openembedded/build/tmp/work/i686-linux/gnome-doc-utils-native-0.19.2-r6.2/gnome-doc-utils-0.19.2/m4/ -I /home/nahsan/openembedded/build/tmp/work/i686-linux/gnome-doc-utils-native-0.19.2-r6.2/gnome-doc-utils-0.19.2/tools/ -I /home/nahsan/openembedded/build/tmp/sysroots/i686-linux/usr/share/aclocal-1.11 -I /home/nahsan/openembedded/build/tmp/sysroots/i686-linux/usr/share/aclocal -I /home/nahsan/openembedded/build/tmp/work/i686-linux/gnome-doc-utils-native-0.19.2-r6.2/gnome-doc-utils-0.19.2/m4/ -I /home/nahsan/openembedded/build/tmp/work/i686-linux/gnome-doc-utils-native-0.19.2-r6.2/gnome-doc-utils-0.19.2/tools/ -I /home/nahsan/openembedded/build/tmp/sysroots/i686-linux/usr/share/aclocal-1.11 -I /home/nahsan/openembedded/build/tmp/sysroots/i686-linux/usr/share/aclocal --force -I m4
| autoreconf: configure.in: tracing
| autoreconf: configure.in: not using Libtool
| autoreconf: running: /home/nahsan/openembedded/build/tmp/sysroots/i686-linux/usr/bin/autoconf --include=/home/nahsan/openembedded/build/tmp/work/i686-linux/gnome-doc-utils-native-0.19.2-r6.2/gnome-doc-utils-0.19.2/m4/ --include=/home/nahsan/openembedded/build/tmp/work/i686-linux/gnome-doc-utils-native-0.19.2-r6.2/gnome-doc-utils-0.19.2/tools/ --include=/home/nahsan/openembedded/build/tmp/sysroots/i686-linux/usr/share/aclocal-1.11 --include=/home/nahsan/openembedded/build/tmp/sysroots/i686-linux/usr/share/aclocal --force --warnings=cross
| autoreconf: configure.in: not using Autoheader
| autoreconf: running: automake --foreign --add-missing --copy --force-missing --warnings=cross
| automake: unknown warning category `cross'
| autoreconf: running: gnu-configize
| autoreconf: Leaving directory `.'
| /home/nahsan/openembedded/build/tmp/work/i686-linux/gnome-doc-utils-native-0.19.2-r6.2/temp/run.do_configure.20224: line 310: intltoolize: command not found
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_configure: Failed
ERROR: TaskFailed event exception, aborting
ERROR: Build of virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb do_configure failed
ERROR: Task 11 (virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_configure) failed with 256
ERROR: 'virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb' failed
ERROR: 'virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb' failed

[-- Attachment #3: build_intltool_fix.log --]
[-- Type: application/octet-stream, Size: 16805 bytes --]

Parsing .bb files, please wait...done.
Parsing of 7332 .bb files complete (6890 cached, 442 parsed). 7662 targets, 311 skipped, 2 masked, 0 errors.

Build Configuration:
BB_VERSION        = "1.10.2"
METADATA_BRANCH   = "master"
METADATA_REVISION = "d7a5453"
TARGET_ARCH       = "arm"
TARGET_OS         = "linux-gnueabi"
MACHINE           = "beagleboard"
DISTRO            = "angstrom"
DISTRO_VERSION    = "v20110317"
TARGET_FPU        = "hard"

NOTE: Resolving any missing task queue dependencies
NOTE: Preparing runqueue
NOTE: Executing runqueue
NOTE: Running task 162 of 381 (ID: 347, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_setscene)
NOTE: Running task 169 of 381 (ID: 263, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_setscene)
NOTE: Running task 177 of 381 (ID: 165, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_setscene)
NOTE: package expat-native-2.0.1-r3.0: task do_setscene: Started
NOTE: package expat-native-2.0.1-r3.0: task do_setscene: Succeeded
NOTE: package libxml-parser-perl-native-2.36-r4: task do_setscene: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_setscene: Succeeded
NOTE: package intltool-native-0.40.3-r4.0: task do_setscene: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_setscene: Succeeded
NOTE: Running task 331 of 381 (ID: 346, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_fetch)
NOTE: Running task 332 of 381 (ID: 262, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_fetch)
NOTE: Running task 333 of 381 (ID: 164, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_fetch)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_fetch: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_fetch: Succeeded
NOTE: package intltool-native-0.40.3-r4.0: task do_fetch: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_fetch: Succeeded
NOTE: package expat-native-2.0.1-r3.0: task do_fetch: Started
NOTE: package expat-native-2.0.1-r3.0: task do_fetch: Succeeded
NOTE: Running task 334 of 381 (ID: 339, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_unpack)
NOTE: Running task 335 of 381 (ID: 255, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_unpack)
NOTE: Running task 336 of 381 (ID: 157, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_unpack)
NOTE: package expat-native-2.0.1-r3.0: task do_unpack: Started
NOTE: Unpacking ../../sources/expat-2.0.1.tar.gz to tmp/work/i686-linux/expat-native-2.0.1-r3.0/
NOTE: package libxml-parser-perl-native-2.36-r4: task do_unpack: Started
NOTE: Unpacking ../../sources/XML-Parser-2.36.tar.gz to tmp/work/i686-linux/libxml-parser-perl-native-2.36-r4/
NOTE: package libxml-parser-perl-native-2.36-r4: task do_unpack: Succeeded
NOTE: package expat-native-2.0.1-r3.0: task do_unpack: Succeeded
NOTE: package intltool-native-0.40.3-r4.0: task do_unpack: Started
NOTE: Unpacking ../../sources/intltool-0.40.3.tar.bz2 to tmp/work/i686-linux/intltool-native-0.40.3-r4.0/
NOTE: package intltool-native-0.40.3-r4.0: task do_unpack: Succeeded
NOTE: Running task 337 of 381 (ID: 340, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_patch)
NOTE: Running task 338 of 381 (ID: 256, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_patch)
NOTE: package expat-native-2.0.1-r3.0: task do_patch: Started
NOTE: Applying patch 'autotools.patch' (../openembedded/recipes/expat/expat-2.0.1/autotools.patch)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_patch: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_patch: Succeeded
NOTE: Running task 339 of 381 (ID: 158, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_patch)
NOTE: package expat-native-2.0.1-r3.0: task do_patch: Succeeded
NOTE: package intltool-native-0.40.3-r4.0: task do_patch: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_patch: Succeeded
NOTE: Running task 340 of 381 (ID: 348, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_configure)
NOTE: package expat-native-2.0.1-r3.0: task do_configure: Started
NOTE: package expat-native-2.0.1-r3.0: task do_configure: Succeeded
NOTE: Running task 341 of 381 (ID: 349, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_qa_configure)
NOTE: package expat-native-2.0.1-r3.0: task do_qa_configure: Started
NOTE: package expat-native-2.0.1-r3.0: task do_qa_configure: Succeeded
NOTE: Running task 342 of 381 (ID: 350, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_compile)
NOTE: package expat-native-2.0.1-r3.0: task do_compile: Started
NOTE: package expat-native-2.0.1-r3.0: task do_compile: Succeeded
NOTE: Running task 343 of 381 (ID: 341, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_install)
NOTE: package expat-native-2.0.1-r3.0: task do_install: Started
NOTE: package expat-native-2.0.1-r3.0: task do_install: Succeeded
NOTE: Running task 344 of 381 (ID: 342, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_populate_sysroot)
NOTE: Running task 345 of 381 (ID: 351, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_package)
NOTE: package expat-native-2.0.1-r3.0: task do_populate_sysroot: Started
NOTE: package expat-native-2.0.1-r3.0: task do_populate_sysroot: Succeeded
NOTE: package expat-native-2.0.1-r3.0: task do_package: Started
NOTE: package expat-native-2.0.1-r3.0: task do_package: Succeeded
NOTE: Running task 346 of 381 (ID: 264, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_configure)
NOTE: Running task 347 of 381 (ID: 343, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_qa_staging)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_configure: Started
NOTE: package expat-native-2.0.1-r3.0: task do_qa_staging: Started
NOTE: package expat-native-2.0.1-r3.0: task do_qa_staging: Succeeded
NOTE: Running task 348 of 381 (ID: 352, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_package_write_ipk)
NOTE: package expat-native-2.0.1-r3.0: task do_package_write_ipk: Started
NOTE: package expat-native-2.0.1-r3.0: task do_package_write_ipk: Succeeded
NOTE: Running task 349 of 381 (ID: 344, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_package_write)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_configure: Succeeded
NOTE: package expat-native-2.0.1-r3.0: task do_package_write: Started
NOTE: package expat-native-2.0.1-r3.0: task do_package_write: Succeeded
NOTE: Running task 350 of 381 (ID: 265, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_qa_configure)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_qa_configure: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_qa_configure: Succeeded
NOTE: Running task 351 of 381 (ID: 345, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_package_stage)
NOTE: package expat-native-2.0.1-r3.0: task do_package_stage: Started
NOTE: Running task 352 of 381 (ID: 266, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_compile)
NOTE: package expat-native-2.0.1-r3.0: task do_package_stage: Succeeded
NOTE: package libxml-parser-perl-native-2.36-r4: task do_compile: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_compile: Succeeded
NOTE: Running task 353 of 381 (ID: 257, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_install)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_install: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_install: Succeeded
NOTE: Running task 354 of 381 (ID: 258, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_populate_sysroot)
NOTE: Running task 355 of 381 (ID: 267, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_package)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_populate_sysroot: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package: Succeeded
NOTE: package libxml-parser-perl-native-2.36-r4: task do_populate_sysroot: Succeeded
NOTE: Running task 356 of 381 (ID: 268, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_package_write_ipk)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package_write_ipk: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package_write_ipk: Succeeded
NOTE: Running task 357 of 381 (ID: 166, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_configure)
NOTE: Running task 358 of 381 (ID: 259, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_qa_staging)
NOTE: package intltool-native-0.40.3-r4.0: task do_configure: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_qa_staging: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_qa_staging: Succeeded
NOTE: Running task 359 of 381 (ID: 260, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_package_write)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package_write: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package_write: Succeeded
NOTE: Running task 360 of 381 (ID: 261, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_package_stage)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package_stage: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package_stage: Succeeded
NOTE: package intltool-native-0.40.3-r4.0: task do_configure: Succeeded
NOTE: Running task 361 of 381 (ID: 167, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_qa_configure)
NOTE: package intltool-native-0.40.3-r4.0: task do_qa_configure: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_qa_configure: Succeeded
NOTE: Running task 362 of 381 (ID: 168, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_compile)
NOTE: package intltool-native-0.40.3-r4.0: task do_compile: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_compile: Succeeded
NOTE: Running task 363 of 381 (ID: 159, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_install)
NOTE: package intltool-native-0.40.3-r4.0: task do_install: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_install: Succeeded
NOTE: Running task 364 of 381 (ID: 160, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_populate_sysroot)
NOTE: Running task 365 of 381 (ID: 169, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_package)
NOTE: package intltool-native-0.40.3-r4.0: task do_populate_sysroot: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_populate_sysroot: Succeeded
NOTE: package intltool-native-0.40.3-r4.0: task do_package: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_package: Succeeded
NOTE: Running task 366 of 381 (ID: 11, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_configure)
NOTE: Running task 367 of 381 (ID: 161, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_qa_staging)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_configure: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_qa_staging: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_qa_staging: Succeeded
NOTE: Running task 368 of 381 (ID: 170, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_package_write_ipk)
NOTE: package intltool-native-0.40.3-r4.0: task do_package_write_ipk: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_package_write_ipk: Succeeded
NOTE: Running task 369 of 381 (ID: 162, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_package_write)
NOTE: package intltool-native-0.40.3-r4.0: task do_package_write: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_package_write: Succeeded
NOTE: Running task 370 of 381 (ID: 163, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_package_stage)
NOTE: package intltool-native-0.40.3-r4.0: task do_package_stage: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_package_stage: Succeeded
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_configure: Succeeded
NOTE: Running task 371 of 381 (ID: 12, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_qa_configure)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_qa_configure: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_qa_configure: Succeeded
NOTE: Running task 372 of 381 (ID: 13, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_compile)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_compile: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_compile: Succeeded
NOTE: Running task 373 of 381 (ID: 2, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_install)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_install: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_install: Succeeded
NOTE: Running task 374 of 381 (ID: 14, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_package)
NOTE: Running task 375 of 381 (ID: 3, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_populate_sysroot)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package: Succeeded
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_populate_sysroot: Started
NOTE: Running task 376 of 381 (ID: 16, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_package_write_ipk)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_populate_sysroot: Succeeded
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_write_ipk: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_write_ipk: Succeeded
NOTE: Running task 377 of 381 (ID: 4, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_qa_staging)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_qa_staging: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_qa_staging: Succeeded
NOTE: Running task 378 of 381 (ID: 5, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_package_write)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_write: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_write: Succeeded
NOTE: Running task 379 of 381 (ID: 6, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_package_stage)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_stage: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_stage: Succeeded
NOTE: Running task 380 of 381 (ID: 7, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_package_stage_all)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_stage_all: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_stage_all: Succeeded
NOTE: Running task 381 of 381 (ID: 9, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_build)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_build: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_build: Succeeded
NOTE: Tasks Summary: Attempted 381 tasks of which 327 didn't need to be rerun and 0 failed.

[-- Attachment #4: build_no_python.log --]
[-- Type: application/octet-stream, Size: 86201 bytes --]

Parsing .bb files, please wait...done.
Parsing of 7332 .bb files complete (6887 cached, 445 parsed). 7662 targets, 311 skipped, 2 masked, 0 errors.

Build Configuration:
BB_VERSION        = "1.10.2"
METADATA_BRANCH   = "master"
METADATA_REVISION = "d7a5453"
TARGET_ARCH       = "arm"
TARGET_OS         = "linux-gnueabi"
MACHINE           = "beagleboard"
DISTRO            = "angstrom"
DISTRO_VERSION    = "v20110317"
TARGET_FPU        = "hard"

NOTE: Resolving any missing task queue dependencies
NOTE: Preparing runqueue
NOTE: Executing runqueue
NOTE: Running task 1 of 269 (ID: 221, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_setscene)
NOTE: Running task 2 of 269 (ID: 235, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_setscene)
NOTE: Running task 3 of 269 (ID: 109, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_setscene)
NOTE: Running task 4 of 269 (ID: 95, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_setscene)
NOTE: package quilt-native-0.48-r7.1: task do_setscene: Started
NOTE: package unifdef-native-2.6-0: task do_setscene: Started
NOTE: package unifdef-native-2.6-0: task do_setscene: Succeeded
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_setscene: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_setscene: Succeeded
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_setscene: Started
NOTE: Running task 5 of 269 (ID: 234, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_fetch)
NOTE: package quilt-native-0.48-r7.1: task do_setscene: Succeeded
NOTE: package unifdef-native-2.6-0: task do_fetch: Started
NOTE: package unifdef-native-2.6-0: task do_fetch: Succeeded
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_setscene: Succeeded
NOTE: Running task 6 of 269 (ID: 108, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_fetch)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_fetch: Started
NOTE: Running task 7 of 269 (ID: 220, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_fetch)
NOTE: package quilt-native-0.48-r7.1: task do_fetch: Started
NOTE: Running task 8 of 269 (ID: 94, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_fetch)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_fetch: Started
NOTE: Running task 9 of 269 (ID: 227, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_unpack)
NOTE: package quilt-native-0.48-r7.1: task do_fetch: Succeeded
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_fetch: Succeeded
NOTE: package unifdef-native-2.6-0: task do_unpack: Started
NOTE: Unpacking ../../sources/unifdef-2.6.tar.gz to tmp/work/i686-linux/unifdef-native-2.6-0/
NOTE: package unifdef-native-2.6-0: task do_unpack: Succeeded
NOTE: Running task 10 of 269 (ID: 213, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_unpack)
NOTE: package quilt-native-0.48-r7.1: task do_unpack: Started
NOTE: Running task 11 of 269 (ID: 87, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_unpack)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_unpack: Started
NOTE: Running task 12 of 269 (ID: 228, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_patch)
NOTE: Unpacking ../../sources/quilt-0.48.tar.gz to tmp/work/i686-linux/quilt-native-0.48-r7.1/
NOTE: package quilt-native-0.48-r7.1: task do_unpack: Succeeded
NOTE: Unpacking ../../sources/git_git.savannah.gnu.org.config.git_e35217687ee5f39b428119fe31c7e954f6de64f0.tar.gz to tmp/work/i686-linux/gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0/
NOTE: Unpacking ../openembedded/recipes/gnu-config/files/gnu-configize.in to tmp/work/i686-linux/gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0/
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_unpack: Succeeded
NOTE: package unifdef-native-2.6-0: task do_patch: Started
NOTE: package unifdef-native-2.6-0: task do_patch: Succeeded
NOTE: Running task 13 of 269 (ID: 214, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_patch)
NOTE: package quilt-native-0.48-r7.1: task do_patch: Started
NOTE: Running task 14 of 269 (ID: 207, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_setscene)
NOTE: package perl-native-5.10.1-r10: task do_setscene: Started
NOTE: Running task 15 of 269 (ID: 236, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_configure)
NOTE: Applying patch 'install.patch' (../openembedded/recipes/quilt/quilt-0.48/install.patch)
NOTE: Applying patch 'no_rm_symlinks.patch' (../openembedded/recipes/quilt/quilt-0.48/no_rm_symlinks.patch)
NOTE: Applying patch 'use-cp-for-patch-backup.patch' (../openembedded/recipes/quilt/quilt-0.48/use-cp-for-patch-backup.patch)
NOTE: Applying patch 'dont-allow-optional-quiltrc.patch' (../openembedded/recipes/quilt/quilt-0.48/dont-allow-optional-quiltrc.patch)
NOTE: Applying patch 'fix_new_GNU_patch_detection.patch' (../openembedded/recipes/quilt/quilt-0.48/fix_new_GNU_patch_detection.patch)
NOTE: package perl-native-5.10.1-r10: task do_setscene: Succeeded
NOTE: package unifdef-native-2.6-0: task do_configure: Started
NOTE: package unifdef-native-2.6-0: task do_configure: Succeeded
NOTE: package quilt-native-0.48-r7.1: task do_patch: Succeeded
NOTE: Running task 16 of 269 (ID: 222, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_configure)
NOTE: package quilt-native-0.48-r7.1: task do_configure: Started
NOTE: Running task 17 of 269 (ID: 206, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_fetch)
NOTE: Running task 18 of 269 (ID: 237, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_qa_configure)
NOTE: package perl-native-5.10.1-r10: task do_fetch: Started
NOTE: package unifdef-native-2.6-0: task do_qa_configure: Started
NOTE: package unifdef-native-2.6-0: task do_qa_configure: Succeeded
NOTE: Running task 19 of 269 (ID: 238, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_compile)
NOTE: package perl-native-5.10.1-r10: task do_fetch: Succeeded
NOTE: package unifdef-native-2.6-0: task do_compile: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_fetch: Succeeded
NOTE: Running task 20 of 269 (ID: 101, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_unpack)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_unpack: Started
NOTE: Unpacking ../../sources/linux-2.6.32.tar.bz2 to tmp/work/i686-linux/linux-libc-headers-native-2.6.32-r5/
NOTE: Running task 21 of 269 (ID: 199, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_unpack)
NOTE: package unifdef-native-2.6-0: task do_compile: Succeeded
NOTE: package perl-native-5.10.1-r10: task do_unpack: Started
NOTE: Unpacking ../../sources/perl-5.10.1.tar.gz to tmp/work/i686-linux/perl-native-5.10.1-r10/
NOTE: Running task 22 of 269 (ID: 229, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_install)
NOTE: package unifdef-native-2.6-0: task do_install: Started
NOTE: package unifdef-native-2.6-0: task do_install: Succeeded
NOTE: Unpacking ../openembedded/recipes/perl/perl-native/CPAN-Config.pm to tmp/work/i686-linux/perl-native-5.10.1-r10/
NOTE: package perl-native-5.10.1-r10: task do_unpack: Succeeded
NOTE: Running task 23 of 269 (ID: 193, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_setscene)
NOTE: package m4-native-1.4.14-r0.1: task do_setscene: Started
NOTE: package m4-native-1.4.14-r0.1: task do_setscene: Succeeded
NOTE: Running task 24 of 269 (ID: 230, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_populate_sysroot)
NOTE: package unifdef-native-2.6-0: task do_populate_sysroot: Started
NOTE: package unifdef-native-2.6-0: task do_populate_sysroot: Succeeded
NOTE: Running task 25 of 269 (ID: 192, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_fetch)
NOTE: package m4-native-1.4.14-r0.1: task do_fetch: Started
NOTE: package m4-native-1.4.14-r0.1: task do_fetch: Succeeded
NOTE: Running task 26 of 269 (ID: 200, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_patch)
NOTE: package perl-native-5.10.1-r10: task do_patch: Started
NOTE: Applying patch 'Configure-multilib.patch' (../openembedded/recipes/perl/files/Configure-multilib.patch)
NOTE: Applying patch 'perl-configpm-switch.patch' (../openembedded/recipes/perl/perl-5.10.1/perl-configpm-switch.patch)
NOTE: package quilt-native-0.48-r7.1: task do_configure: Succeeded
NOTE: Running task 27 of 269 (ID: 185, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_unpack)
NOTE: Applying patch 'native-nopacklist.patch' (../openembedded/recipes/perl/perl-5.10.1/native-nopacklist.patch)
NOTE: Applying patch 'native-perlinc.patch' (../openembedded/recipes/perl/perl-5.10.1/native-perlinc.patch)
NOTE: Applying patch 'perl-fix-cross-library-check.patch' (../openembedded/recipes/perl/perl-5.10.1/perl-fix-cross-library-check.patch)
NOTE: package perl-native-5.10.1-r10: task do_patch: Succeeded
NOTE: package m4-native-1.4.14-r0.1: task do_unpack: Started
NOTE: Unpacking ../../sources/m4-1.4.14.tar.bz2 to tmp/work/i686-linux/m4-native-1.4.14-r0.1/
NOTE: Running task 28 of 269 (ID: 223, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_qa_configure)
NOTE: package quilt-native-0.48-r7.1: task do_qa_configure: Started
NOTE: package quilt-native-0.48-r7.1: task do_qa_configure: Succeeded
NOTE: Running task 29 of 269 (ID: 208, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_configure)
NOTE: package m4-native-1.4.14-r0.1: task do_unpack: Succeeded
NOTE: package perl-native-5.10.1-r10: task do_configure: Started
NOTE: Running task 30 of 269 (ID: 53, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_setscene)
NOTE: Running task 31 of 269 (ID: 224, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_compile)
NOTE: package autoconf-native-2.65-r13.1: task do_setscene: Started
NOTE: package quilt-native-0.48-r7.1: task do_compile: Started
NOTE: package autoconf-native-2.65-r13.1: task do_setscene: Succeeded
NOTE: Running task 32 of 269 (ID: 52, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_fetch)
NOTE: package autoconf-native-2.65-r13.1: task do_fetch: Started
NOTE: package autoconf-native-2.65-r13.1: task do_fetch: Succeeded
NOTE: Running task 33 of 269 (ID: 45, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_unpack)
NOTE: package autoconf-native-2.65-r13.1: task do_unpack: Started
NOTE: Unpacking ../../sources/autoconf-2.65.tar.bz2 to tmp/work/i686-linux/autoconf-native-2.65-r13.1/
NOTE: package autoconf-native-2.65-r13.1: task do_unpack: Succeeded
NOTE: Running task 34 of 269 (ID: 67, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_setscene)
NOTE: package quilt-native-0.48-r7.1: task do_compile: Succeeded
NOTE: package automake-native-1.11.1-r4.2: task do_setscene: Started
NOTE: package automake-native-1.11.1-r4.2: task do_setscene: Succeeded
NOTE: Running task 35 of 269 (ID: 215, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_install)
NOTE: package quilt-native-0.48-r7.1: task do_install: Started
NOTE: Running task 36 of 269 (ID: 66, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_fetch)
NOTE: package automake-native-1.11.1-r4.2: task do_fetch: Started
NOTE: package automake-native-1.11.1-r4.2: task do_fetch: Succeeded
NOTE: package quilt-native-0.48-r7.1: task do_install: Succeeded
NOTE: Running task 37 of 269 (ID: 59, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_unpack)
NOTE: Running task 38 of 269 (ID: 216, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_populate_sysroot)
NOTE: package automake-native-1.11.1-r4.2: task do_unpack: Started
NOTE: Unpacking ../../sources/automake-1.11.1.tar.bz2 to tmp/work/i686-linux/automake-native-1.11.1-r4.2/
NOTE: package quilt-native-0.48-r7.1: task do_populate_sysroot: Started
NOTE: package quilt-native-0.48-r7.1: task do_populate_sysroot: Succeeded
NOTE: package automake-native-1.11.1-r4.2: task do_unpack: Succeeded
NOTE: Running task 39 of 269 (ID: 81, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_setscene)
NOTE: Running task 40 of 269 (ID: 88, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_patch)
NOTE: package libtool-native-2.4-r28.1: task do_setscene: Started
NOTE: package libtool-native-2.4-r28.1: task do_setscene: Succeeded
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_patch: Started
NOTE: Applying patch 'config-guess-uclibc.patch' (../openembedded/recipes/gnu-config/gnu-config-git/config-guess-uclibc.patch)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_patch: Succeeded
NOTE: Running task 41 of 269 (ID: 186, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_patch)
NOTE: package m4-native-1.4.14-r0.1: task do_patch: Started
NOTE: Applying patch 'f13-compile.patch' (../openembedded/recipes/m4/files/f13-compile.patch)
NOTE: Applying patch 'm4-uclibc-sched_param-def.patch' (../openembedded/recipes/m4/files/m4-uclibc-sched_param-def.patch)
NOTE: package m4-native-1.4.14-r0.1: task do_patch: Succeeded
NOTE: Running task 42 of 269 (ID: 96, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_configure)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_configure: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_configure: Succeeded
NOTE: Running task 43 of 269 (ID: 46, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_patch)
NOTE: package autoconf-native-2.65-r13.1: task do_patch: Started
NOTE: Applying patch 'program_prefix.patch' (../openembedded/recipes/autoconf/autoconf-2.65/program_prefix.patch)
NOTE: Applying patch 'autoreconf-exclude.patch' (../openembedded/recipes/autoconf/autoconf-2.65/autoreconf-exclude.patch)
NOTE: Running task 44 of 269 (ID: 97, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_qa_configure)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_qa_configure: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_qa_configure: Succeeded
NOTE: Applying patch 'autoreconf-foreign.patch' (../openembedded/recipes/autoconf/autoconf-2.65/autoreconf-foreign.patch)
NOTE: Applying patch 'autoheader-nonfatal-warnings.patch' (../openembedded/recipes/autoconf/autoconf-2.65/autoheader-nonfatal-warnings.patch)
NOTE: Running task 45 of 269 (ID: 98, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_compile)
NOTE: Applying patch 'autoreconf-gnuconfigize.patch' (../openembedded/recipes/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch)
NOTE: Applying patch 'config-site.patch' (../openembedded/recipes/autoconf/autoconf-2.65/config-site.patch)
NOTE: Applying patch 'autoconf-dont-execute-perl.patch' (../openembedded/recipes/autoconf/autoconf-2.65/autoconf-dont-execute-perl.patch)
NOTE: Applying patch 'fix_path_xtra.patch' (../openembedded/recipes/autoconf/autoconf-2.65/fix_path_xtra.patch)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_compile: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_compile: Succeeded
NOTE: package autoconf-native-2.65-r13.1: task do_patch: Succeeded
NOTE: Running task 46 of 269 (ID: 60, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_patch)
NOTE: package automake-native-1.11.1-r4.2: task do_patch: Started
NOTE: Applying patch '0001-py-compile-compile-only-optimized-byte-code.patch' (../openembedded/recipes/automake/files/0001-py-compile-compile-only-optimized-byte-code.patch)
NOTE: Applying patch 'automake-dont-execute-perl.patch' (../openembedded/recipes/automake/automake-1.11.1/automake-dont-execute-perl.patch)
NOTE: Running task 47 of 269 (ID: 89, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_install)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_install: Started
NOTE: package automake-native-1.11.1-r4.2: task do_patch: Succeeded
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_install: Succeeded
NOTE: Running task 48 of 269 (ID: 80, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_fetch)
NOTE: package libtool-native-2.4-r28.1: task do_fetch: Started
NOTE: package libtool-native-2.4-r28.1: task do_fetch: Succeeded
NOTE: Running task 49 of 269 (ID: 90, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_populate_sysroot)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_populate_sysroot: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_populate_sysroot: Succeeded
NOTE: Running task 50 of 269 (ID: 73, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_unpack)
NOTE: Running task 51 of 269 (ID: 123, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_setscene)
NOTE: package libtool-native-2.4-r28.1: task do_unpack: Started
NOTE: Unpacking ../../sources/libtool-2.4.tar.gz to tmp/work/i686-linux/libtool-native-2.4-r28.1/
NOTE: package libtool-native-2.4-r28.1: task do_unpack: Succeeded
NOTE: package pkgconfig-native-0.23-r8.1: task do_setscene: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_setscene: Succeeded
NOTE: Running task 52 of 269 (ID: 74, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_patch)
NOTE: package libtool-native-2.4-r28.1: task do_patch: Started
NOTE: Applying patch 'trailingslash.patch' (../openembedded/recipes/libtool/libtool-2.4/trailingslash.patch)
NOTE: Applying patch 'prefix-manpage-fix.patch' (../openembedded/recipes/libtool/libtool-2.4/prefix-manpage-fix.patch)
NOTE: Running task 53 of 269 (ID: 122, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_fetch)
NOTE: package pkgconfig-native-0.23-r8.1: task do_fetch: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_fetch: Succeeded
NOTE: Applying patch 'rename-with-sysroot.patch' (../openembedded/recipes/libtool/libtool-2.4/rename-with-sysroot.patch)
NOTE: Running task 54 of 269 (ID: 115, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_unpack)
NOTE: package pkgconfig-native-0.23-r8.1: task do_unpack: Started
NOTE: Unpacking ../../sources/pkg-config-0.23.tar.gz to tmp/work/i686-linux/pkgconfig-native-0.23-r8.1/
NOTE: Unpacking ../openembedded/recipes/pkgconfig/pkgconfig-0.23/glibconfig-sysdefs.h to tmp/work/i686-linux/pkgconfig-native-0.23-r8.1/
NOTE: package pkgconfig-native-0.23-r8.1: task do_unpack: Succeeded
NOTE: Running task 55 of 269 (ID: 116, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_patch)
NOTE: package pkgconfig-native-0.23-r8.1: task do_patch: Started
NOTE: Applying patch 'autofoo.patch' (../openembedded/recipes/pkgconfig/pkgconfig-0.23/autofoo.patch)
NOTE: Applying patch 'sysrootfix.patch' (../openembedded/recipes/pkgconfig/pkgconfig-0.23/sysrootfix.patch)
NOTE: package pkgconfig-native-0.23-r8.1: task do_patch: Succeeded
NOTE: Applying patch 'resolve-sysroot.patch' (../openembedded/recipes/libtool/libtool-2.4/resolve-sysroot.patch)
NOTE: Applying patch 'use-sysroot-in-libpath.patch' (../openembedded/recipes/libtool/libtool-2.4/use-sysroot-in-libpath.patch)
NOTE: Applying patch 'fix-final-rpath.patch' (../openembedded/recipes/libtool/libtool-2.4/fix-final-rpath.patch)
NOTE: Applying patch 'prefix.patch' (../openembedded/recipes/libtool/libtool-2.4/prefix.patch)
NOTE: package libtool-native-2.4-r28.1: task do_patch: Succeeded
NOTE: Running task 56 of 269 (ID: 137, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_setscene)
NOTE: package libxml2-native-2.7.8-r9.1: task do_setscene: Started
NOTE: Running task 57 of 269 (ID: 263, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_setscene)
NOTE: package libxml2-native-2.7.8-r9.1: task do_setscene: Succeeded
NOTE: package expat-native-2.0.1-r3.0: task do_setscene: Started
NOTE: package expat-native-2.0.1-r3.0: task do_setscene: Succeeded
NOTE: Running task 58 of 269 (ID: 136, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_fetch)
NOTE: package libxml2-native-2.7.8-r9.1: task do_fetch: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_fetch: Succeeded
NOTE: Running task 59 of 269 (ID: 262, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_fetch)
NOTE: package expat-native-2.0.1-r3.0: task do_fetch: Started
NOTE: package expat-native-2.0.1-r3.0: task do_fetch: Succeeded
NOTE: Running task 60 of 269 (ID: 129, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_unpack)
NOTE: package libxml2-native-2.7.8-r9.1: task do_unpack: Started
NOTE: Unpacking ../../sources/libxml2-2.7.8.tar.gz to tmp/work/i686-linux/libxml2-native-2.7.8-r9.1/
NOTE: Running task 61 of 269 (ID: 255, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_unpack)
NOTE: package expat-native-2.0.1-r3.0: task do_unpack: Started
NOTE: Unpacking ../../sources/expat-2.0.1.tar.gz to tmp/work/i686-linux/expat-native-2.0.1-r3.0/
NOTE: package expat-native-2.0.1-r3.0: task do_unpack: Succeeded
NOTE: Running task 62 of 269 (ID: 256, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_patch)
NOTE: package libxml2-native-2.7.8-r9.1: task do_unpack: Succeeded
NOTE: package expat-native-2.0.1-r3.0: task do_patch: Started
NOTE: Applying patch 'autotools.patch' (../openembedded/recipes/expat/expat-2.0.1/autotools.patch)
NOTE: package expat-native-2.0.1-r3.0: task do_patch: Succeeded
NOTE: Running task 63 of 269 (ID: 130, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_patch)
NOTE: package libxml2-native-2.7.8-r9.1: task do_patch: Started
NOTE: Applying patch '0cbeb50ee03ce582a0c979c70d8fbf030e270c37.patch' (../openembedded/recipes/libxml/libxml2-2.7.8/0cbeb50ee03ce582a0c979c70d8fbf030e270c37.patch)
NOTE: Applying patch 'df83c17e5a2646bd923f75e5e507bc80d73c9722.patch' (../openembedded/recipes/libxml/libxml2-2.7.8/df83c17e5a2646bd923f75e5e507bc80d73c9722.patch)
NOTE: Running task 64 of 269 (ID: 249, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_setscene)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_setscene: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_setscene: Succeeded
NOTE: Running task 65 of 269 (ID: 248, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_fetch)
NOTE: Applying patch 'fec31bcd452e77c10579467ca87a785b41115de6.patch' (../openembedded/recipes/libxml/libxml2-2.7.8/fec31bcd452e77c10579467ca87a785b41115de6.patch)
NOTE: Applying patch '00819877651b87842ed878898ba17dba489820f0.patch' (../openembedded/recipes/libxml/libxml2-2.7.8/00819877651b87842ed878898ba17dba489820f0.patch)
NOTE: package libxml2-native-2.7.8-r9.1: task do_patch: Succeeded
NOTE: Running task 66 of 269 (ID: 179, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_setscene)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_fetch: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_fetch: Succeeded
NOTE: package gnome-common-native-2.28.0-r0: task do_setscene: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_setscene: Succeeded
NOTE: Running task 67 of 269 (ID: 241, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_unpack)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_unpack: Started
NOTE: Unpacking ../../sources/XML-Parser-2.36.tar.gz to tmp/work/i686-linux/libxml-parser-perl-native-2.36-r4/
NOTE: package libxml-parser-perl-native-2.36-r4: task do_unpack: Succeeded
NOTE: Running task 68 of 269 (ID: 178, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_fetch)
NOTE: Running task 69 of 269 (ID: 242, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_patch)
NOTE: package gnome-common-native-2.28.0-r0: task do_fetch: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_fetch: Succeeded
NOTE: package libxml-parser-perl-native-2.36-r4: task do_patch: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_patch: Succeeded
NOTE: Running task 70 of 269 (ID: 171, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_unpack)
NOTE: package gnome-common-native-2.28.0-r0: task do_unpack: Started
NOTE: Unpacking ../../sources/gnome-common-2.28.0.tar.bz2 to tmp/work/i686-linux/gnome-common-native-2.28.0-r0/
NOTE: package gnome-common-native-2.28.0-r0: task do_unpack: Succeeded
NOTE: Running task 71 of 269 (ID: 165, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_setscene)
NOTE: package intltool-native-0.40.3-r4.0: task do_setscene: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_setscene: Succeeded
NOTE: Running task 72 of 269 (ID: 151, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_setscene)
NOTE: package libxslt-native-1.1.26-r6.0: task do_setscene: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_setscene: Succeeded
NOTE: Running task 73 of 269 (ID: 164, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_fetch)
NOTE: package intltool-native-0.40.3-r4.0: task do_fetch: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_fetch: Succeeded
NOTE: Running task 74 of 269 (ID: 150, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_fetch)
NOTE: package libxslt-native-1.1.26-r6.0: task do_fetch: Started
NOTE: Running task 75 of 269 (ID: 157, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_unpack)
NOTE: package libxslt-native-1.1.26-r6.0: task do_fetch: Succeeded
NOTE: package intltool-native-0.40.3-r4.0: task do_unpack: Started
NOTE: Unpacking ../../sources/intltool-0.40.3.tar.bz2 to tmp/work/i686-linux/intltool-native-0.40.3-r4.0/
NOTE: package intltool-native-0.40.3-r4.0: task do_unpack: Succeeded
NOTE: Running task 76 of 269 (ID: 143, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_unpack)
NOTE: package libxslt-native-1.1.26-r6.0: task do_unpack: Started
NOTE: Unpacking ../../sources/libxslt-1.1.26.tar.gz to tmp/work/i686-linux/libxslt-native-1.1.26-r6.0/
NOTE: package libxslt-native-1.1.26-r6.0: task do_unpack: Succeeded
NOTE: Running task 77 of 269 (ID: 39, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_setscene)
NOTE: package gettext-native-0.18-r6: task do_setscene: Started
NOTE: package gettext-native-0.18-r6: task do_setscene: Succeeded
NOTE: Running task 78 of 269 (ID: 172, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_patch)
NOTE: package gnome-common-native-2.28.0-r0: task do_patch: Started
NOTE: Applying patch 'omf.patch' (../openembedded/recipes/gnome/gnome-common/omf.patch)
NOTE: package gnome-common-native-2.28.0-r0: task do_patch: Succeeded
NOTE: Running task 79 of 269 (ID: 38, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_fetch)
NOTE: package gettext-native-0.18-r6: task do_fetch: Started
NOTE: Running task 80 of 269 (ID: 158, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_patch)
NOTE: package gettext-native-0.18-r6: task do_fetch: Succeeded
NOTE: package intltool-native-0.40.3-r4.0: task do_patch: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_patch: Succeeded
NOTE: Running task 81 of 269 (ID: 31, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_unpack)
NOTE: package gettext-native-0.18-r6: task do_unpack: Started
NOTE: Unpacking ../../sources/gettext-0.18.tar.gz to tmp/work/i686-linux/gettext-native-0.18-r6/
NOTE: Running task 82 of 269 (ID: 144, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_patch)
NOTE: package libxslt-native-1.1.26-r6.0: task do_patch: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_patch: Succeeded
NOTE: Running task 83 of 269 (ID: 10, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_setscene)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_setscene: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_setscene: Succeeded
NOTE: Running task 84 of 269 (ID: 8, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_fetch)
NOTE: package gettext-native-0.18-r6: task do_unpack: Succeeded
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_fetch: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_fetch: Succeeded
NOTE: Running task 85 of 269 (ID: 32, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_patch)
NOTE: package gettext-native-0.18-r6: task do_patch: Started
NOTE: Applying patch 'autotools.patch' (../openembedded/recipes/gettext/gettext-0.18/autotools.patch)
NOTE: Running task 86 of 269 (ID: 0, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_unpack)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_unpack: Started
NOTE: Unpacking ../../sources/gnome-doc-utils-0.19.2.tar.bz2 to tmp/work/i686-linux/gnome-doc-utils-native-0.19.2-r6.2/
NOTE: Applying patch 'gettext-autoconf-lib-link-no-L.patch' (../openembedded/recipes/gettext/gettext-0.18/gettext-autoconf-lib-link-no-L.patch)
NOTE: Applying patch 'gnulib-uclibc-sched_param-def.patch' (../openembedded/recipes/gettext/gettext-0.18/gnulib-uclibc-sched_param-def.patch)
NOTE: package gettext-native-0.18-r6: task do_patch: Succeeded
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_unpack: Succeeded
NOTE: Running task 87 of 269 (ID: 25, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_setscene)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_setscene: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_setscene: Succeeded
NOTE: Running task 88 of 269 (ID: 1, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_patch)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_patch: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_patch: Succeeded
NOTE: Running task 89 of 269 (ID: 24, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_fetch)
NOTE: Running task 90 of 269 (ID: 99, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_package)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_fetch: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_fetch: Succeeded
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package: Succeeded
NOTE: Running task 91 of 269 (ID: 17, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_unpack)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_unpack: Started
NOTE: Unpacking ../../sources/opkg-utils_svn.openmoko.org_.trunk.src.host._4747_.tar.gz to tmp/work/i686-linux/opkg-utils-native-0.1.8+svnr4747-r6/
NOTE: Running task 92 of 269 (ID: 239, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_package)
NOTE: package unifdef-native-2.6-0: task do_package: Started
NOTE: package unifdef-native-2.6-0: task do_package: Succeeded
NOTE: Running task 93 of 269 (ID: 225, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_package)
NOTE: package quilt-native-0.48-r7.1: task do_package: Started
NOTE: package quilt-native-0.48-r7.1: task do_package: Succeeded
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_unpack: Succeeded
NOTE: Running task 94 of 269 (ID: 240, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_package_write_ipk)
NOTE: package unifdef-native-2.6-0: task do_package_write_ipk: Started
NOTE: package unifdef-native-2.6-0: task do_package_write_ipk: Succeeded
NOTE: Running task 95 of 269 (ID: 18, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_patch)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_patch: Started
NOTE: Applying patch 'index-ignore-filenotfound.patch' (../openembedded/recipes/opkg-utils/opkg-utils/index-ignore-filenotfound.patch)
NOTE: Applying patch 'mtime-int.patch' (../openembedded/recipes/opkg-utils/opkg-utils/mtime-int.patch)
NOTE: Running task 96 of 269 (ID: 232, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_package_write)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_patch: Succeeded
NOTE: package unifdef-native-2.6-0: task do_package_write: Started
NOTE: package unifdef-native-2.6-0: task do_package_write: Succeeded
NOTE: Running task 97 of 269 (ID: 231, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_qa_staging)
NOTE: package unifdef-native-2.6-0: task do_qa_staging: Started
NOTE: package unifdef-native-2.6-0: task do_qa_staging: Succeeded
NOTE: Running task 98 of 269 (ID: 226, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_package_write_ipk)
NOTE: package quilt-native-0.48-r7.1: task do_package_write_ipk: Started
NOTE: package quilt-native-0.48-r7.1: task do_package_write_ipk: Succeeded
NOTE: Running task 99 of 269 (ID: 233, virtual:native:/home/nahsan/openembedded/openembedded/recipes/unifdef/unifdef_2.6.bb, do_package_stage)
NOTE: Running task 100 of 269 (ID: 218, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_package_write)
NOTE: package quilt-native-0.48-r7.1: task do_package_write: Started
NOTE: package quilt-native-0.48-r7.1: task do_package_write: Succeeded
NOTE: package unifdef-native-2.6-0: task do_package_stage: Started
NOTE: Running task 101 of 269 (ID: 217, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_qa_staging)
NOTE: package unifdef-native-2.6-0: task do_package_stage: Succeeded
NOTE: package quilt-native-0.48-r7.1: task do_qa_staging: Started
NOTE: package quilt-native-0.48-r7.1: task do_qa_staging: Succeeded
NOTE: Running task 102 of 269 (ID: 100, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_package_write_ipk)
NOTE: Running task 103 of 269 (ID: 219, /home/nahsan/openembedded/openembedded/recipes/quilt/quilt-native_0.48.bb, do_package_stage)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package_write_ipk: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package_write_ipk: Succeeded
NOTE: package quilt-native-0.48-r7.1: task do_package_stage: Started
NOTE: Running task 104 of 269 (ID: 92, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_package_write)
NOTE: package quilt-native-0.48-r7.1: task do_package_stage: Succeeded
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package_write: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package_write: Succeeded
NOTE: Running task 105 of 269 (ID: 91, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_qa_staging)
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_qa_staging: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_qa_staging: Succeeded
NOTE: Running task 106 of 269 (ID: 15, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_distribute_sources)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_distribute_sources: Started
NOTE: Running task 107 of 269 (ID: 93, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnu-config/gnu-config_git.bb, do_package_stage)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_distribute_sources: Succeeded
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package_stage: Started
NOTE: package gnu-config-native-git-r1+gitre35217687ee5f39b428119fe31c7e954f6de64f0: task do_package_stage: Succeeded
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_unpack: Succeeded
NOTE: Running task 108 of 269 (ID: 102, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_patch)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_patch: Started
NOTE: Applying patch 'export_sa_family_t.patch' (../openembedded/recipes/linux-libc-headers/linux-libc-headers-2.6.32/export_sa_family_t.patch)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_patch: Succeeded
NOTE: Running task 109 of 269 (ID: 110, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_configure)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_configure: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_configure: Succeeded
NOTE: Running task 110 of 269 (ID: 111, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_qa_configure)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_qa_configure: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_qa_configure: Succeeded
NOTE: Running task 111 of 269 (ID: 112, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_compile)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_compile: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_compile: Succeeded
NOTE: Running task 112 of 269 (ID: 103, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_install)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_install: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_install: Succeeded
NOTE: Running task 113 of 269 (ID: 104, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_populate_sysroot)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_populate_sysroot: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_populate_sysroot: Succeeded
NOTE: Running task 114 of 269 (ID: 113, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_package)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package: Succeeded
NOTE: Running task 115 of 269 (ID: 194, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_configure)
NOTE: Running task 116 of 269 (ID: 26, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_configure)
NOTE: package m4-native-1.4.14-r0.1: task do_configure: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_configure: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_configure: Succeeded
NOTE: Running task 117 of 269 (ID: 114, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_package_write_ipk)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package_write_ipk: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package_write_ipk: Succeeded
NOTE: Running task 118 of 269 (ID: 27, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_qa_configure)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_qa_configure: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_qa_configure: Succeeded
NOTE: Running task 119 of 269 (ID: 106, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_package_write)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package_write: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package_write: Succeeded
NOTE: Running task 120 of 269 (ID: 28, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_compile)
NOTE: Running task 121 of 269 (ID: 105, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_qa_staging)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_compile: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_compile: Succeeded
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_qa_staging: Started
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_qa_staging: Succeeded
NOTE: Running task 122 of 269 (ID: 19, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_install)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_install: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_install: Succeeded
NOTE: Running task 123 of 269 (ID: 107, virtual:native:/home/nahsan/openembedded/openembedded/recipes/linux-libc-headers/linux-libc-headers_2.6.32.bb, do_package_stage)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package_stage: Started
NOTE: Running task 124 of 269 (ID: 29, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_package)
NOTE: package linux-libc-headers-native-2.6.32-r5: task do_package_stage: Succeeded
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package: Succeeded
NOTE: Running task 125 of 269 (ID: 20, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_populate_sysroot)
NOTE: Running task 126 of 269 (ID: 30, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_package_write_ipk)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_populate_sysroot: Started
NOTE: Legacy staging mode for /home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package_write_ipk: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package_write_ipk: Succeeded
NOTE: Running task 127 of 269 (ID: 22, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_package_write)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_populate_sysroot: Succeeded
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package_write: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package_write: Succeeded
NOTE: Running task 128 of 269 (ID: 21, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_qa_staging)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_qa_staging: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_qa_staging: Succeeded
NOTE: Running task 129 of 269 (ID: 23, virtual:native:/home/nahsan/openembedded/openembedded/recipes/opkg-utils/opkg-utils_svn.bb, do_package_stage)
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package_stage: Started
NOTE: package opkg-utils-native-0.1.8+svnr4747-r6: task do_package_stage: Succeeded
NOTE: package perl-native-5.10.1-r10: task do_configure: Succeeded
NOTE: Running task 130 of 269 (ID: 209, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_qa_configure)
NOTE: package perl-native-5.10.1-r10: task do_qa_configure: Started
NOTE: package perl-native-5.10.1-r10: task do_qa_configure: Succeeded
NOTE: Running task 131 of 269 (ID: 210, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_compile)
NOTE: package perl-native-5.10.1-r10: task do_compile: Started
NOTE: package m4-native-1.4.14-r0.1: task do_configure: Succeeded
NOTE: Running task 132 of 269 (ID: 195, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_qa_configure)
NOTE: package m4-native-1.4.14-r0.1: task do_qa_configure: Started
NOTE: package m4-native-1.4.14-r0.1: task do_qa_configure: Succeeded
NOTE: Running task 133 of 269 (ID: 196, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_compile)
NOTE: package m4-native-1.4.14-r0.1: task do_compile: Started
NOTE: package m4-native-1.4.14-r0.1: task do_compile: Succeeded
NOTE: Running task 134 of 269 (ID: 187, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_install)
NOTE: package m4-native-1.4.14-r0.1: task do_install: Started
NOTE: package m4-native-1.4.14-r0.1: task do_install: Succeeded
NOTE: Running task 135 of 269 (ID: 188, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_populate_sysroot)
NOTE: package m4-native-1.4.14-r0.1: task do_populate_sysroot: Started
NOTE: package m4-native-1.4.14-r0.1: task do_populate_sysroot: Succeeded
NOTE: Running task 136 of 269 (ID: 197, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_package)
NOTE: package m4-native-1.4.14-r0.1: task do_package: Started
NOTE: package m4-native-1.4.14-r0.1: task do_package: Succeeded
NOTE: Running task 137 of 269 (ID: 189, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_qa_staging)
NOTE: Running task 138 of 269 (ID: 198, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_package_write_ipk)
NOTE: package m4-native-1.4.14-r0.1: task do_qa_staging: Started
NOTE: package m4-native-1.4.14-r0.1: task do_qa_staging: Succeeded
NOTE: package m4-native-1.4.14-r0.1: task do_package_write_ipk: Started
NOTE: package m4-native-1.4.14-r0.1: task do_package_write_ipk: Succeeded
NOTE: Running task 139 of 269 (ID: 190, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_package_write)
NOTE: package m4-native-1.4.14-r0.1: task do_package_write: Started
NOTE: package m4-native-1.4.14-r0.1: task do_package_write: Succeeded
NOTE: Running task 140 of 269 (ID: 191, /home/nahsan/openembedded/openembedded/recipes/m4/m4-native_1.4.14.bb, do_package_stage)
NOTE: package m4-native-1.4.14-r0.1: task do_package_stage: Started
NOTE: package m4-native-1.4.14-r0.1: task do_package_stage: Succeeded
NOTE: package perl-native-5.10.1-r10: task do_compile: Succeeded
NOTE: Running task 141 of 269 (ID: 201, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_install)
NOTE: package perl-native-5.10.1-r10: task do_install: Started
NOTE: package perl-native-5.10.1-r10: task do_install: Succeeded
NOTE: Running task 142 of 269 (ID: 202, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_populate_sysroot)
NOTE: package perl-native-5.10.1-r10: task do_populate_sysroot: Started
NOTE: Running task 143 of 269 (ID: 211, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_package)
NOTE: package perl-native-5.10.1-r10: task do_package: Started
NOTE: package perl-native-5.10.1-r10: task do_package: Succeeded
NOTE: Running task 144 of 269 (ID: 212, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_package_write_ipk)
NOTE: package perl-native-5.10.1-r10: task do_package_write_ipk: Started
NOTE: package perl-native-5.10.1-r10: task do_package_write_ipk: Succeeded
NOTE: Running task 145 of 269 (ID: 204, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_package_write)
NOTE: package perl-native-5.10.1-r10: task do_package_write: Started
NOTE: package perl-native-5.10.1-r10: task do_package_write: Succeeded
NOTE: package perl-native-5.10.1-r10: task do_populate_sysroot: Succeeded
NOTE: Running task 146 of 269 (ID: 54, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_configure)
NOTE: package autoconf-native-2.65-r13.1: task do_configure: Started
NOTE: Running task 147 of 269 (ID: 203, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_qa_staging)
NOTE: package perl-native-5.10.1-r10: task do_qa_staging: Started
NOTE: package perl-native-5.10.1-r10: task do_qa_staging: Succeeded
NOTE: Running task 148 of 269 (ID: 205, /home/nahsan/openembedded/openembedded/recipes/perl/perl-native_5.10.1.bb, do_package_stage)
NOTE: package perl-native-5.10.1-r10: task do_package_stage: Started
NOTE: package autoconf-native-2.65-r13.1: task do_configure: Succeeded
NOTE: Running task 149 of 269 (ID: 55, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_qa_configure)
NOTE: package autoconf-native-2.65-r13.1: task do_qa_configure: Started
NOTE: package autoconf-native-2.65-r13.1: task do_qa_configure: Succeeded
NOTE: Running task 150 of 269 (ID: 56, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_compile)
NOTE: package autoconf-native-2.65-r13.1: task do_compile: Started
NOTE: package perl-native-5.10.1-r10: task do_package_stage: Succeeded
NOTE: package autoconf-native-2.65-r13.1: task do_compile: Succeeded
NOTE: Running task 151 of 269 (ID: 47, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_install)
NOTE: package autoconf-native-2.65-r13.1: task do_install: Started
NOTE: package autoconf-native-2.65-r13.1: task do_install: Succeeded
NOTE: Running task 152 of 269 (ID: 48, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_populate_sysroot)
NOTE: package autoconf-native-2.65-r13.1: task do_populate_sysroot: Started
NOTE: package autoconf-native-2.65-r13.1: task do_populate_sysroot: Succeeded
NOTE: Running task 153 of 269 (ID: 57, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_package)
NOTE: package autoconf-native-2.65-r13.1: task do_package: Started
NOTE: package autoconf-native-2.65-r13.1: task do_package: Succeeded
NOTE: Running task 154 of 269 (ID: 68, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_configure)
NOTE: Running task 155 of 269 (ID: 49, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_qa_staging)
NOTE: package automake-native-1.11.1-r4.2: task do_configure: Started
NOTE: package autoconf-native-2.65-r13.1: task do_qa_staging: Started
NOTE: package autoconf-native-2.65-r13.1: task do_qa_staging: Succeeded
NOTE: Running task 156 of 269 (ID: 58, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_package_write_ipk)
NOTE: package autoconf-native-2.65-r13.1: task do_package_write_ipk: Started
NOTE: package autoconf-native-2.65-r13.1: task do_package_write_ipk: Succeeded
NOTE: Running task 157 of 269 (ID: 50, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_package_write)
NOTE: package autoconf-native-2.65-r13.1: task do_package_write: Started
NOTE: package autoconf-native-2.65-r13.1: task do_package_write: Succeeded
NOTE: Running task 158 of 269 (ID: 51, virtual:native:/home/nahsan/openembedded/openembedded/recipes/autoconf/autoconf_2.65.bb, do_package_stage)
NOTE: package autoconf-native-2.65-r13.1: task do_package_stage: Started
NOTE: package autoconf-native-2.65-r13.1: task do_package_stage: Succeeded
NOTE: package automake-native-1.11.1-r4.2: task do_configure: Succeeded
NOTE: Running task 159 of 269 (ID: 69, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_qa_configure)
NOTE: package automake-native-1.11.1-r4.2: task do_qa_configure: Started
NOTE: package automake-native-1.11.1-r4.2: task do_qa_configure: Succeeded
NOTE: Running task 160 of 269 (ID: 70, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_compile)
NOTE: package automake-native-1.11.1-r4.2: task do_compile: Started
NOTE: package automake-native-1.11.1-r4.2: task do_compile: Succeeded
NOTE: Running task 161 of 269 (ID: 61, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_install)
NOTE: package automake-native-1.11.1-r4.2: task do_install: Started
NOTE: package automake-native-1.11.1-r4.2: task do_install: Succeeded
NOTE: Running task 162 of 269 (ID: 62, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_populate_sysroot)
NOTE: package automake-native-1.11.1-r4.2: task do_populate_sysroot: Started
NOTE: package automake-native-1.11.1-r4.2: task do_populate_sysroot: Succeeded
NOTE: Running task 163 of 269 (ID: 71, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_package)
NOTE: package automake-native-1.11.1-r4.2: task do_package: Started
NOTE: package automake-native-1.11.1-r4.2: task do_package: Succeeded
NOTE: Running task 164 of 269 (ID: 82, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_configure)
NOTE: Running task 165 of 269 (ID: 63, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_qa_staging)
NOTE: package libtool-native-2.4-r28.1: task do_configure: Started
NOTE: package automake-native-1.11.1-r4.2: task do_qa_staging: Started
NOTE: package automake-native-1.11.1-r4.2: task do_qa_staging: Succeeded
NOTE: Running task 166 of 269 (ID: 72, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_package_write_ipk)
NOTE: package automake-native-1.11.1-r4.2: task do_package_write_ipk: Started
NOTE: package automake-native-1.11.1-r4.2: task do_package_write_ipk: Succeeded
NOTE: Running task 167 of 269 (ID: 64, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_package_write)
NOTE: package automake-native-1.11.1-r4.2: task do_package_write: Started
NOTE: package automake-native-1.11.1-r4.2: task do_package_write: Succeeded
NOTE: Running task 168 of 269 (ID: 65, virtual:native:/home/nahsan/openembedded/openembedded/recipes/automake/automake_1.11.1.bb, do_package_stage)
NOTE: package automake-native-1.11.1-r4.2: task do_package_stage: Started
NOTE: package automake-native-1.11.1-r4.2: task do_package_stage: Succeeded
NOTE: package libtool-native-2.4-r28.1: task do_configure: Succeeded
NOTE: Running task 169 of 269 (ID: 83, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_qa_configure)
NOTE: package libtool-native-2.4-r28.1: task do_qa_configure: Started
NOTE: package libtool-native-2.4-r28.1: task do_qa_configure: Succeeded
NOTE: Running task 170 of 269 (ID: 84, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_compile)
NOTE: package libtool-native-2.4-r28.1: task do_compile: Started
NOTE: package libtool-native-2.4-r28.1: task do_compile: Succeeded
NOTE: Running task 171 of 269 (ID: 75, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_install)
NOTE: package libtool-native-2.4-r28.1: task do_install: Started
NOTE: package libtool-native-2.4-r28.1: task do_install: Succeeded
NOTE: Running task 172 of 269 (ID: 76, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_populate_sysroot)
NOTE: package libtool-native-2.4-r28.1: task do_populate_sysroot: Started
NOTE: package libtool-native-2.4-r28.1: task do_populate_sysroot: Succeeded
NOTE: Running task 173 of 269 (ID: 85, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_package)
NOTE: package libtool-native-2.4-r28.1: task do_package: Started
NOTE: package libtool-native-2.4-r28.1: task do_package: Succeeded
NOTE: Running task 174 of 269 (ID: 124, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_configure)
NOTE: Running task 175 of 269 (ID: 264, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_configure)
NOTE: Running task 176 of 269 (ID: 77, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_qa_staging)
NOTE: package pkgconfig-native-0.23-r8.1: task do_configure: Started
NOTE: package expat-native-2.0.1-r3.0: task do_configure: Started
NOTE: package libtool-native-2.4-r28.1: task do_qa_staging: Started
NOTE: package libtool-native-2.4-r28.1: task do_qa_staging: Succeeded
NOTE: Running task 177 of 269 (ID: 86, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_package_write_ipk)
NOTE: package libtool-native-2.4-r28.1: task do_package_write_ipk: Started
NOTE: package libtool-native-2.4-r28.1: task do_package_write_ipk: Succeeded
NOTE: Running task 178 of 269 (ID: 78, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_package_write)
NOTE: package libtool-native-2.4-r28.1: task do_package_write: Started
NOTE: package libtool-native-2.4-r28.1: task do_package_write: Succeeded
NOTE: Running task 179 of 269 (ID: 79, /home/nahsan/openembedded/openembedded/recipes/libtool/libtool-native_2.4.bb, do_package_stage)
NOTE: package libtool-native-2.4-r28.1: task do_package_stage: Started
NOTE: package libtool-native-2.4-r28.1: task do_package_stage: Succeeded
NOTE: package expat-native-2.0.1-r3.0: task do_configure: Succeeded
NOTE: Running task 180 of 269 (ID: 265, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_qa_configure)
NOTE: package expat-native-2.0.1-r3.0: task do_qa_configure: Started
NOTE: package expat-native-2.0.1-r3.0: task do_qa_configure: Succeeded
NOTE: Running task 181 of 269 (ID: 266, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_compile)
NOTE: package expat-native-2.0.1-r3.0: task do_compile: Started
NOTE: package expat-native-2.0.1-r3.0: task do_compile: Succeeded
NOTE: Running task 182 of 269 (ID: 257, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_install)
NOTE: package expat-native-2.0.1-r3.0: task do_install: Started
NOTE: package expat-native-2.0.1-r3.0: task do_install: Succeeded
NOTE: Running task 183 of 269 (ID: 258, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_populate_sysroot)
NOTE: package expat-native-2.0.1-r3.0: task do_populate_sysroot: Started
NOTE: package expat-native-2.0.1-r3.0: task do_populate_sysroot: Succeeded
NOTE: Running task 184 of 269 (ID: 267, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_package)
NOTE: package expat-native-2.0.1-r3.0: task do_package: Started
NOTE: Running task 185 of 269 (ID: 250, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_configure)
NOTE: package expat-native-2.0.1-r3.0: task do_package: Succeeded
NOTE: Running task 186 of 269 (ID: 259, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_qa_staging)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_configure: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_configure: Succeeded
NOTE: package expat-native-2.0.1-r3.0: task do_qa_staging: Started
NOTE: package expat-native-2.0.1-r3.0: task do_qa_staging: Succeeded
NOTE: Running task 187 of 269 (ID: 268, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_package_write_ipk)
NOTE: package expat-native-2.0.1-r3.0: task do_package_write_ipk: Started
NOTE: package expat-native-2.0.1-r3.0: task do_package_write_ipk: Succeeded
NOTE: Running task 188 of 269 (ID: 251, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_qa_configure)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_qa_configure: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_qa_configure: Succeeded
NOTE: Running task 189 of 269 (ID: 260, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_package_write)
NOTE: package expat-native-2.0.1-r3.0: task do_package_write: Started
NOTE: package expat-native-2.0.1-r3.0: task do_package_write: Succeeded
NOTE: Running task 190 of 269 (ID: 252, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_compile)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_compile: Started
NOTE: Running task 191 of 269 (ID: 261, virtual:native:/home/nahsan/openembedded/openembedded/recipes/expat/expat_2.0.1.bb, do_package_stage)
NOTE: package expat-native-2.0.1-r3.0: task do_package_stage: Started
NOTE: package expat-native-2.0.1-r3.0: task do_package_stage: Succeeded
NOTE: package libxml-parser-perl-native-2.36-r4: task do_compile: Succeeded
NOTE: Running task 192 of 269 (ID: 243, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_install)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_install: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_install: Succeeded
NOTE: Running task 193 of 269 (ID: 244, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_populate_sysroot)
NOTE: Running task 194 of 269 (ID: 253, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_package)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package: Succeeded
NOTE: Running task 195 of 269 (ID: 254, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_package_write_ipk)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_populate_sysroot: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package_write_ipk: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package_write_ipk: Succeeded
NOTE: package libxml-parser-perl-native-2.36-r4: task do_populate_sysroot: Succeeded
NOTE: Running task 197 of 269 (ID: 246, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_package_write)
NOTE: Running task 196 of 269 (ID: 245, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_qa_staging)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package_write: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package_write: Succeeded
NOTE: package libxml-parser-perl-native-2.36-r4: task do_qa_staging: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_qa_staging: Succeeded
NOTE: Running task 198 of 269 (ID: 247, virtual:native:/home/nahsan/openembedded/openembedded/recipes/perl/libxml-parser-perl_2.36.bb, do_package_stage)
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package_stage: Started
NOTE: package libxml-parser-perl-native-2.36-r4: task do_package_stage: Succeeded
NOTE: package pkgconfig-native-0.23-r8.1: task do_configure: Succeeded
NOTE: Running task 199 of 269 (ID: 125, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_qa_configure)
NOTE: package pkgconfig-native-0.23-r8.1: task do_qa_configure: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_qa_configure: Succeeded
NOTE: Running task 200 of 269 (ID: 126, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_compile)
NOTE: package pkgconfig-native-0.23-r8.1: task do_compile: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_compile: Succeeded
NOTE: Running task 201 of 269 (ID: 117, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_install)
NOTE: package pkgconfig-native-0.23-r8.1: task do_install: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_install: Succeeded
NOTE: Running task 202 of 269 (ID: 118, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_populate_sysroot)
NOTE: package pkgconfig-native-0.23-r8.1: task do_populate_sysroot: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_populate_sysroot: Succeeded
NOTE: Running task 203 of 269 (ID: 127, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_package)
NOTE: package pkgconfig-native-0.23-r8.1: task do_package: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_package: Succeeded
NOTE: Running task 204 of 269 (ID: 138, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_configure)
NOTE: Running task 206 of 269 (ID: 166, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_configure)
NOTE: Running task 205 of 269 (ID: 180, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_configure)
NOTE: package libxml2-native-2.7.8-r9.1: task do_configure: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_configure: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_configure: Started
NOTE: Running task 207 of 269 (ID: 128, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_package_write_ipk)
NOTE: package pkgconfig-native-0.23-r8.1: task do_package_write_ipk: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_package_write_ipk: Succeeded
NOTE: Running task 208 of 269 (ID: 120, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_package_write)
NOTE: package pkgconfig-native-0.23-r8.1: task do_package_write: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_package_write: Succeeded
NOTE: Running task 209 of 269 (ID: 119, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_qa_staging)
NOTE: package pkgconfig-native-0.23-r8.1: task do_qa_staging: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_qa_staging: Succeeded
NOTE: Running task 210 of 269 (ID: 121, /home/nahsan/openembedded/openembedded/recipes/pkgconfig/pkgconfig-native_0.23.bb, do_package_stage)
NOTE: package pkgconfig-native-0.23-r8.1: task do_package_stage: Started
NOTE: package pkgconfig-native-0.23-r8.1: task do_package_stage: Succeeded
NOTE: package gnome-common-native-2.28.0-r0: task do_configure: Succeeded
NOTE: Running task 211 of 269 (ID: 181, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_qa_configure)
NOTE: package gnome-common-native-2.28.0-r0: task do_qa_configure: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_qa_configure: Succeeded
NOTE: Running task 212 of 269 (ID: 182, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_compile)
NOTE: package gnome-common-native-2.28.0-r0: task do_compile: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_compile: Succeeded
NOTE: package intltool-native-0.40.3-r4.0: task do_configure: Succeeded
NOTE: Running task 213 of 269 (ID: 167, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_qa_configure)
NOTE: package intltool-native-0.40.3-r4.0: task do_qa_configure: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_qa_configure: Succeeded
NOTE: Running task 214 of 269 (ID: 173, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_install)
NOTE: package gnome-common-native-2.28.0-r0: task do_install: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_install: Succeeded
NOTE: Running task 215 of 269 (ID: 168, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_compile)
NOTE: package intltool-native-0.40.3-r4.0: task do_compile: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_compile: Succeeded
NOTE: Running task 216 of 269 (ID: 174, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_populate_sysroot)
NOTE: Running task 217 of 269 (ID: 183, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_package)
NOTE: package gnome-common-native-2.28.0-r0: task do_populate_sysroot: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_package: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_package: Succeeded
NOTE: Running task 218 of 269 (ID: 159, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_install)
NOTE: package intltool-native-0.40.3-r4.0: task do_install: Started
NOTE: Running task 219 of 269 (ID: 184, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_package_write_ipk)
NOTE: package gnome-common-native-2.28.0-r0: task do_populate_sysroot: Succeeded
NOTE: package gnome-common-native-2.28.0-r0: task do_package_write_ipk: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_package_write_ipk: Succeeded
NOTE: Running task 220 of 269 (ID: 175, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_qa_staging)
NOTE: Running task 221 of 269 (ID: 176, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_package_write)
NOTE: package intltool-native-0.40.3-r4.0: task do_install: Succeeded
NOTE: package gnome-common-native-2.28.0-r0: task do_qa_staging: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_qa_staging: Succeeded
NOTE: package gnome-common-native-2.28.0-r0: task do_package_write: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_package_write: Succeeded
NOTE: Running task 222 of 269 (ID: 160, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_populate_sysroot)
NOTE: Running task 224 of 269 (ID: 177, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-common_2.28.0.bb, do_package_stage)
NOTE: package intltool-native-0.40.3-r4.0: task do_populate_sysroot: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_populate_sysroot: Succeeded
NOTE: Running task 223 of 269 (ID: 169, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_package)
NOTE: package gnome-common-native-2.28.0-r0: task do_package_stage: Started
NOTE: Running task 225 of 269 (ID: 161, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_qa_staging)
NOTE: package intltool-native-0.40.3-r4.0: task do_package: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_package: Succeeded
NOTE: package intltool-native-0.40.3-r4.0: task do_qa_staging: Started
NOTE: package gnome-common-native-2.28.0-r0: task do_package_stage: Succeeded
NOTE: package intltool-native-0.40.3-r4.0: task do_qa_staging: Succeeded
NOTE: Running task 226 of 269 (ID: 170, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_package_write_ipk)
NOTE: package intltool-native-0.40.3-r4.0: task do_package_write_ipk: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_package_write_ipk: Succeeded
NOTE: Running task 227 of 269 (ID: 162, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_package_write)
NOTE: package intltool-native-0.40.3-r4.0: task do_package_write: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_package_write: Succeeded
NOTE: Running task 228 of 269 (ID: 163, /home/nahsan/openembedded/openembedded/recipes/intltool/intltool-native_0.40.3.bb, do_package_stage)
NOTE: package intltool-native-0.40.3-r4.0: task do_package_stage: Started
NOTE: package intltool-native-0.40.3-r4.0: task do_package_stage: Succeeded
NOTE: package libxml2-native-2.7.8-r9.1: task do_configure: Succeeded
NOTE: Running task 229 of 269 (ID: 139, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_qa_configure)
NOTE: package libxml2-native-2.7.8-r9.1: task do_qa_configure: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_qa_configure: Succeeded
NOTE: Running task 230 of 269 (ID: 140, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_compile)
NOTE: package libxml2-native-2.7.8-r9.1: task do_compile: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_compile: Succeeded
NOTE: Running task 231 of 269 (ID: 131, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_install)
NOTE: package libxml2-native-2.7.8-r9.1: task do_install: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_install: Succeeded
NOTE: Running task 232 of 269 (ID: 132, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_populate_sysroot)
NOTE: package libxml2-native-2.7.8-r9.1: task do_populate_sysroot: Started
NOTE: Running task 233 of 269 (ID: 141, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_package)
NOTE: package libxml2-native-2.7.8-r9.1: task do_package: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_package: Succeeded
NOTE: package libxml2-native-2.7.8-r9.1: task do_populate_sysroot: Succeeded
NOTE: Running task 234 of 269 (ID: 142, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_package_write_ipk)
NOTE: Running task 235 of 269 (ID: 152, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_configure)
NOTE: Running task 236 of 269 (ID: 40, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_configure)
NOTE: Running task 237 of 269 (ID: 133, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_qa_staging)
NOTE: package libxml2-native-2.7.8-r9.1: task do_package_write_ipk: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_package_write_ipk: Succeeded
NOTE: package libxslt-native-1.1.26-r6.0: task do_configure: Started
NOTE: package gettext-native-0.18-r6: task do_configure: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_qa_staging: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_qa_staging: Succeeded
NOTE: Running task 238 of 269 (ID: 134, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_package_write)
NOTE: package libxml2-native-2.7.8-r9.1: task do_package_write: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_package_write: Succeeded
NOTE: Running task 239 of 269 (ID: 135, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxml/libxml2_2.7.8.bb, do_package_stage)
NOTE: package libxml2-native-2.7.8-r9.1: task do_package_stage: Started
NOTE: package libxml2-native-2.7.8-r9.1: task do_package_stage: Succeeded
NOTE: package libxslt-native-1.1.26-r6.0: task do_configure: Succeeded
NOTE: Running task 240 of 269 (ID: 153, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_qa_configure)
NOTE: package libxslt-native-1.1.26-r6.0: task do_qa_configure: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_qa_configure: Succeeded
NOTE: Running task 241 of 269 (ID: 154, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_compile)
NOTE: package libxslt-native-1.1.26-r6.0: task do_compile: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_compile: Succeeded
NOTE: Running task 242 of 269 (ID: 145, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_install)
NOTE: package libxslt-native-1.1.26-r6.0: task do_install: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_install: Succeeded
NOTE: Running task 243 of 269 (ID: 146, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_populate_sysroot)
NOTE: Running task 244 of 269 (ID: 155, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_package)
NOTE: package libxslt-native-1.1.26-r6.0: task do_populate_sysroot: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_package: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_package: Succeeded
NOTE: package libxslt-native-1.1.26-r6.0: task do_populate_sysroot: Succeeded
NOTE: Running task 245 of 269 (ID: 156, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_package_write_ipk)
NOTE: package libxslt-native-1.1.26-r6.0: task do_package_write_ipk: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_package_write_ipk: Succeeded
NOTE: Running task 246 of 269 (ID: 147, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_qa_staging)
NOTE: package libxslt-native-1.1.26-r6.0: task do_qa_staging: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_qa_staging: Succeeded
NOTE: Running task 247 of 269 (ID: 148, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_package_write)
NOTE: package libxslt-native-1.1.26-r6.0: task do_package_write: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_package_write: Succeeded
NOTE: Running task 248 of 269 (ID: 149, virtual:native:/home/nahsan/openembedded/openembedded/recipes/libxslt/libxslt_1.1.26.bb, do_package_stage)
NOTE: package libxslt-native-1.1.26-r6.0: task do_package_stage: Started
NOTE: package libxslt-native-1.1.26-r6.0: task do_package_stage: Succeeded
NOTE: package gettext-native-0.18-r6: task do_configure: Succeeded
NOTE: Running task 249 of 269 (ID: 41, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_qa_configure)
NOTE: package gettext-native-0.18-r6: task do_qa_configure: Started
NOTE: package gettext-native-0.18-r6: task do_qa_configure: Succeeded
NOTE: Running task 250 of 269 (ID: 42, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_compile)
NOTE: package gettext-native-0.18-r6: task do_compile: Started
NOTE: package gettext-native-0.18-r6: task do_compile: Succeeded
NOTE: Running task 251 of 269 (ID: 33, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_install)
NOTE: package gettext-native-0.18-r6: task do_install: Started
NOTE: package gettext-native-0.18-r6: task do_install: Succeeded
NOTE: Running task 252 of 269 (ID: 34, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_populate_sysroot)
NOTE: package gettext-native-0.18-r6: task do_populate_sysroot: Started
NOTE: Running task 253 of 269 (ID: 43, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_package)
NOTE: package gettext-native-0.18-r6: task do_package: Started
NOTE: package gettext-native-0.18-r6: task do_package: Succeeded
NOTE: Running task 254 of 269 (ID: 44, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_package_write_ipk)
NOTE: package gettext-native-0.18-r6: task do_package_write_ipk: Started
NOTE: package gettext-native-0.18-r6: task do_package_write_ipk: Succeeded
NOTE: Running task 255 of 269 (ID: 36, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_package_write)
NOTE: package gettext-native-0.18-r6: task do_package_write: Started
NOTE: package gettext-native-0.18-r6: task do_package_write: Succeeded
NOTE: package gettext-native-0.18-r6: task do_populate_sysroot: Succeeded
NOTE: Running task 256 of 269 (ID: 11, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_configure)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_configure: Started
NOTE: Running task 257 of 269 (ID: 35, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_qa_staging)
NOTE: package gettext-native-0.18-r6: task do_qa_staging: Started
NOTE: package gettext-native-0.18-r6: task do_qa_staging: Succeeded
NOTE: Running task 258 of 269 (ID: 37, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gettext/gettext_0.18.bb, do_package_stage)
NOTE: package gettext-native-0.18-r6: task do_package_stage: Started
NOTE: package gettext-native-0.18-r6: task do_package_stage: Succeeded
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_configure: Succeeded
NOTE: Running task 259 of 269 (ID: 12, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_qa_configure)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_qa_configure: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_qa_configure: Succeeded
NOTE: Running task 260 of 269 (ID: 13, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_compile)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_compile: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_compile: Succeeded
NOTE: Running task 261 of 269 (ID: 2, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_install)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_install: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_install: Succeeded
NOTE: Running task 262 of 269 (ID: 14, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_package)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package: Succeeded
NOTE: Running task 263 of 269 (ID: 3, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_populate_sysroot)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_populate_sysroot: Started
NOTE: Running task 264 of 269 (ID: 16, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_package_write_ipk)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_populate_sysroot: Succeeded
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_write_ipk: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_write_ipk: Succeeded
NOTE: Running task 265 of 269 (ID: 4, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_qa_staging)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_qa_staging: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_qa_staging: Succeeded
NOTE: Running task 266 of 269 (ID: 5, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_package_write)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_write: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_write: Succeeded
NOTE: Running task 267 of 269 (ID: 6, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_package_stage)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_stage: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_stage: Succeeded
NOTE: Running task 268 of 269 (ID: 7, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_package_stage_all)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_stage_all: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_package_stage_all: Succeeded
NOTE: Running task 269 of 269 (ID: 9, virtual:native:/home/nahsan/openembedded/openembedded/recipes/gnome/gnome-doc-utils_0.19.2.bb, do_build)
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_build: Started
NOTE: package gnome-doc-utils-native-0.19.2-r6.2: task do_build: Succeeded
NOTE: Tasks Summary: Attempted 269 tasks of which 0 didn't need to be rerun and 0 failed.

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use)
  2011-03-15  9:08 ` Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use) Esben Haabendal
  2011-03-15 22:03   ` Denys Dmytriyenko
  2011-03-15 23:15   ` Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use) Graham Gower
@ 2011-03-17 11:18   ` Phil Blundell
  2011-03-17 14:43     ` Esben Haabendal
  2 siblings, 1 reply; 40+ messages in thread
From: Phil Blundell @ 2011-03-17 11:18 UTC (permalink / raw)
  To: openembedded-devel

On Tue, 2011-03-15 at 10:08 +0100, Esben Haabendal wrote:
> The current dependency/staging model of OE basically has this feature
> that a build can be influenced not only by it's own dependencies, but
> also what has been build before it (or not).
> 
> I strongly believe that this has to be fixed on the architectural level,
> and not just on a case-by-case level as is currently needed.

Yes, agreed.  This clearly sucks, and indeed I think it is probably the
largest single area of architectural suckage in OE today.

> I am still very much interested in discussing how to move this
> technology from OE-lite to OE, but as it impacts all recipe metadata
> (build dependencies has to be redefined), OE community at a large really
> needs to value the benefits of solving this problem.

The benefits of solving the problem are clearly very great, but I don't
think OE itself is really in a position to embrace a "big bang" kind of
change which would require redefining all the build dependencies.  I
think we need to find a technological solution which will work with our
current DEPENDS scheme.

I did do some work in that direction about a year ago, but I got
sidetracked into dealing with some toolchain suckage (which was making
it difficult to construct the per-recipe sysroots in the way that I
wanted) and then ran out of time.  I would like to get back to working
on this stuff but right now it is difficult for me to set aside the time
for it.

p.





^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use)
  2011-03-17 11:18   ` Phil Blundell
@ 2011-03-17 14:43     ` Esben Haabendal
  2011-03-17 14:52       ` Graeme Gregory
  2011-03-17 15:07       ` Phil Blundell
  0 siblings, 2 replies; 40+ messages in thread
From: Esben Haabendal @ 2011-03-17 14:43 UTC (permalink / raw)
  To: openembedded-devel

On Thu, 2011-03-17 at 11:18 +0000, Phil Blundell wrote:
> 
> > I am still very much interested in discussing how to move this
> > technology from OE-lite to OE, but as it impacts all recipe metadata
> > (build dependencies has to be redefined), OE community at a large
> really
> > needs to value the benefits of solving this problem.
> 
> The benefits of solving the problem are clearly very great, but I
> don't think OE itself is really in a position to embrace a "big bang"
> kind of change which would require redefining all the build
> dependencies.  I think we need to find a technological solution which
> will work with our current DEPENDS scheme. 

I know that this seems to be the general consensus in OE, but I do not
agree with it.  Sometimes architectural work requires working out the
details on a branch, and then when it is mostly done, do the "big bang"
which will then not really be that "big" anymore, as most of the issues
have been resolved.

Is OE really in a position to permantly settle for something suboptimal
in such a central area?

/Esben




^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use)
  2011-03-17 14:43     ` Esben Haabendal
@ 2011-03-17 14:52       ` Graeme Gregory
  2011-03-17 15:24         ` Koen Kooi
  2011-03-17 15:07       ` Phil Blundell
  1 sibling, 1 reply; 40+ messages in thread
From: Graeme Gregory @ 2011-03-17 14:52 UTC (permalink / raw)
  To: openembedded-devel

On 17/03/2011 14:43, Esben Haabendal wrote:
> On Thu, 2011-03-17 at 11:18 +0000, Phil Blundell wrote:
>>> I am still very much interested in discussing how to move this
>>> technology from OE-lite to OE, but as it impacts all recipe metadata
>>> (build dependencies has to be redefined), OE community at a large
>> really
>>> needs to value the benefits of solving this problem.
>> The benefits of solving the problem are clearly very great, but I
>> don't think OE itself is really in a position to embrace a "big bang"
>> kind of change which would require redefining all the build
>> dependencies.  I think we need to find a technological solution which
>> will work with our current DEPENDS scheme. 
> I know that this seems to be the general consensus in OE, but I do not
> agree with it.  Sometimes architectural work requires working out the
> details on a branch, and then when it is mostly done, do the "big bang"
> which will then not really be that "big" anymore, as most of the issues
> have been resolved.
>
> Is OE really in a position to permantly settle for something suboptimal
> in such a central area?
>
I would suggest a branch of oe-core is the ideal place to do this work.
It can be proved on oe-core then rolled out to meta-oe at a later date.

Graeme




^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use)
  2011-03-17 14:43     ` Esben Haabendal
  2011-03-17 14:52       ` Graeme Gregory
@ 2011-03-17 15:07       ` Phil Blundell
  2011-03-17 17:52         ` Esben Haabendal
  1 sibling, 1 reply; 40+ messages in thread
From: Phil Blundell @ 2011-03-17 15:07 UTC (permalink / raw)
  To: openembedded-devel

On Thu, 2011-03-17 at 15:43 +0100, Esben Haabendal wrote:
> Is OE really in a position to permantly settle for something suboptimal
> in such a central area?

No, but rejecting the big bang doesn't mean that we can't make the
change; it just means that we need to find a way to make the old and new
arrangements coexist for a transition period.  This is the way every
other architectural change in OE has been done and I don't see any
reason that this one needs to be different.

If we really did want to go ahead and have a metadata flag day then no
doubt there are plenty of other things we would like to change at the
same time.  But, thus far, this has never seemed to justify the
disruption of breaking every recipe in both the main OE repo and third
party overlays.

I must admit that I'm also slightly unclear about why the change in
build dependency specifications is a prerequisite for doing per-recipe
sysroots.  Is that just an artifact of the way you implemented it in
OE-lite or is there some fundamental constraint that means it needs to
be this way?

p.





^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use)
  2011-03-17 14:52       ` Graeme Gregory
@ 2011-03-17 15:24         ` Koen Kooi
  0 siblings, 0 replies; 40+ messages in thread
From: Koen Kooi @ 2011-03-17 15:24 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 17-03-11 15:52, Graeme Gregory wrote:
> On 17/03/2011 14:43, Esben Haabendal wrote:
>> On Thu, 2011-03-17 at 11:18 +0000, Phil Blundell wrote:
>>>> I am still very much interested in discussing how to move this
>>>> technology from OE-lite to OE, but as it impacts all recipe metadata
>>>> (build dependencies has to be redefined), OE community at a large
>>> really
>>>> needs to value the benefits of solving this problem.
>>> The benefits of solving the problem are clearly very great, but I
>>> don't think OE itself is really in a position to embrace a "big bang"
>>> kind of change which would require redefining all the build
>>> dependencies.  I think we need to find a technological solution which
>>> will work with our current DEPENDS scheme. 
>> I know that this seems to be the general consensus in OE, but I do not
>> agree with it.  Sometimes architectural work requires working out the
>> details on a branch, and then when it is mostly done, do the "big bang"
>> which will then not really be that "big" anymore, as most of the issues
>> have been resolved.
>>
>> Is OE really in a position to permantly settle for something suboptimal
>> in such a central area?
>>
> I would suggest a branch of oe-core is the ideal place to do this work.
> It can be proved on oe-core then rolled out to meta-oe at a later date.

OE-core already features per-machine sysroots, so the main problem we
had, relocatability, has already been solved.

regards,

Koen
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFNgielMkyGM64RGpERAqcIAKCyT44a9MzDF+esO6DgRbtBXi4L8ACdGzpN
4vN5d5EtUwbo3cNHfMl9XQ4=
=eFCq
-----END PGP SIGNATURE-----




^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use)
  2011-03-17 15:07       ` Phil Blundell
@ 2011-03-17 17:52         ` Esben Haabendal
  2011-03-17 18:05           ` Phil Blundell
  0 siblings, 1 reply; 40+ messages in thread
From: Esben Haabendal @ 2011-03-17 17:52 UTC (permalink / raw)
  To: openembedded-devel

On Thu, 2011-03-17 at 15:07 +0000, Phil Blundell wrote:
> On Thu, 2011-03-17 at 15:43 +0100, Esben Haabendal wrote:
> > Is OE really in a position to permantly settle for something suboptimal
> > in such a central area?
> 
> No, but rejecting the big bang doesn't mean that we can't make the
> change; it just means that we need to find a way to make the old and new
> arrangements coexist for a transition period.  This is the way every
> other architectural change in OE has been done and I don't see any
> reason that this one needs to be different.

Exactly

> 
> If we really did want to go ahead and have a metadata flag day then no
> doubt there are plenty of other things we would like to change at the
> same time.  But, thus far, this has never seemed to justify the
> disruption of breaking every recipe in both the main OE repo and third
> party overlays.

Well, it might be possible to minimize the disruption for a transitional
period by carefully specifying some catch-all build-time package
dependencies pulling in all packages for recipes not ported yet.

I think it would be much more worthwhile to put effort into this than to
push for per-recipe sysroot with the current sstate solution.

Having package-based build-time dependencies, using the same packages as
when building run-time images, is much simpler than what is currently
done in OE, while at the same time giving increased flexibility in
specifying the build-time dependencies needed for a recipe and it's
packages.

But you might have to try it out before really understanding why you
cannot live without it ;-)

> I must admit that I'm also slightly unclear about why the change in
> build dependency specifications is a prerequisite for doing per-recipe
> sysroots.

It might not be, but the result will of-course not be the same.

>Is that just an artifact of the way you implemented it in
> OE-lite or is there some fundamental constraint that means it needs to
> be this way?

I don't think there are any fundamental constraint.  Sometimes doing
things right are simply so much easier.  As a result, I already do have
a solution with both per-recipe staging/sysroot and buld-time
dependencies using target packages.  I feel pretty confident that this
was the fast path, which is sort of backed by the fact that it is done,
whereas the path (detour?) currently being worked on in OE is still just
on it's way.

/Esben





^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use)
  2011-03-17 17:52         ` Esben Haabendal
@ 2011-03-17 18:05           ` Phil Blundell
  2011-03-17 19:58             ` Esben Haabendal
  0 siblings, 1 reply; 40+ messages in thread
From: Phil Blundell @ 2011-03-17 18:05 UTC (permalink / raw)
  To: openembedded-devel

On Thu, 2011-03-17 at 18:52 +0100, Esben Haabendal wrote:
> Well, it might be possible to minimize the disruption for a transitional
> period by carefully specifying some catch-all build-time package
> dependencies pulling in all packages for recipes not ported yet.

Yes, that's the sort of thing I was thinking of.  It isn't even totally
obvious to me that specifying individual packages is any better than
"all packages from recipe X", since with the former you then have a
potential maintenance headache if files get moved from one package to
another.

p.




^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use)
  2011-03-17 18:05           ` Phil Blundell
@ 2011-03-17 19:58             ` Esben Haabendal
  2011-03-17 21:00               ` Phil Blundell
  2011-03-19  0:18               ` Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use) Richard Purdie
  0 siblings, 2 replies; 40+ messages in thread
From: Esben Haabendal @ 2011-03-17 19:58 UTC (permalink / raw)
  To: openembedded-devel

On Thu, 2011-03-17 at 18:05 +0000, Phil Blundell wrote:
> On Thu, 2011-03-17 at 18:52 +0100, Esben Haabendal wrote:
> > Well, it might be possible to minimize the disruption for a transitional
> > period by carefully specifying some catch-all build-time package
> > dependencies pulling in all packages for recipes not ported yet.
> 
> Yes, that's the sort of thing I was thinking of.  It isn't even totally
> obvious to me that specifying individual packages is any better than
> "all packages from recipe X", since with the former you then have a
> potential maintenance headache if files get moved from one package to
> another.

There is a number of ways that I believe package based build
dependencies are better than recipe based.

a) It is possible to depend on parts of a recipe, which fx. is useful
when a recipe provides more than 1 library, where you might not want all
of them.

b) To build a recipe, you depend on some stuff which you don't need to,
or perhaps even really don't want to pass on to recipes depending on
this recipe.

c) KISS. Using the actual target packages for satisfying build-time
dependencies are a very simple approach, which I strongly believe will
make OE a better tool in the long run, by reducing complexity, and thus
lowering the bar for contributing to OE archictural work.

The maintenance headache you talk about is already there.  In OE-lite
build-time dependency 95% of the time just follow the run-time
dependencies, perhaps making it easier to maintain than OE, as we don't
have to think about another type of "item names" to depend on.

/Esben





^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use)
  2011-03-17 19:58             ` Esben Haabendal
@ 2011-03-17 21:00               ` Phil Blundell
  2011-03-18  5:29                 ` Esben Haabendal
  2011-03-19  0:18               ` Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use) Richard Purdie
  1 sibling, 1 reply; 40+ messages in thread
From: Phil Blundell @ 2011-03-17 21:00 UTC (permalink / raw)
  To: openembedded-devel

On Thu, 2011-03-17 at 20:58 +0100, Esben Haabendal wrote:
> On Thu, 2011-03-17 at 18:05 +0000, Phil Blundell wrote:
> > On Thu, 2011-03-17 at 18:52 +0100, Esben Haabendal wrote:
> > > Well, it might be possible to minimize the disruption for a transitional
> > > period by carefully specifying some catch-all build-time package
> > > dependencies pulling in all packages for recipes not ported yet.
> > 
> > Yes, that's the sort of thing I was thinking of.  It isn't even totally
> > obvious to me that specifying individual packages is any better than
> > "all packages from recipe X", since with the former you then have a
> > potential maintenance headache if files get moved from one package to
> > another.
> 
> There is a number of ways that I believe package based build
> dependencies are better than recipe based.
> 
> a) It is possible to depend on parts of a recipe, which fx. is useful
> when a recipe provides more than 1 library, where you might not want all
> of them.

You'd still need to have built all of them (at least as far as the end
of do_compile) though, right?  In that case it doesn't seem as though
installing the unnecessary ones in the sysroot is all that big a
hardship.

> b) To build a recipe, you depend on some stuff which you don't need to,
> or perhaps even really don't want to pass on to recipes depending on
> this recipe.

Sorry, I don't understand what you're saying here.

> c) KISS. Using the actual target packages for satisfying build-time
> dependencies are a very simple approach, which I strongly believe will
> make OE a better tool in the long run, by reducing complexity, and thus
> lowering the bar for contributing to OE archictural work.

I agree with this, but it seems unrelated to the question of whether
build dependencies should be specified in terms of recipes or output
packages.

> The maintenance headache you talk about is already there.  In OE-lite
> build-time dependency 95% of the time just follow the run-time
> dependencies, perhaps making it easier to maintain than OE, as we don't
> have to think about another type of "item names" to depend on.

(How) do you deal with library package renaming in OE-lite?

p.




^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use)
  2011-03-17 21:00               ` Phil Blundell
@ 2011-03-18  5:29                 ` Esben Haabendal
  2011-03-18 10:26                   ` Phil Blundell
  0 siblings, 1 reply; 40+ messages in thread
From: Esben Haabendal @ 2011-03-18  5:29 UTC (permalink / raw)
  To: openembedded-devel

On Thu, 2011-03-17 at 21:00 +0000, Phil Blundell wrote:
> On Thu, 2011-03-17 at 20:58 +0100, Esben Haabendal wrote:
> > There is a number of ways that I believe package based build
> > dependencies are better than recipe based.
> > 
> > a) It is possible to depend on parts of a recipe, which fx. is useful
> > when a recipe provides more than 1 library, where you might not want all
> > of them.
> 
> You'd still need to have built all of them (at least as far as the end
> of do_compile) though, right?

Of-course.  All recipes providing something for  a do_stage must be
build up till the do_package stage, so I can unpack the actual target
packages needed.

> In that case it doesn't seem as though
> installing the unnecessary ones in the sysroot is all that big a
> hardship.

It is not to save time, it is about controlling what goes into a build.
As many software packages scans for presence of various components
through the availability of headers and libraries, I believe it is
important to decide not just what goes into the stage directory, but
also what does not.  So in OE-lite, if I say I depend on libfoo, I do
not get foobar, just because it was built by the same recipe.

> > b) To build a recipe, you depend on some stuff which you don't need to,
> > or perhaps even really don't want to pass on to recipes depending on
> > this recipe.
> 
> Sorry, I don't understand what you're saying here.

Example:

I build recipe A.
Recipe A depends on package B-b from recipe B.
Recipe B depends on package C-c from recipe C, and D-d-native from
recipe D.
Recipe A only get's package B-b staged, unless the B-b package has
specified some build-time dependencies.

This is relevant both for target library and native tools dependencies.

> > c) KISS. Using the actual target packages for satisfying build-time
> > dependencies are a very simple approach, which I strongly believe will
> > make OE a better tool in the long run, by reducing complexity, and thus
> > lowering the bar for contributing to OE archictural work.
> 
> I agree with this, but it seems unrelated to the question of whether
> build dependencies should be specified in terms of recipes or output
> packages.

Yes, I get your point.  You could of-course still specify build
dependencies using recipe names/provides, and then just unpack all
target packages build by that recipe.

This would give you the major part of the KISS win I see, except for in
the dependency handling code of BitBake (and in the learning curve of OE
developers).  Keep in mind that by using packages for build-time
dependencies, the mechanism is exactly identical for run-time and
build-time dependencies.  Exactly the same code in BitBake handles both,
and the same mechanism needs to be understood.  This is also part of the
KISS win of doing it this way.

> > The maintenance headache you talk about is already there.  In OE-lite
> > build-time dependency 95% of the time just follow the run-time
> > dependencies, perhaps making it easier to maintain than OE, as we don't
> > have to think about another type of "item names" to depend on.
> 
> (How) do you deal with library package renaming in OE-lite?

What exactly do you mean?  (We are doing several things with library
package naming...)

/Esben





^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Python-native dependency in libxml2
  2011-03-17 10:40                 ` Ahsan, Noor
@ 2011-03-18  7:41                   ` Ahsan, Noor
  2011-03-18  8:38                     ` Martin Jansa
  2011-03-18  9:01                     ` Frans Meulenbroeks
  0 siblings, 2 replies; 40+ messages in thread
From: Ahsan, Noor @ 2011-03-18  7:41 UTC (permalink / raw)
  To: openembedded-devel

Hello Martin/Frans and Khem,

Any recommendation after following analysis that how should I proceed.
Should I send the patches to community?

Regards,
Noor

-----Original Message-----
From: openembedded-devel-bounces@lists.openembedded.org
[mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf Of
Ahsan, Noor
Sent: Thursday, March 17, 2011 3:41 PM
To: openembedded-devel@lists.openembedded.org
Subject: Re: [oe] Python-native dependency in libxml2

Hello,

Today I got the fresh stuff and tried to build gnome-doc-utils-native
(to build xml2po package). I am building on Ubuntu host 9.10. First it
gave me an error that it could not find intltoolize command. You can see
the attached build log "build_intltool_error,log". So I added intltool
package in gnome-doc-utils-native DEPENDS so it built successfully. You
can see the build log "build_intltool_fix.log". Then I removed all the
build stuff from build DIR and commented DEPENDS_virtclass-native =
"python-native" and XPY_virtclass-native = "
--with-python=${PYTHON_DIR}" in libxml2.inc file. Rebuild
gnome-doc-utils-native. It built successfully again. The build log is
also attached "build_no_python.log". I think there is no need of python
dependency in libxml2 package. Kindly correct me if I am doing anything
wrong.

We need to fix gnome-doc-utils-native recipe, so that it does not show
intltoolize error.

Regards,
Noor

-----Original Message-----
From: openembedded-devel-bounces@lists.openembedded.org
[mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf Of
Ahsan, Noor
Sent: Wednesday, March 16, 2011 1:39 PM
To: openembedded-devel@lists.openembedded.org
Subject: Re: [oe] Python-native dependency in libxml2

Hello,

I made 2 changes, first one was to remove python-native from DEPENDS and
second was commented out XPY_virtclass-native = "
--with-python=${PYTHON_DIR}". Moreover I removed all the stuff from
build dir, so there were not python-native for me. After kicking this
build libxml2-native build fine.

I was looking for xml2po recipe, I couldn't find it. Can you tell me how
to build xml2po package so that I can reproduce the problem.

Regards,
Noor

-----Original Message-----
From: openembedded-devel-bounces@lists.openembedded.org
[mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf Of
Martin Jansa
Sent: Wednesday, March 16, 2011 1:05 PM
To: openembedded-devel@lists.openembedded.org
Subject: Re: [oe] Python-native dependency in libxml2

On Wed, Mar 16, 2011 at 08:28:39AM +0100, Frans Meulenbroeks wrote:
> 2011/3/16 Khem Raj <raj.khem@gmail.com>:
> > On 3/15/2011 11:22 PM, Ahsan, Noor wrote:
> >>
> >> Hello,
> >>
> >> I was looking at the libxml2 package. While going through the
recipes I
> >> came to know that its native package depends on python-native
package as
> >> well. This dependency is defined in libxml2.inc file.
> >>
> >> DEPENDS_virtclass-native = "python-native"
> >>
> >> This package build fine after removing this dependency. I am not
clear
> >> why this dependency is being added in libxml2 package. Can somebody
> >> clear that to me. While looking at the git log I came to know that
this
> >> change is coming from libxml2-native.inc file. But I am not clear
why
> >> this dependency was added as this package build fine without it.
> >>
> >> Please help me in understanding this dependency. Thanks.
> >
> > Try to build this recipe from scratch and see if it still works then
we can
> > remove the dep

That's not enough, libxml2-native builds fine.. but then xml2po
will fail if there isn't libxml2-native built with python support.

see a25f07ca6159e1cd5b8a215ca5da8405fb1b9053

So yes.. for such tests you should build recipe from scratch _and_ check
if resulting package/sysroot is still the same.

Regards,

> I'm not sure if that is the right way.
> It might well be that typically python-native is already there in a
> scratch build because some earlier package needed it (or even because
> of the scheduling of build steps.
> 
> Probably a better way is to build with packaged staging (with staging
> dir outside TMPDIR) then rm TMPDIR and bake the package.
> Alternately peek into the package to see if it needs python. If it is
> needed then the DEPENDS should stay.
> 
> Looking at the issue at hand maybe the best person to ask is Martin
> Jansa as he last touched that line according to git blame:
> 3cd9ddbf recipes/libxml/libxml2.inc  (Martin Jansa
> 2010-02-26 12:32:53 +0100  5) DEPENDS_virtclass-native =
> "python-native"
> 
> The other thing is that further on in the .inc file I see:
> XPY_virtclass-native = " --with-python=${PYTHON_DIR}"
> 
> This strongly suggests a hard dependency on python, so removing the
> DEPENDS "because it builds without it" does not seem to be a good plan
> to me.
> 
> My strong feeling is that recipes should be self-contained (so should
> list all packages they need to build, minus the ones that are
> inherited from classes (and maybe a few implicit ones like maybe make)
> 
> Frans
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

_______________________________________________
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel



^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Python-native dependency in libxml2
  2011-03-18  7:41                   ` Ahsan, Noor
@ 2011-03-18  8:38                     ` Martin Jansa
  2011-03-18  9:47                       ` Koen Kooi
  2011-03-18  9:01                     ` Frans Meulenbroeks
  1 sibling, 1 reply; 40+ messages in thread
From: Martin Jansa @ 2011-03-18  8:38 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 6506 bytes --]

On Fri, Mar 18, 2011 at 08:41:40AM +0100, Ahsan, Noor wrote:
> Hello Martin/Frans and Khem,
> Any recommendation after following analysis that how should I proceed.
> Should I send the patches to community?

Maybe koen will reply with more info about xml2po issue he found, imho
it wasn't in xml2po build but while using xml2to to generate docs in some
other recipe.
 
IIRC I had similar issue in some other recipe, but unfortunatelly don't 
remember which one.

Regards,

> 
> Regards,
> Noor
> 
> -----Original Message-----
> From: openembedded-devel-bounces@lists.openembedded.org
> [mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf Of
> Ahsan, Noor
> Sent: Thursday, March 17, 2011 3:41 PM
> To: openembedded-devel@lists.openembedded.org
> Subject: Re: [oe] Python-native dependency in libxml2
> 
> Hello,
> 
> Today I got the fresh stuff and tried to build gnome-doc-utils-native
> (to build xml2po package). I am building on Ubuntu host 9.10. First it
> gave me an error that it could not find intltoolize command. You can see
> the attached build log "build_intltool_error,log". So I added intltool
> package in gnome-doc-utils-native DEPENDS so it built successfully. You
> can see the build log "build_intltool_fix.log". Then I removed all the
> build stuff from build DIR and commented DEPENDS_virtclass-native =
> "python-native" and XPY_virtclass-native = "
> --with-python=${PYTHON_DIR}" in libxml2.inc file. Rebuild
> gnome-doc-utils-native. It built successfully again. The build log is
> also attached "build_no_python.log". I think there is no need of python
> dependency in libxml2 package. Kindly correct me if I am doing anything
> wrong.
> 
> We need to fix gnome-doc-utils-native recipe, so that it does not show
> intltoolize error.
> 
> Regards,
> Noor
> 
> -----Original Message-----
> From: openembedded-devel-bounces@lists.openembedded.org
> [mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf Of
> Ahsan, Noor
> Sent: Wednesday, March 16, 2011 1:39 PM
> To: openembedded-devel@lists.openembedded.org
> Subject: Re: [oe] Python-native dependency in libxml2
> 
> Hello,
> 
> I made 2 changes, first one was to remove python-native from DEPENDS and
> second was commented out XPY_virtclass-native = "
> --with-python=${PYTHON_DIR}". Moreover I removed all the stuff from
> build dir, so there were not python-native for me. After kicking this
> build libxml2-native build fine.
> 
> I was looking for xml2po recipe, I couldn't find it. Can you tell me how
> to build xml2po package so that I can reproduce the problem.
> 
> Regards,
> Noor
> 
> -----Original Message-----
> From: openembedded-devel-bounces@lists.openembedded.org
> [mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf Of
> Martin Jansa
> Sent: Wednesday, March 16, 2011 1:05 PM
> To: openembedded-devel@lists.openembedded.org
> Subject: Re: [oe] Python-native dependency in libxml2
> 
> On Wed, Mar 16, 2011 at 08:28:39AM +0100, Frans Meulenbroeks wrote:
> > 2011/3/16 Khem Raj <raj.khem@gmail.com>:
> > > On 3/15/2011 11:22 PM, Ahsan, Noor wrote:
> > >>
> > >> Hello,
> > >>
> > >> I was looking at the libxml2 package. While going through the
> recipes I
> > >> came to know that its native package depends on python-native
> package as
> > >> well. This dependency is defined in libxml2.inc file.
> > >>
> > >> DEPENDS_virtclass-native = "python-native"
> > >>
> > >> This package build fine after removing this dependency. I am not
> clear
> > >> why this dependency is being added in libxml2 package. Can somebody
> > >> clear that to me. While looking at the git log I came to know that
> this
> > >> change is coming from libxml2-native.inc file. But I am not clear
> why
> > >> this dependency was added as this package build fine without it.
> > >>
> > >> Please help me in understanding this dependency. Thanks.
> > >
> > > Try to build this recipe from scratch and see if it still works then
> we can
> > > remove the dep
> 
> That's not enough, libxml2-native builds fine.. but then xml2po
> will fail if there isn't libxml2-native built with python support.
> 
> see a25f07ca6159e1cd5b8a215ca5da8405fb1b9053
> 
> So yes.. for such tests you should build recipe from scratch _and_ check
> if resulting package/sysroot is still the same.
> 
> Regards,
> 
> > I'm not sure if that is the right way.
> > It might well be that typically python-native is already there in a
> > scratch build because some earlier package needed it (or even because
> > of the scheduling of build steps.
> > 
> > Probably a better way is to build with packaged staging (with staging
> > dir outside TMPDIR) then rm TMPDIR and bake the package.
> > Alternately peek into the package to see if it needs python. If it is
> > needed then the DEPENDS should stay.
> > 
> > Looking at the issue at hand maybe the best person to ask is Martin
> > Jansa as he last touched that line according to git blame:
> > 3cd9ddbf recipes/libxml/libxml2.inc  (Martin Jansa
> > 2010-02-26 12:32:53 +0100  5) DEPENDS_virtclass-native =
> > "python-native"
> > 
> > The other thing is that further on in the .inc file I see:
> > XPY_virtclass-native = " --with-python=${PYTHON_DIR}"
> > 
> > This strongly suggests a hard dependency on python, so removing the
> > DEPENDS "because it builds without it" does not seem to be a good plan
> > to me.
> > 
> > My strong feeling is that recipes should be self-contained (so should
> > list all packages they need to build, minus the ones that are
> > inherited from classes (and maybe a few implicit ones like maybe make)
> > 
> > Frans
> > 
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
> 
> -- 
> Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Type: application/pgp-signature, Size: 205 bytes --]

^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Python-native dependency in libxml2
  2011-03-18  7:41                   ` Ahsan, Noor
  2011-03-18  8:38                     ` Martin Jansa
@ 2011-03-18  9:01                     ` Frans Meulenbroeks
  1 sibling, 0 replies; 40+ messages in thread
From: Frans Meulenbroeks @ 2011-03-18  9:01 UTC (permalink / raw)
  To: openembedded-devel

2011/3/18 Ahsan, Noor <Noor_Ahsan@mentor.com>:
> Hello Martin/Frans and Khem,
>
> Any recommendation after following analysis that how should I proceed.
> Should I send the patches to community?
>
> Regards,
> Noor

I think Martin is in a better position to judge this than I am.
Did you also verify that the generated output (the packages and the
contents of the packages) is identical in the python and no-python
case?

Best regards, Frans



^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Python-native dependency in libxml2
  2011-03-18  8:38                     ` Martin Jansa
@ 2011-03-18  9:47                       ` Koen Kooi
  0 siblings, 0 replies; 40+ messages in thread
From: Koen Kooi @ 2011-03-18  9:47 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 18-03-11 09:38, Martin Jansa wrote:
> On Fri, Mar 18, 2011 at 08:41:40AM +0100, Ahsan, Noor wrote:
>> Hello Martin/Frans and Khem,
>> Any recommendation after following analysis that how should I proceed.
>> Should I send the patches to community?
> 
> Maybe koen will reply with more info about xml2po issue he found, imho
> it wasn't in xml2po build but while using xml2to to generate docs in some
> other recipe.

The issue I had that I needed xml2{t,p}o to work on the target as well
for native compilation. If that still works, Noors changes is fine by me.

regards,

Koen

>  
> IIRC I had similar issue in some other recipe, but unfortunatelly don't 
> remember which one.
> 
> Regards,
> 
>>
>> Regards,
>> Noor
>>
>> -----Original Message-----
>> From: openembedded-devel-bounces@lists.openembedded.org
>> [mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf Of
>> Ahsan, Noor
>> Sent: Thursday, March 17, 2011 3:41 PM
>> To: openembedded-devel@lists.openembedded.org
>> Subject: Re: [oe] Python-native dependency in libxml2
>>
>> Hello,
>>
>> Today I got the fresh stuff and tried to build gnome-doc-utils-native
>> (to build xml2po package). I am building on Ubuntu host 9.10. First it
>> gave me an error that it could not find intltoolize command. You can see
>> the attached build log "build_intltool_error,log". So I added intltool
>> package in gnome-doc-utils-native DEPENDS so it built successfully. You
>> can see the build log "build_intltool_fix.log". Then I removed all the
>> build stuff from build DIR and commented DEPENDS_virtclass-native =
>> "python-native" and XPY_virtclass-native = "
>> --with-python=${PYTHON_DIR}" in libxml2.inc file. Rebuild
>> gnome-doc-utils-native. It built successfully again. The build log is
>> also attached "build_no_python.log". I think there is no need of python
>> dependency in libxml2 package. Kindly correct me if I am doing anything
>> wrong.
>>
>> We need to fix gnome-doc-utils-native recipe, so that it does not show
>> intltoolize error.
>>
>> Regards,
>> Noor
>>
>> -----Original Message-----
>> From: openembedded-devel-bounces@lists.openembedded.org
>> [mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf Of
>> Ahsan, Noor
>> Sent: Wednesday, March 16, 2011 1:39 PM
>> To: openembedded-devel@lists.openembedded.org
>> Subject: Re: [oe] Python-native dependency in libxml2
>>
>> Hello,
>>
>> I made 2 changes, first one was to remove python-native from DEPENDS and
>> second was commented out XPY_virtclass-native = "
>> --with-python=${PYTHON_DIR}". Moreover I removed all the stuff from
>> build dir, so there were not python-native for me. After kicking this
>> build libxml2-native build fine.
>>
>> I was looking for xml2po recipe, I couldn't find it. Can you tell me how
>> to build xml2po package so that I can reproduce the problem.
>>
>> Regards,
>> Noor
>>
>> -----Original Message-----
>> From: openembedded-devel-bounces@lists.openembedded.org
>> [mailto:openembedded-devel-bounces@lists.openembedded.org] On Behalf Of
>> Martin Jansa
>> Sent: Wednesday, March 16, 2011 1:05 PM
>> To: openembedded-devel@lists.openembedded.org
>> Subject: Re: [oe] Python-native dependency in libxml2
>>
>> On Wed, Mar 16, 2011 at 08:28:39AM +0100, Frans Meulenbroeks wrote:
>>> 2011/3/16 Khem Raj <raj.khem@gmail.com>:
>>>> On 3/15/2011 11:22 PM, Ahsan, Noor wrote:
>>>>>
>>>>> Hello,
>>>>>
>>>>> I was looking at the libxml2 package. While going through the
>> recipes I
>>>>> came to know that its native package depends on python-native
>> package as
>>>>> well. This dependency is defined in libxml2.inc file.
>>>>>
>>>>> DEPENDS_virtclass-native = "python-native"
>>>>>
>>>>> This package build fine after removing this dependency. I am not
>> clear
>>>>> why this dependency is being added in libxml2 package. Can somebody
>>>>> clear that to me. While looking at the git log I came to know that
>> this
>>>>> change is coming from libxml2-native.inc file. But I am not clear
>> why
>>>>> this dependency was added as this package build fine without it.
>>>>>
>>>>> Please help me in understanding this dependency. Thanks.
>>>>
>>>> Try to build this recipe from scratch and see if it still works then
>> we can
>>>> remove the dep
>>
>> That's not enough, libxml2-native builds fine.. but then xml2po
>> will fail if there isn't libxml2-native built with python support.
>>
>> see a25f07ca6159e1cd5b8a215ca5da8405fb1b9053
>>
>> So yes.. for such tests you should build recipe from scratch _and_ check
>> if resulting package/sysroot is still the same.
>>
>> Regards,
>>
>>> I'm not sure if that is the right way.
>>> It might well be that typically python-native is already there in a
>>> scratch build because some earlier package needed it (or even because
>>> of the scheduling of build steps.
>>>
>>> Probably a better way is to build with packaged staging (with staging
>>> dir outside TMPDIR) then rm TMPDIR and bake the package.
>>> Alternately peek into the package to see if it needs python. If it is
>>> needed then the DEPENDS should stay.
>>>
>>> Looking at the issue at hand maybe the best person to ask is Martin
>>> Jansa as he last touched that line according to git blame:
>>> 3cd9ddbf recipes/libxml/libxml2.inc  (Martin Jansa
>>> 2010-02-26 12:32:53 +0100  5) DEPENDS_virtclass-native =
>>> "python-native"
>>>
>>> The other thing is that further on in the .inc file I see:
>>> XPY_virtclass-native = " --with-python=${PYTHON_DIR}"
>>>
>>> This strongly suggests a hard dependency on python, so removing the
>>> DEPENDS "because it builds without it" does not seem to be a good plan
>>> to me.
>>>
>>> My strong feeling is that recipes should be self-contained (so should
>>> list all packages they need to build, minus the ones that are
>>> inherited from classes (and maybe a few implicit ones like maybe make)
>>>
>>> Frans
>>>
>>> _______________________________________________
>>> Openembedded-devel mailing list
>>> Openembedded-devel@lists.openembedded.org
>>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>>
>> -- 
>> Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
>>
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>>
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
> 
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFNgypFMkyGM64RGpERAka3AJ91Dpu6+SCx3MH0HtK6LUyEnaH7tACeM4EP
b0nPj51+QTs4wdONs4BCP7Y=
=Zxcy
-----END PGP SIGNATURE-----




^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use)
  2011-03-18  5:29                 ` Esben Haabendal
@ 2011-03-18 10:26                   ` Phil Blundell
  2011-03-18 12:14                     ` Eliminating dependency race-conditions Esben Haabendal
  0 siblings, 1 reply; 40+ messages in thread
From: Phil Blundell @ 2011-03-18 10:26 UTC (permalink / raw)
  To: openembedded-devel

On Fri, 2011-03-18 at 06:29 +0100, Esben Haabendal wrote:
> Yes, I get your point.  You could of-course still specify build
> dependencies using recipe names/provides, and then just unpack all
> target packages build by that recipe.
> 
> This would give you the major part of the KISS win I see, except for in
> the dependency handling code of BitBake (and in the learning curve of OE
> developers).  Keep in mind that by using packages for build-time
> dependencies, the mechanism is exactly identical for run-time and
> build-time dependencies.  Exactly the same code in BitBake handles both,
> and the same mechanism needs to be understood.  This is also part of the
> KISS win of doing it this way.

Right.  So, it seems to me that the appropriate way to attack the
problem in OE is to start by doing exactly that: leave the syntax of
DEPENDS alone for now, treat each entry in DEPENDS as meaning "all
packages built by the named recipe", and then implement the per-recipe
sysroot construction that I think we are agreed is highly desirable.

Then, as a later refinement, we could introduce a mechanism for
specifying dependencies more precisely, at the package level rather than
the recipe level.  We could do that either by extending the syntax of
DEPENDS, something like:

DEPENDS = "boost:boost-iostreams"

(to say that you wanted just the boost-iostreams package from the boost
recipe)

or, alternately, by introducing a new variable which would either
supplement or replace DEPENDS.  Either of those would allow us to
migrate to fine-grained dependencies without breaking existing recipes.

> > (How) do you deal with library package renaming in OE-lite?
> 
> What exactly do you mean?  (We are doing several things with library
> package naming...)

I was thinking of situations like the Debian package autonamer, ie the
thing that causes glibc-dev to come out named "libc6-dev.ipk" or similar
depending on the soname of the library that was built.  It seems like
this would be a bit awkward to deal with if your dependencies were
specified purely in terms of output packages.

p.





^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions
  2011-03-18 10:26                   ` Phil Blundell
@ 2011-03-18 12:14                     ` Esben Haabendal
  2011-03-19  0:32                       ` Richard Purdie
  0 siblings, 1 reply; 40+ messages in thread
From: Esben Haabendal @ 2011-03-18 12:14 UTC (permalink / raw)
  To: openembedded-devel

Phil Blundell <philb@gnu.org> writes:

> On Fri, 2011-03-18 at 06:29 +0100, Esben Haabendal wrote:
>> Yes, I get your point.  You could of-course still specify build
>> dependencies using recipe names/provides, and then just unpack all
>> target packages build by that recipe.
>> 
>> This would give you the major part of the KISS win I see, except for in
>> the dependency handling code of BitBake (and in the learning curve of OE
>> developers).  Keep in mind that by using packages for build-time
>> dependencies, the mechanism is exactly identical for run-time and
>> build-time dependencies.  Exactly the same code in BitBake handles both,
>> and the same mechanism needs to be understood.  This is also part of the
>> KISS win of doing it this way.
>
> Right.  So, it seems to me that the appropriate way to attack the
> problem in OE is to start by doing exactly that: leave the syntax of
> DEPENDS alone for now, treat each entry in DEPENDS as meaning "all
> packages built by the named recipe", and then implement the per-recipe
> sysroot construction that I think we are agreed is highly desirable.

By doing it this way, I don't think we are getting much closer to the
second step (package-based build-time dependencies).  The OE-lite
implementation of per-recipe staging builds on top of package-based
build-time dependencies, so to do it the other way around, would imply
taking the sstate concept and extend it to do per-recipe sysroots.
After that, I believe you have exactly the same amount of development
left to get where OE-lite is in respect to package-based build-time
depencies and per-recipe staging.

As I see it, package-based build-time dependencies practically obsoletes
sstate.  So if we for a moment imagine that we have moved OE to have
sstate based per-recipe staging, we still have the same amount of work
to do in the following areas:

* Modifying BitBake and OE metadata to handle package-based build-time
  dependencies
* Modifying existing recipes to include package-based build-time
  dependency information

You can see the per-recipe staging as a postive side-effect of the
package-based build-time dependency implementation.

So why take the detour instead of just doing it?

> Then, as a later refinement, we could introduce a mechanism for
> specifying dependencies more precisely, at the package level rather than
> the recipe level.  We could do that either by extending the syntax of
> DEPENDS, something like:
>
> DEPENDS = "boost:boost-iostreams"
>
> (to say that you wanted just the boost-iostreams package from the boost
> recipe)

That is IMO just adding more cruft to OE.  Not really what we need.

> or, alternately, by introducing a new variable which would either
> supplement or replace DEPENDS.  Either of those would allow us to
> migrate to fine-grained dependencies without breaking existing recipes.

Sounds better.

Also, just as for run-time dependencies, the build-time package
dependencies is not necesarely the actual package names, but some
provides names, so having a "recipe:package" syntax really does not make
much sense.

>> > (How) do you deal with library package renaming in OE-lite?
>> 
>> What exactly do you mean?  (We are doing several things with library
>> package naming...)
>
> I was thinking of situations like the Debian package autonamer, ie the
> thing that causes glibc-dev to come out named "libc6-dev.ipk" or similar
> depending on the soname of the library that was built.  It seems like
> this would be a bit awkward to deal with if your dependencies were
> specified purely in terms of output packages.

As OE-lite is not OE, we are currently not supporting such type of
package renaming.  Let's leave that to Debian guys to fight with ;-)

But as we build-time dependencies are typically in the form of some
package "provides", it doesn't really matter if the package is renamed.

/Esben



^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use)
  2011-03-17 19:58             ` Esben Haabendal
  2011-03-17 21:00               ` Phil Blundell
@ 2011-03-19  0:18               ` Richard Purdie
  2011-03-22  9:00                 ` Eliminating dependency race-conditions Esben Haabendal
  1 sibling, 1 reply; 40+ messages in thread
From: Richard Purdie @ 2011-03-19  0:18 UTC (permalink / raw)
  To: openembedded-devel

On Thu, 2011-03-17 at 20:58 +0100, Esben Haabendal wrote:
> On Thu, 2011-03-17 at 18:05 +0000, Phil Blundell wrote:
> > On Thu, 2011-03-17 at 18:52 +0100, Esben Haabendal wrote:
> > > Well, it might be possible to minimize the disruption for a transitional
> > > period by carefully specifying some catch-all build-time package
> > > dependencies pulling in all packages for recipes not ported yet.
> > 
> > Yes, that's the sort of thing I was thinking of.  It isn't even totally
> > obvious to me that specifying individual packages is any better than
> > "all packages from recipe X", since with the former you then have a
> > potential maintenance headache if files get moved from one package to
> > another.
> 
> There is a number of ways that I believe package based build
> dependencies are better than recipe based.
> 
> a) It is possible to depend on parts of a recipe, which fx. is useful
> when a recipe provides more than 1 library, where you might not want all
> of them.
> 
> b) To build a recipe, you depend on some stuff which you don't need to,
> or perhaps even really don't want to pass on to recipes depending on
> this recipe.
> 
> c) KISS. Using the actual target packages for satisfying build-time
> dependencies are a very simple approach, which I strongly believe will
> make OE a better tool in the long run, by reducing complexity, and thus
> lowering the bar for contributing to OE archictural work.

I'd like to step in here and point out that your approach is not as
simple as you claim. It certainly is a really nice solution for one very
specific use case.

There are however many other problems which appear when you step away
from your isolated usecase.

Take the case of different package managers, how is that handled? Can
you only have one enabled at a given time? What happens if you switch
package manager half way through a build. Currently package managers and
package format are abstracted, I suspect we lose that with your
implementation. What if the package managers have slightly different
behaviours?

Secondly, how about task output that isn't packages? The output of
do_deploy for example(kernel/firmware/bootloader)? The pkgdata generated
by do_package? A generic extra task added by the user which outputs some
data?

What you're proposing is to totally actually totally collapse our
current generic task structure into something entirely governed by
target packages and their specific requirements. Of course you could say
the existing mechanisms are still available but then where is the
simplification?

sstate is very simple in concept and very simple in operation compared
to anything we've previously had. It is generic being task based and can
apply to any task as required. It doesn't require radical changes to the
existing model, there is a clear migration path and it also embraces
things like the checksum/signature generation which I believe are going
to play a significant role in the future.

This isn't to say what you're doing is wrong or that we shouldn't be
looking at it for ideas but I believe it needs to be something
incremental on top of what we already have and functionality we have now
cannot simply be lost as people use it.

Cheers,

Richard





^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions
  2011-03-18 12:14                     ` Eliminating dependency race-conditions Esben Haabendal
@ 2011-03-19  0:32                       ` Richard Purdie
  2011-03-22  9:01                         ` Esben Haabendal
  0 siblings, 1 reply; 40+ messages in thread
From: Richard Purdie @ 2011-03-19  0:32 UTC (permalink / raw)
  To: openembedded-devel

On Fri, 2011-03-18 at 13:14 +0100, Esben Haabendal wrote:
> By doing it this way, I don't think we are getting much closer to the
> second step (package-based build-time dependencies).  The OE-lite
> implementation of per-recipe staging builds on top of package-based
> build-time dependencies, so to do it the other way around, would imply
> taking the sstate concept and extend it to do per-recipe sysroots.
> After that, I believe you have exactly the same amount of development
> left to get where OE-lite is in respect to package-based build-time
> depencies and per-recipe staging.
> 
> As I see it, package-based build-time dependencies practically obsoletes
> sstate. 

This is where I think you misunderstand why sstate has been written and
what its role is.

Its a generic abstraction of taking the output from a task, saving it
away somewhere and then being able to reuse a prebuilt version of it.
There is no dependency on a package manager, package format or special
dependency formats. sstate simply looks for a prebuilt version (matching
a checksum), uses it if present, otherwise builds from "scratch".

> > I was thinking of situations like the Debian package autonamer, ie the
> > thing that causes glibc-dev to come out named "libc6-dev.ipk" or similar
> > depending on the soname of the library that was built.  It seems like
> > this would be a bit awkward to deal with if your dependencies were
> > specified purely in terms of output packages.
> 
> As OE-lite is not OE, we are currently not supporting such type of
> package renaming.  Let's leave that to Debian guys to fight with ;-)

What other features are you not supporting? Are you prepared to think
about them or is that someone else's problem?

Cheers,

Richard




^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions
  2011-03-19  0:18               ` Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use) Richard Purdie
@ 2011-03-22  9:00                 ` Esben Haabendal
  0 siblings, 0 replies; 40+ messages in thread
From: Esben Haabendal @ 2011-03-22  9:00 UTC (permalink / raw)
  To: openembedded-devel

Richard Purdie <richard.purdie@linuxfoundation.org> writes:

> On Thu, 2011-03-17 at 20:58 +0100, Esben Haabendal wrote:
>> On Thu, 2011-03-17 at 18:05 +0000, Phil Blundell wrote:
>> > On Thu, 2011-03-17 at 18:52 +0100, Esben Haabendal wrote:
>> > > Well, it might be possible to minimize the disruption for a transitional
>> > > period by carefully specifying some catch-all build-time package
>> > > dependencies pulling in all packages for recipes not ported yet.
>> > 
>> > Yes, that's the sort of thing I was thinking of.  It isn't even totally
>> > obvious to me that specifying individual packages is any better than
>> > "all packages from recipe X", since with the former you then have a
>> > potential maintenance headache if files get moved from one package to
>> > another.
>> 
>> There is a number of ways that I believe package based build
>> dependencies are better than recipe based.
>> 
>> a) It is possible to depend on parts of a recipe, which fx. is useful
>> when a recipe provides more than 1 library, where you might not want all
>> of them.
>> 
>> b) To build a recipe, you depend on some stuff which you don't need to,
>> or perhaps even really don't want to pass on to recipes depending on
>> this recipe.
>> 
>> c) KISS. Using the actual target packages for satisfying build-time
>> dependencies are a very simple approach, which I strongly believe will
>> make OE a better tool in the long run, by reducing complexity, and thus
>> lowering the bar for contributing to OE archictural work.
>
> I'd like to step in here and point out that your approach is not as
> simple as you claim. It certainly is a really nice solution for one very
> specific use case.
>
> There are however many other problems which appear when you step away
> from your isolated usecase.
>
> Take the case of different package managers, how is that handled?
> Can you only have one enabled at a given time? What happens if you
> switch package manager half way through a build. Currently package
> managers and package format are abstracted, I suspect we lose that
> with your implementation. What if the package managers have slightly
> different behaviours?

In OE-lite, which is designed for a much more specific use-case than OE,
it is handled very simple.  OE-lite (currently) does not support package
managers at all.  The package format used is simple flat tarballs.  The
way I see package managers handled would be to add them on top of that.
With that I mean that the meta-data contains the necessary packaging
information, this is stored in some standardized meta-data container
stored together with the tarballs (but propbably in separate files), and
packages (RPM/dpkg/ipkg) generation would be implemented on top of that.

I don't believe it is worth the added complexity to support package
managers internally in OE-lite.

But if OE were to implement something similar, then I don't see any real
showstoppers to extending the do_stage/do_rstage functions to handle
multiple package managers.  But I believe it would be best to let
BitBake handle all the dependencie stuff as OE-lite of-course does.

> Secondly, how about task output that isn't packages?

As of now, there is no other type of output.  But I don't see any real
blockers for having non-package output.  That said, in OE-lite the goal
is to only have packages as task output.

> The output of do_deploy for example(kernel/firmware/bootloader)?

The output from do_deploy is never used by other tasks.  Instead, the
recipes that uses do_deploy can just arrange for a package to generated
with the stuff that needs by other tasks (like the things you mentioned
above).

> The pkgdata generated by do_package?

As OE-lite does not generate packages for real package managers (just
tarballs), this is currently not handled.  But I would just store it in
some way together with the tarball (fx. *.tar and *.pkgdata).

> A generic extra task added by the user which outputs some data?

Like what?

> What you're proposing is to totally actually totally collapse our
> current generic task structure into something entirely governed by
> target packages and their specific requirements.

I partly agree.  The proposal is to let target packages have a much more
central role than in current OE.  But the task structure in OE-lite is
actually very much similar to in OE, so I don't think really agree with
your wording (totally collapse).

> Of course you could say the existing mechanisms are still available

And they are.

> but then where is the simplification?

The simplification I have been trying to explain here is the fact that I
don't have to handle two different ways if dependency-handling for
build- and run-time dependencies.  They are completely identical.  Also,
I don't have to care about crafting any kind of special sysroot/sstate
packages, just target packages (tarballs).

> sstate is very simple in concept and very simple in operation compared
> to anything we've previously had.

Could be.  But my main point is that it still builds on what I believe
is a fundamentally flawed concept, ie. the idea of sharing anything
between recipes other than clearly defined entities (ie. packages).

> It is generic being task based and can apply to any task as
> required. It doesn't require radical changes to the existing model,
> there is a clear migration path

I agree on that.

> and it also embraces things like the checksum/signature generation
> which I believe are going to play a significant role in the future.

Yes, that will definitely be important in the future.  But I don't see
how checksum/signature generation is made much easier by the design
concepts being discussed here.

> This isn't to say what you're doing is wrong or that we shouldn't be
> looking at it for ideas but I believe it needs to be something
> incremental on top of what we already have and functionality we have now
> cannot simply be lost as people use it.

And that is probably the core of this discussion.

I am happy to see that there seems to be some kind of concensus that
what I am doing/showing in OE-lite has some clear merits.

So the important choice is if the absolute driving force for development
has to be that everything has to be "incremental on top of what we
already have", or it is sometimes better to replace something.

I basically does not see as much value in "incremental on top of ..." as
you do, but understand and appreciate the need for a transitional phase
for meta-data.  But these are really two different issues.  If something
(like this proposal for "real" package-based staging/sysroot) is
chosen for the OE future, a plan for transition needs to be made and
executed.  But that is not the same as to say that we cannot at the same
time replace some core parts/concepts.

/Esben



^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions
  2011-03-19  0:32                       ` Richard Purdie
@ 2011-03-22  9:01                         ` Esben Haabendal
  2011-03-23 20:31                           ` Frans Meulenbroeks
  0 siblings, 1 reply; 40+ messages in thread
From: Esben Haabendal @ 2011-03-22  9:01 UTC (permalink / raw)
  To: openembedded-devel

Richard Purdie <richard.purdie@linuxfoundation.org> writes:

> On Fri, 2011-03-18 at 13:14 +0100, Esben Haabendal wrote:
>> By doing it this way, I don't think we are getting much closer to the
>> second step (package-based build-time dependencies).  The OE-lite
>> implementation of per-recipe staging builds on top of package-based
>> build-time dependencies, so to do it the other way around, would imply
>> taking the sstate concept and extend it to do per-recipe sysroots.
>> After that, I believe you have exactly the same amount of development
>> left to get where OE-lite is in respect to package-based build-time
>> depencies and per-recipe staging.
>> 
>> As I see it, package-based build-time dependencies practically obsoletes
>> sstate. 
>
> This is where I think you misunderstand why sstate has been written and
> what its role is.

Please note my use of "practically", which should have been quoted or
something...

> Its a generic abstraction of taking the output from a task, saving it
> away somewhere and then being able to reuse a prebuilt version of it.

I know.  And this is clearly different to what package-based build-time
dependencies give.  Without sstate, you will not be able to reuse
prebuilt versions of any random task.  You can only reuse prebuilt
versions of packages (ie. do_package tasks).  In practice, I believe
that is sufficient for most needs.  But I don't see any showstoppers for
using something sstate together with package-based build-time
dependencies.  I am just saying that what I believes is the most
important value of sstate, more robus builds, is already provided the
package-based build-time dependencies.

> There is no dependency on a package manager, package format or special
> dependency formats. sstate simply looks for a prebuilt version (matching
> a checksum), uses it if present, otherwise builds from "scratch".
>
>> > I was thinking of situations like the Debian package autonamer, ie the
>> > thing that causes glibc-dev to come out named "libc6-dev.ipk" or similar
>> > depending on the soname of the library that was built.  It seems like
>> > this would be a bit awkward to deal with if your dependencies were
>> > specified purely in terms of output packages.
>> 
>> As OE-lite is not OE, we are currently not supporting such type of
>> package renaming.  Let's leave that to Debian guys to fight with ;-)
>
> What other features are you not supporting? Are you prepared to think
> about them or is that someone else's problem?

I am not sure what direction you are trying to push the discussion now.

I am not prepared to single-handedly (without a large $$$ sponsor) take
over complete responsibility for all of OE.

I am though prepared to think about them, and also prepared to work with
the OE community to find good solution to everybody else's problems.

I don't think it is totally fair to imply that I am being completely
ignorant to other people's problems.  I know we are ignoring a lot of OE
features in OE-lite, but that is the reason it is done as OE-lite and
not in OE.  I did not have time and manpower to implement what I needed
in the timeframes I had without ignoring those features.

I am though now approach you (OE community) trying to find out if we can
find a way to get some of the work done in OE-lite back to OE, just as
you have done several times with features developed in Poky going back
to OE.

Talking about that, with Poky being much more directly coupled with OE,
where will new features be developed in the future?  This discussion
seems to indicate that it is not going to be in OE as such.

/Esben



^ permalink raw reply	[flat|nested] 40+ messages in thread

* Re: Eliminating dependency race-conditions
  2011-03-22  9:01                         ` Esben Haabendal
@ 2011-03-23 20:31                           ` Frans Meulenbroeks
  0 siblings, 0 replies; 40+ messages in thread
From: Frans Meulenbroeks @ 2011-03-23 20:31 UTC (permalink / raw)
  To: openembedded-devel

Dear all,

pb and I had a discussion about this on irc earlier today.

Actually we feel there are three different issues in the proposal:
1. only stage those recipes that are in DEPENDS.
2. stage based on packages instead of recipes (so e.g. you can stage
only a lib package)
3. use tar (or a different tool) to stage things; or in other words,
decouple the storage format and the package format.

I think each of these has its merits. I also understand that
incremental introduction is desired above a big bang approach.

Let us look at the issues in detail:

1. only stage those recipes that are in DEPENDS.

This seems pretty useful as it gives consistent builds not depending
on whatever you have build before (and so making things deterministic)
This is especially useful when doing incremental builds. It can also
solve races.
Introducing it would mean changes in staging; incremental introduction
is possible if e.g. we add a flag PACKAGE_BASED_STAGING or so to the
recipes we want this to have (or add a special class or so).
Once all recipes are moved, the flag can be removed again.

Question is how efficient this can be. It mostly depends on how we
want to achieve the staging.
I'm definitely no expert, but we could e.g.
- create the staging area from earlier package images each time we
build it. Does not seem overly efficient
- stage each package in its own dir and create symlinks in the
required staging area.
- stage each pacakge in its own dir and add to -I and -L to only stage
the packages that are needed.

The staging area for a package to be build should probably be within
the work dir of the recipe otherwise we'll loose the capability to
build things in parallel

2. stage based on packages instead of recipes (so e.g. you can stage
only a lib package)

This gives more fine grained control. Not sure how much it brings and
what it will cost.
It might be possible to do it incrementally by e.g. having a keyword
PACKAGE_DEPENDS.
Question is if it is worth the effort

3. use tar (or a different tool) to stage things; or in other words,
decouple the storage format and the package format.

To me that is a completely different question only loosely related to
the above.
If staging is from packaged images, it would help though to have a
format that is fast to unpack.

Another, perhaps more interesting reason, would be to use a package
manager agnostic format and use that to build packages from (for the
package manager you want to have it).
I don't oversee the impact of this one though.


Your opinion on this proposal, improvement suggestions, discussion on
the best way forward etc is appreciated.

Frans



^ permalink raw reply	[flat|nested] 40+ messages in thread

end of thread, other threads:[~2011-03-23 20:33 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-11 11:04 [PATCH] net-snmp: disable libnl use Steffen Sledz
2011-03-11 13:05 ` Koen Kooi
2011-03-11 15:53   ` Steffen Sledz
2011-03-12  0:05     ` Khem Raj
2011-03-14  7:06       ` Steffen Sledz
2011-03-14 16:39         ` Khem Raj
2011-03-15  9:08 ` Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use) Esben Haabendal
2011-03-15 22:03   ` Denys Dmytriyenko
2011-03-16  5:47     ` Eliminating dependency race-conditions Esben Haabendal
2011-03-16  6:22       ` Python-native dependency in libxml2 Ahsan, Noor
2011-03-16  7:08         ` Khem Raj
2011-03-16  7:28           ` Frans Meulenbroeks
2011-03-16  7:43             ` Khem Raj
2011-03-16  8:00               ` Frans Meulenbroeks
2011-03-16  8:05             ` Martin Jansa
2011-03-16  8:38               ` Ahsan, Noor
2011-03-17 10:40                 ` Ahsan, Noor
2011-03-18  7:41                   ` Ahsan, Noor
2011-03-18  8:38                     ` Martin Jansa
2011-03-18  9:47                       ` Koen Kooi
2011-03-18  9:01                     ` Frans Meulenbroeks
2011-03-16  6:35       ` Eliminating dependency race-conditions Frans Meulenbroeks
2011-03-15 23:15   ` Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use) Graham Gower
2011-03-17 11:18   ` Phil Blundell
2011-03-17 14:43     ` Esben Haabendal
2011-03-17 14:52       ` Graeme Gregory
2011-03-17 15:24         ` Koen Kooi
2011-03-17 15:07       ` Phil Blundell
2011-03-17 17:52         ` Esben Haabendal
2011-03-17 18:05           ` Phil Blundell
2011-03-17 19:58             ` Esben Haabendal
2011-03-17 21:00               ` Phil Blundell
2011-03-18  5:29                 ` Esben Haabendal
2011-03-18 10:26                   ` Phil Blundell
2011-03-18 12:14                     ` Eliminating dependency race-conditions Esben Haabendal
2011-03-19  0:32                       ` Richard Purdie
2011-03-22  9:01                         ` Esben Haabendal
2011-03-23 20:31                           ` Frans Meulenbroeks
2011-03-19  0:18               ` Eliminating dependency race-conditions (was Re: [PATCH] net-snmp: disable libnl use) Richard Purdie
2011-03-22  9:00                 ` Eliminating dependency race-conditions Esben Haabendal

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.