All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] u-boot recipe updates
@ 2012-06-29 18:35 Paul Gortmaker
  2012-06-29 18:35 ` [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings Paul Gortmaker
                   ` (2 more replies)
  0 siblings, 3 replies; 36+ messages in thread
From: Paul Gortmaker @ 2012-06-29 18:35 UTC (permalink / raw)
  To: openembedded-core

These are the oe-core updates required so that yocto can do
a successful build of a working u-boot image for the mpc8315
reference BSP.

A follow up patch will be sent to the yocto list to enable
building it by default for the mpc8315-rdb.

---

Paul Gortmaker (3):
  u-boot: Don't make the -Os removal part of global settings.
  u-boot: make FILESDIR a shared setting.
  u-boot: make sure CROSS_COMPILE is passed into build

 meta/recipes-bsp/u-boot/u-boot.inc           |    4 +---
 meta/recipes-bsp/u-boot/u-boot_2011.03.bb    |    2 --
 meta/recipes-bsp/u-boot/u-boot_2011.06.bb    |    2 --
 meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb |    5 +++--
 4 files changed, 4 insertions(+), 9 deletions(-)

-- 
1.7.9.6




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

* [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings.
  2012-06-29 18:35 [PATCH 0/3] u-boot recipe updates Paul Gortmaker
@ 2012-06-29 18:35 ` Paul Gortmaker
  2012-06-29 21:55   ` Khem Raj
  2012-07-01 22:03   ` Saul Wold
  2012-06-29 18:35 ` [PATCH 2/3] u-boot: make FILESDIR a shared setting Paul Gortmaker
  2012-06-29 18:35 ` [PATCH 3/3] u-boot: make sure CROSS_COMPILE is passed into build Paul Gortmaker
  2 siblings, 2 replies; 36+ messages in thread
From: Paul Gortmaker @ 2012-06-29 18:35 UTC (permalink / raw)
  To: openembedded-core

We don't want to force everyone to be stripping the -Os
flags from their u-boot builds.  Remove it, since it pertains
to an old toolchain issue that is no longer relevant, and it
breaks the powerpc mpc8315.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---
 meta/recipes-bsp/u-boot/u-boot.inc |    3 ---
 1 file changed, 3 deletions(-)

diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
index a13eddc..0ed5fd9 100644
--- a/meta/recipes-bsp/u-boot/u-boot.inc
+++ b/meta/recipes-bsp/u-boot/u-boot.inc
@@ -7,9 +7,6 @@ inherit deploy
 
 PARALLEL_MAKE=""
 
-# GCC 4.5.1 builds unusable binaries using -Os, remove it from OPTFLAGS
-EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} OPTFLAGS='-O2'"
-
 python () {
 	if not d.getVar("UBOOT_MACHINE", True):
 		PN = d.getVar("PN", True)
-- 
1.7.9.6




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

* [PATCH 2/3] u-boot: make FILESDIR a shared setting.
  2012-06-29 18:35 [PATCH 0/3] u-boot recipe updates Paul Gortmaker
  2012-06-29 18:35 ` [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings Paul Gortmaker
@ 2012-06-29 18:35 ` Paul Gortmaker
  2012-06-29 18:35 ` [PATCH 3/3] u-boot: make sure CROSS_COMPILE is passed into build Paul Gortmaker
  2 siblings, 0 replies; 36+ messages in thread
From: Paul Gortmaker @ 2012-06-29 18:35 UTC (permalink / raw)
  To: openembedded-core

The setting is the same in all recipes, so move it to
the shared settings in u-boot.inc

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---
 meta/recipes-bsp/u-boot/u-boot.inc           |    1 +
 meta/recipes-bsp/u-boot/u-boot_2011.03.bb    |    2 --
 meta/recipes-bsp/u-boot/u-boot_2011.06.bb    |    2 --
 meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb |    2 --
 4 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
index 0ed5fd9..eed02b3 100644
--- a/meta/recipes-bsp/u-boot/u-boot.inc
+++ b/meta/recipes-bsp/u-boot/u-boot.inc
@@ -57,6 +57,7 @@ do_install () {
 }
 
 FILES_${PN} = "/boot"
+FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
 
 do_deploy () {
     install -d ${DEPLOYDIR}
diff --git a/meta/recipes-bsp/u-boot/u-boot_2011.03.bb b/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
index e99bc2c..ed38f54 100644
--- a/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
+++ b/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
@@ -10,8 +10,6 @@ LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb \
                     file://README;beginline=1;endline=22;md5=3a00ef51d3fc96e9d6c1bc4708ccd3b5"
 
-FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
-
 # This revision corresponds to the tag "v2011.03"
 # We use the revision in order to avoid having to fetch it from the repo during parse
 SRCREV = "19b54a701811220221fc4d5089a2bb18892018ca"
diff --git a/meta/recipes-bsp/u-boot/u-boot_2011.06.bb b/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
index 680401f..da61852 100644
--- a/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
+++ b/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
@@ -10,8 +10,6 @@ LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb \
                     file://README;beginline=1;endline=22;md5=5ba4218ac89af7846802d0348df3fb90"
 
-FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
-
 # This revision corresponds to the tag "v2011.06"
 # We use the revision in order to avoid having to fetch it from the repo during parse
 SRCREV = "b1af6f532e0d348b153d5c148369229d24af361a"
diff --git a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
index dbdc663..25cc8c9 100644
--- a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
+++ b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
@@ -14,8 +14,6 @@ DEFAULT_PREFERENCE = "-1"
 LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb"
 
-FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
-
 # This revision corresponds to the tag "v2012.04.01"
 # We use the revision in order to avoid having to fetch it from the
 # repo during parse
-- 
1.7.9.6




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

* [PATCH 3/3] u-boot: make sure CROSS_COMPILE is passed into build
  2012-06-29 18:35 [PATCH 0/3] u-boot recipe updates Paul Gortmaker
  2012-06-29 18:35 ` [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings Paul Gortmaker
  2012-06-29 18:35 ` [PATCH 2/3] u-boot: make FILESDIR a shared setting Paul Gortmaker
@ 2012-06-29 18:35 ` Paul Gortmaker
  2012-06-29 20:04   ` McClintock Matthew-B29882
  2 siblings, 1 reply; 36+ messages in thread
From: Paul Gortmaker @ 2012-06-29 18:35 UTC (permalink / raw)
  To: openembedded-core

The u-boot build system expects this, otherwise it will
choose from its own internal defaults.  In the case of
powerpc, we'll see it look for "ppc_8xx-gcc" and fail.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---
 meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
index 25cc8c9..b37fe01 100644
--- a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
+++ b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
@@ -26,3 +26,6 @@ SRC_URI = "git://git.denx.de/u-boot.git;branch=master;protocol=git"
 S = "${WORKDIR}/git"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+# u-boot expects this to indicate what toolchain to use
+EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}"
-- 
1.7.9.6




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

* Re: [PATCH 3/3] u-boot: make sure CROSS_COMPILE is passed into build
  2012-06-29 18:35 ` [PATCH 3/3] u-boot: make sure CROSS_COMPILE is passed into build Paul Gortmaker
@ 2012-06-29 20:04   ` McClintock Matthew-B29882
  0 siblings, 0 replies; 36+ messages in thread
From: McClintock Matthew-B29882 @ 2012-06-29 20:04 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Fri, Jun 29, 2012 at 1:35 PM, Paul Gortmaker
<paul.gortmaker@windriver.com> wrote:
> The u-boot build system expects this, otherwise it will
> choose from its own internal defaults.  In the case of
> powerpc, we'll see it look for "ppc_8xx-gcc" and fail.
>
> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> ---
>  meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb |    3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
> index 25cc8c9..b37fe01 100644
> --- a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
> +++ b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
> @@ -26,3 +26,6 @@ SRC_URI = "git://git.denx.de/u-boot.git;branch=master;protocol=git"
>  S = "${WORKDIR}/git"
>
>  PACKAGE_ARCH = "${MACHINE_ARCH}"
> +
> +# u-boot expects this to indicate what toolchain to use
> +EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}"

Isn't this already in u-boot.inc?

-M

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



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

* Re: [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings.
  2012-06-29 18:35 ` [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings Paul Gortmaker
@ 2012-06-29 21:55   ` Khem Raj
  2012-06-29 22:01     ` Wolfgang Denk
  2012-07-01 22:03   ` Saul Wold
  1 sibling, 1 reply; 36+ messages in thread
From: Khem Raj @ 2012-06-29 21:55 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

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

On Friday, June 29, 2012, Paul Gortmaker <paul.gortmaker@windriver.com>
wrote:
> We don't want to force everyone to be stripping the -Os
> flags from their u-boot builds.  Remove it, since it pertains
> to an old toolchain issue that is no longer relevant, and it
> breaks the powerpc mpc8315.

Its fixed that's right but I am curious how does it break with -O2
>
> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> ---
>  meta/recipes-bsp/u-boot/u-boot.inc |    3 ---
>  1 file changed, 3 deletions(-)
>
> diff --git a/meta/recipes-bsp/u-boot/u-boot.inc
b/meta/recipes-bsp/u-boot/u-boot.inc
> index a13eddc..0ed5fd9 100644
> --- a/meta/recipes-bsp/u-boot/u-boot.inc
> +++ b/meta/recipes-bsp/u-boot/u-boot.inc
> @@ -7,9 +7,6 @@ inherit deploy
>
>  PARALLEL_MAKE=""
>
> -# GCC 4.5.1 builds unusable binaries using -Os, remove it from OPTFLAGS
> -EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} OPTFLAGS='-O2'"
> -
>  python () {
>        if not d.getVar("UBOOT_MACHINE", True):
>                PN = d.getVar("PN", True)
> --
> 1.7.9.6
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>

[-- Attachment #2: Type: text/html, Size: 1809 bytes --]

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

* Re: [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings.
  2012-06-29 21:55   ` Khem Raj
@ 2012-06-29 22:01     ` Wolfgang Denk
  2012-06-29 22:11       ` Khem Raj
  0 siblings, 1 reply; 36+ messages in thread
From: Wolfgang Denk @ 2012-06-29 22:01 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer, Khem Raj

Dear Khem Raj,

In message <CAMKF1srGhdr8kAQ+wyYPnVUW6nq_BHHup22YcGqrFrroW7WHhQ@mail.gmail.com> you wrote:
>
> > We don't want to force everyone to be stripping the -Os
> > flags from their u-boot builds.  Remove it, since it pertains
> > to an old toolchain issue that is no longer relevant, and it
> > breaks the powerpc mpc8315.
> 
> Its fixed that's right but I am curious how does it break with -O2

-O2 causes much bigger memory footprint, so the code does not fit any
more in the memory map and/or flash sectors that are reserved for it.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de
HANDLE WITH EXTREME CARE:  This Product Contains  Minute Electrically
Charged  Particles  Moving  at  Velocities  in Excess of Five Hundred
Million Miles Per Hour.



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

* Re: [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings.
  2012-06-29 22:01     ` Wolfgang Denk
@ 2012-06-29 22:11       ` Khem Raj
  2012-06-29 23:34         ` Wolfgang Denk
  0 siblings, 1 reply; 36+ messages in thread
From: Khem Raj @ 2012-06-29 22:11 UTC (permalink / raw)
  To: Wolfgang Denk; +Cc: Patches and discussions about the oe-core layer

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

On Friday, June 29, 2012, Wolfgang Denk <wd@denx.de> wrote:
> Dear Khem Raj,
>
> In message <
CAMKF1srGhdr8kAQ+wyYPnVUW6nq_BHHup22YcGqrFrroW7WHhQ@mail.gmail.com> you
wrote:
>>
>> > We don't want to force everyone to be stripping the -Os
>> > flags from their u-boot builds.  Remove it, since it pertains
>> > to an old toolchain issue that is no longer relevant, and it
>> > breaks the powerpc mpc8315.
>>
>> Its fixed that's right but I am curious how does it break with -O2
>
> -O2 causes much bigger memory footprint, so the code does not fit any
> more in the memory map and/or flash sectors that are reserved for it.

Hmm interesting so we are living on edge here
Thanks for the info

-khem

>
> Best regards,
>
> Wolfgang Denk
>
> --
> DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
> HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
> Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de
> HANDLE WITH EXTREME CARE:  This Product Contains  Minute Electrically
> Charged  Particles  Moving  at  Velocities  in Excess of Five Hundred
> Million Miles Per Hour.
>

[-- Attachment #2: Type: text/html, Size: 1542 bytes --]

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

* Re: [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings.
  2012-06-29 22:11       ` Khem Raj
@ 2012-06-29 23:34         ` Wolfgang Denk
  2012-06-30  2:49           ` Khem Raj
  0 siblings, 1 reply; 36+ messages in thread
From: Wolfgang Denk @ 2012-06-29 23:34 UTC (permalink / raw)
  To: Khem Raj; +Cc: Patches and discussions about the oe-core layer

Dear Khem Raj,

In message <CAMKF1sp8=OreFKNds00t-rxoVVgWaraUTRzMNqVZdY13FXu2YA@mail.gmail.com> you wrote:
> 
> > -O2 causes much bigger memory footprint, so the code does not fit any
> > more in the memory map and/or flash sectors that are reserved for it.
> 
> Hmm interesting so we are living on edge here

Well, -O2 can mean some 30% bigger code size than -Os.  This hurts for
memory-footprint optimized code like a boot loader.  [It also hurts in
terms of exacution speed on most embedded systems...]

> Thanks for the info

You are welcome.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de
The IQ of the group is the lowest IQ of a member of the group divided
by the number of people in the group.



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

* Re: [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings.
  2012-06-29 23:34         ` Wolfgang Denk
@ 2012-06-30  2:49           ` Khem Raj
  0 siblings, 0 replies; 36+ messages in thread
From: Khem Raj @ 2012-06-30  2:49 UTC (permalink / raw)
  To: Wolfgang Denk; +Cc: Patches and discussions about the oe-core layer

On Fri, Jun 29, 2012 at 4:34 PM, Wolfgang Denk <wd@denx.de> wrote:
>
> Well, -O2 can mean some 30% bigger code size than -Os.  This hurts for
> memory-footprint optimized code like a boot loader.  [It also hurts in
> terms of exacution speed on most embedded systems...]

I understand



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

* Re: [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings.
  2012-06-29 18:35 ` [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings Paul Gortmaker
  2012-06-29 21:55   ` Khem Raj
@ 2012-07-01 22:03   ` Saul Wold
  2012-07-01 23:14     ` Khem Raj
                       ` (2 more replies)
  1 sibling, 3 replies; 36+ messages in thread
From: Saul Wold @ 2012-07-01 22:03 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 06/29/2012 11:35 AM, Paul Gortmaker wrote:
> We don't want to force everyone to be stripping the -Os
> flags from their u-boot builds.  Remove it, since it pertains
> to an old toolchain issue that is no longer relevant, and it
> breaks the powerpc mpc8315.
>
> Signed-off-by: Paul Gortmaker<paul.gortmaker@windriver.com>
> ---
>   meta/recipes-bsp/u-boot/u-boot.inc |    3 ---
>   1 file changed, 3 deletions(-)
>
> diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
> index a13eddc..0ed5fd9 100644
> --- a/meta/recipes-bsp/u-boot/u-boot.inc
> +++ b/meta/recipes-bsp/u-boot/u-boot.inc
> @@ -7,9 +7,6 @@ inherit deploy
>
>   PARALLEL_MAKE=""
>
> -# GCC 4.5.1 builds unusable binaries using -Os, remove it from OPTFLAGS
> -EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} OPTFLAGS='-O2'"
> -
>   python () {
>   	if not d.getVar("UBOOT_MACHINE", True):
>   		PN = d.getVar("PN", True)

Not sure what else changed, but I think you removed the TARGET_PREFIX or 
something else broke, but building with the Autobuilder, the following 
errors occur.

> ERROR: Function failed: do_compile (see /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/temp/log.do_compile.15139 for further information)
> ERROR: Logfile of failure stored in: /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/temp/log.do_compile.15139
> Log data follows:
> | DEBUG: Executing shell function do_compile
> | NOTE: make -e MAKEFLAGS= omap3_beagle_config
> | awk '(NF && $1 !~ /^#/) { print $1 ": " $1 "_config; $(MAKE)" }' boards.cfg > .boards.depend
> | Configuring for omap3_beagle board...
> | NOTE: make -e MAKEFLAGS= all
> | Generating include/autoconf.mk
> | Generating include/autoconf.mk.dep
> | arm-poky-linux-gnueabi-gcc  -march=armv7-a -fno-tree-vectorize     -mthumb-interwork -mfloat-abi=softfp -mfpu=neon -mtune=cortex-a8 --sysroot=/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/sysroots/beagleboard -DDO_DEPS_ONLY \
> | 	-g  -Os   -fno-common -ffixed-r8 -msoft-float   -D__KERNEL__ -DCONFIG_SYS_TEXT_BASE=0x80008000 -I/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -fno-builtin -ffreestanding -nostdinc -isystem /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/sysroots/x86_64-linux/usr/lib/armv7a-vfp-neon-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.7.2/include -pipe  -DCONFIG_ARM -D__ARM__ -marm  -mabi=aapcs-linux -mno-thumb-interwork -march=armv5 -Wall -Wstrict-prototypes -fno-stack-protector   \
> | 	-o lib/asm-offsets.s lib/asm-offsets.c -c -S
> | Generating include/generated/generic-asm-offsets.h
> | tools/scripts/make-asm-offsets lib/asm-offsets.s include/generated/generic-asm-offsets.h
> | for dir in tools examples/standalone examples/api arch/arm/cpu/armv7 /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/arch/arm/cpu/armv7/ ; do \
> | 		make -C $dir _depend ; done
> | make[1]: arm-linux-gcc: Command not found
> | make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools'
> | make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools'
> | make[1]: arm-linux-gcc: Command not found
> | make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools'
> | make[1]: Nothing to be done for `_depend'.
> | make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools'
> | make[1]: arm-linux-gcc: Command not found
> | make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/standalone'
> | /bin/sh: arm-linux-gcc: command not found
> | dirname: missing operand
> | Try `dirname --help' for more information.
> | /bin/sh: line 2: arm-linux-gcc: command not found
> | /bin/sh: line 2: arm-linux-gcc: command not found
> | make[1]: *** No rule to make target `.depend', needed by `_depend'.  Stop.
> | make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/standalone'
> | make[1]: arm-linux-gcc: Command not found
> | make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/api'
> | /bin/sh: arm-linux-gcc: command not found
> | dirname: missing operand
> | Try `dirname --help' for more information.
> | make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/api'
> | make[1]: arm-linux-gcc: Command not found
> | make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/api'
> | /bin/sh: arm-linux-gcc: command not found
> | dirname: missing operand
> | Try `dirname --help' for more information.
> | make[1]: Nothing to be done for `_depend'.
> | make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/api'
> | make[1]: arm-linux-gcc: Command not found
> | make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/arch/arm/cpu/armv7'
> | /bin/sh: line 2: arm-linux-gcc: command not found
> | /bin/sh: line 2: arm-linux-gcc: command not found
> | /bin/sh: line 2: arm-linux-gcc: command not found
> | make[1]: *** No rule to make target `.depend', needed by `_depend'.  Stop.
> | make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/arch/arm/cpu/armv7'
> | make[1]: arm-linux-gcc: Command not found
> | make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/arch/arm/cpu/armv7'
> | make[1]: Nothing to be done for `_depend'.
> | make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/arch/arm/cpu/armv7'
> | make -C tools all
> | make[1]: arm-linux-gcc: Command not found
> | make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools'
> | gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011
.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic -c -o crc32.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/crc32.c
> | gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011
.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -c -o env_embedded.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/common/env_embedded.c
> | gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06
+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic   -o envcrc.o envcrc.c -c
> | gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011
.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic -c -o sha1.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/sha1.c
> | gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06
+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic  -o envcrc crc32.o env_embedded.o envcrc.o sha1.o
> | gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06
+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic   -o img2srec.o img2srec.c -c
> | gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06
+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic  -o img2srec img2srec.o
> | strip img2srec
> | gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06
+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES   -o default_image.o default_image.c -c
> | gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06
+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES   -o fit_image.o fit_image.c -c
> | gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011
.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -c -o image.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/common/image.c
> | gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06
+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES   -o imximage.o imximage.c -c
> | gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06
+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES   -o kwbimage.o kwbimage.c -c
> | gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011
.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic -c -o md5.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/md5.c
> | gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06
+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES   -o mkimage.o mkimage.c -c
> | gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06
+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES   -o os_support.o os_support.c -c
> | gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011
.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -c -o fdt.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt/fdt.c
> | gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011
.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -c -o fdt_ro.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt/fdt_ro.c
> | gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011
.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -c -o fdt_rw.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt/fdt_rw.c
> | gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011
.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -c -o fdt_strerror.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt/fdt_strerror.c
> | gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011
.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -c -o fdt_wip.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt/fdt_wip.c
> | gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06
+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic  -o mkimage crc32.o default_image.o fit_image.o image.o imximage.o kwbimage.o md5.o mkimage.o os_support.o sha1.o fdt.o fdt_ro.o fdt_rw.o fdt_strerror.o fdt_wip.o
> | strip mkimage
> | make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools'
> | make -C examples/standalone all
> | make[1]: arm-linux-gcc: Command not found
> | make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/standalone'
> | /bin/sh: arm-linux-gcc: command not found
> | dirname: missing operand
> | Try `dirname --help' for more information.
> | arm-linux-gcc  -g  -Os   -fno-common -ffixed-r8 -msoft-float   -D__KERNEL__ -DCONFIG_SYS_TEXT_BASE=0x80008000 -I/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -fno-builtin -ffreestanding -nostdinc -isystem  -pipe  -DCONFIG_ARM -D__ARM__         -march=armv5 -Wall -Wstrict-prototypes     -o hello_world.o hello_world.c -c
> | make[1]: arm-linux-gcc: Command not found
> | make[1]: *** [hello_world.o] Error 127
> | make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/standalone'
> | make: *** [examples/standalone] Error 2
> | ERROR: oe_runmake failed
> | ERROR: Function failed: do_compile (see /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/temp/log.do_compile.15139 for further information)
> NOTE: package u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1: task do_compile: Failed
> ERROR: Task 77 (/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/meta/recipes-bsp/u-boot/u-boot_2011.06.bb, do_compile) failed with exit code '1'


Can you verify if your change or the other one causes this issue.

Thanks
	Sau!



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

* Re: [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings.
  2012-07-01 22:03   ` Saul Wold
@ 2012-07-01 23:14     ` Khem Raj
  2012-07-02  3:04     ` Paul Gortmaker
  2012-07-02  5:44     ` [PATCHv2 0/3] u-boot recipe updates Paul Gortmaker
  2 siblings, 0 replies; 36+ messages in thread
From: Khem Raj @ 2012-07-01 23:14 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Sun, Jul 1, 2012 at 3:03 PM, Saul Wold <sgw@linux.intel.com> wrote:
>>
>> -# GCC 4.5.1 builds unusable binaries using -Os, remove it from OPTFLAGS
>> -EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} OPTFLAGS='-O2'"
>> -

instead of deleting it I think this should be

EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}"

>>   python () {
>>         if not d.getVar("UBOOT_MACHINE", True):
>>                 PN = d.getVar("PN", True)
>
>
> Not sure what else changed, but I think you removed the TARGET_PREFIX or
> something else broke, but building with the Autobuilder, the following
> errors occur.
>



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

* Re: [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings.
  2012-07-01 22:03   ` Saul Wold
  2012-07-01 23:14     ` Khem Raj
@ 2012-07-02  3:04     ` Paul Gortmaker
  2012-07-02  5:44     ` [PATCHv2 0/3] u-boot recipe updates Paul Gortmaker
  2 siblings, 0 replies; 36+ messages in thread
From: Paul Gortmaker @ 2012-07-02  3:04 UTC (permalink / raw)
  To: Saul Wold; +Cc: Patches and discussions about the oe-core layer

[Re: [OE-core] [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings.] On 01/07/2012 (Sun 15:03) Saul Wold wrote:

> On 06/29/2012 11:35 AM, Paul Gortmaker wrote:
> >We don't want to force everyone to be stripping the -Os
> >flags from their u-boot builds.  Remove it, since it pertains
> >to an old toolchain issue that is no longer relevant, and it
> >breaks the powerpc mpc8315.
> >
> >Signed-off-by: Paul Gortmaker<paul.gortmaker@windriver.com>
> >---
> >  meta/recipes-bsp/u-boot/u-boot.inc |    3 ---
> >  1 file changed, 3 deletions(-)
> >
> >diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
> >index a13eddc..0ed5fd9 100644
> >--- a/meta/recipes-bsp/u-boot/u-boot.inc
> >+++ b/meta/recipes-bsp/u-boot/u-boot.inc
> >@@ -7,9 +7,6 @@ inherit deploy
> >
> >  PARALLEL_MAKE=""
> >
> >-# GCC 4.5.1 builds unusable binaries using -Os, remove it from OPTFLAGS
> >-EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} OPTFLAGS='-O2'"
> >-
> >  python () {
> >  	if not d.getVar("UBOOT_MACHINE", True):
> >  		PN = d.getVar("PN", True)
> 
> Not sure what else changed, but I think you removed the
> TARGET_PREFIX or something else broke, but building with the
> Autobuilder, the following errors occur.

Yes, it is because an older version of the patches which I did several
months ago moved the above line to be recipe/version specific (since
I didn't know which older versions of u-boot were relying on the O2).

But the feedback from back then just said scrap the O2.  So I ended
up with TARGET_PREFIX in the new recipe and not in the old ones.
Let me resend v2 with TARGET_PREFIX remaining in the shared inc file,
and after testing the omap3_beagle that failed for you.

Sorry about that.
Paul.
--

> 
> >ERROR: Function failed: do_compile (see /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/temp/log.do_compile.15139 for further information)
> >ERROR: Logfile of failure stored in: /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/temp/log.do_compile.15139
> >Log data follows:
> >| DEBUG: Executing shell function do_compile
> >| NOTE: make -e MAKEFLAGS= omap3_beagle_config
> >| awk '(NF && $1 !~ /^#/) { print $1 ": " $1 "_config; $(MAKE)" }' boards.cfg > .boards.depend
> >| Configuring for omap3_beagle board...
> >| NOTE: make -e MAKEFLAGS= all
> >| Generating include/autoconf.mk
> >| Generating include/autoconf.mk.dep
> >| arm-poky-linux-gnueabi-gcc  -march=armv7-a -fno-tree-vectorize     -mthumb-interwork -mfloat-abi=softfp -mfpu=neon -mtune=cortex-a8 --sysroot=/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/sysroots/beagleboard -DDO_DEPS_ONLY \
> >| 	-g  -Os   -fno-common -ffixed-r8 -msoft-float   -D__KERNEL__ -DCONFIG_SYS_TEXT_BASE=0x80008000 -I/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -fno-builtin -ffreestanding -nostdinc -isystem /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/sysroots/x86_64-linux/usr/lib/armv7a-vfp-neon-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.7.2/include -pipe  -DCONFIG_ARM -D__ARM__ -marm  -mabi=aapcs-linux -mno-thumb-interwork -march=armv5 -Wall -Wstrict-prototypes -fno-stack-protector   \
> >| 	-o lib/asm-offsets.s lib/asm-offsets.c -c -S
> >| Generating include/generated/generic-asm-offsets.h
> >| tools/scripts/make-asm-offsets lib/asm-offsets.s include/generated/generic-asm-offsets.h
> >| for dir in tools examples/standalone examples/api arch/arm/cpu/armv7 /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/arch/arm/cpu/armv7/ ; do \
> >| 		make -C $dir _depend ; done
> >| make[1]: arm-linux-gcc: Command not found
> >| make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools'
> >| make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools'
> >| make[1]: arm-linux-gcc: Command not found
> >| make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools'
> >| make[1]: Nothing to be done for `_depend'.
> >| make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools'
> >| make[1]: arm-linux-gcc: Command not found
> >| make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/standalone'
> >| /bin/sh: arm-linux-gcc: command not found
> >| dirname: missing operand
> >| Try `dirname --help' for more information.
> >| /bin/sh: line 2: arm-linux-gcc: command not found
> >| /bin/sh: line 2: arm-linux-gcc: command not found
> >| make[1]: *** No rule to make target `.depend', needed by `_depend'.  Stop.
> >| make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/standalone'
> >| make[1]: arm-linux-gcc: Command not found
> >| make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/api'
> >| /bin/sh: arm-linux-gcc: command not found
> >| dirname: missing operand
> >| Try `dirname --help' for more information.
> >| make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/api'
> >| make[1]: arm-linux-gcc: Command not found
> >| make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/api'
> >| /bin/sh: arm-linux-gcc: command not found
> >| dirname: missing operand
> >| Try `dirname --help' for more information.
> >| make[1]: Nothing to be done for `_depend'.
> >| make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/api'
> >| make[1]: arm-linux-gcc: Command not found
> >| make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/arch/arm/cpu/armv7'
> >| /bin/sh: line 2: arm-linux-gcc: command not found
> >| /bin/sh: line 2: arm-linux-gcc: command not found
> >| /bin/sh: line 2: arm-linux-gcc: command not found
> >| make[1]: *** No rule to make target `.depend', needed by `_depend'.  Stop.
> >| make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/arch/arm/cpu/armv7'
> >| make[1]: arm-linux-gcc: Command not found
> >| make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/arch/arm/cpu/armv7'
> >| make[1]: Nothing to be done for `_depend'.
> >| make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/arch/arm/cpu/armv7'
> >| make -C tools all
> >| make[1]: arm-linux-gcc: Command not found
> >| make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools'
> >| gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-!
> boot-v2011
> .06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic -c -o crc32.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/crc32.c
> >| gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-!
> boot-v2011
> .06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -c -o env_embedded.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/common/env_embedded.c
> >| gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boo!
> t-v2011.06
> +git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic   -o envcrc.o envcrc.c -c
> >| gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-!
> boot-v2011
> .06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic -c -o sha1.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/sha1.c
> >| gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boo!
> t-v2011.06
> +git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic  -o envcrc crc32.o env_embedded.o envcrc.o sha1.o
> >| gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boo!
> t-v2011.06
> +git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic   -o img2srec.o img2srec.c -c
> >| gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boo!
> t-v2011.06
> +git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic  -o img2srec img2srec.o
> >| strip img2srec
> >| gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boo!
> t-v2011.06
> +git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES   -o default_image.o default_image.c -c
> >| gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boo!
> t-v2011.06
> +git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES   -o fit_image.o fit_image.c -c
> >| gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-!
> boot-v2011
> .06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -c -o image.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/common/image.c
> >| gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boo!
> t-v2011.06
> +git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES   -o imximage.o imximage.c -c
> >| gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boo!
> t-v2011.06
> +git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES   -o kwbimage.o kwbimage.c -c
> >| gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-!
> boot-v2011
> .06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic -c -o md5.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/md5.c
> >| gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boo!
> t-v2011.06
> +git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES   -o mkimage.o mkimage.c -c
> >| gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boo!
> t-v2011.06
> +git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES   -o os_support.o os_support.c -c
> >| gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-!
> boot-v2011
> .06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -c -o fdt.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt/fdt.c
> >| gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-!
> boot-v2011
> .06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -c -o fdt_ro.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt/fdt_ro.c
> >| gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-!
> boot-v2011
> .06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -c -o fdt_rw.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt/fdt_rw.c
> >| gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-!
> boot-v2011
> .06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -c -o fdt_strerror.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt/fdt_strerror.c
> >| gcc -g -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-!
> boot-v2011
> .06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -c -o fdt_wip.o /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt/fdt_wip.c
> >| gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include2 -idirafter /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/lib/libfdt -I /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boo!
> t-v2011.06
> +git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools -DCONFIG_SYS_TEXT_BASE=0x80008000 -DUSE_HOSTCC -D__KERNEL_STRICT_NAMES -pedantic  -o mkimage crc32.o default_image.o fit_image.o image.o imximage.o kwbimage.o md5.o mkimage.o os_support.o sha1.o fdt.o fdt_ro.o fdt_rw.o fdt_strerror.o fdt_wip.o
> >| strip mkimage
> >| make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/tools'
> >| make -C examples/standalone all
> >| make[1]: arm-linux-gcc: Command not found
> >| make[1]: Entering directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/standalone'
> >| /bin/sh: arm-linux-gcc: command not found
> >| dirname: missing operand
> >| Try `dirname --help' for more information.
> >| arm-linux-gcc  -g  -Os   -fno-common -ffixed-r8 -msoft-float   -D__KERNEL__ -DCONFIG_SYS_TEXT_BASE=0x80008000 -I/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/include -fno-builtin -ffreestanding -nostdinc -isystem  -pipe  -DCONFIG_ARM -D__ARM__         -march=armv5 -Wall -Wstrict-prototypes     -o hello_world.o hello_world.c -c
> >| make[1]: arm-linux-gcc: Command not found
> >| make[1]: *** [hello_world.o] Error 127
> >| make[1]: Leaving directory `/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/git/examples/standalone'
> >| make: *** [examples/standalone] Error 2
> >| ERROR: oe_runmake failed
> >| ERROR: Function failed: do_compile (see /srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/build/tmp/work/beagleboard-poky-linux-gnueabi/u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1/temp/log.do_compile.15139 for further information)
> >NOTE: package u-boot-v2011.06+git14+b1af6f532e0d348b153d5c148369229d24af361a-r1: task do_compile: Failed
> >ERROR: Task 77 (/srv/home/pokybuild/yocto-autobuilder/yocto-slave/nightly-arm/build/meta/recipes-bsp/u-boot/u-boot_2011.06.bb, do_compile) failed with exit code '1'
> 
> 
> Can you verify if your change or the other one causes this issue.
> 
> Thanks
> 	Sau!



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

* [PATCHv2 0/3] u-boot recipe updates
  2012-07-01 22:03   ` Saul Wold
  2012-07-01 23:14     ` Khem Raj
  2012-07-02  3:04     ` Paul Gortmaker
@ 2012-07-02  5:44     ` Paul Gortmaker
  2012-07-02  5:44       ` [PATCHv2 1/3] u-boot: Don't make the -Os removal part of global settings Paul Gortmaker
                         ` (3 more replies)
  2 siblings, 4 replies; 36+ messages in thread
From: Paul Gortmaker @ 2012-07-02  5:44 UTC (permalink / raw)
  To: openembedded-core

These are the oe-core updates required so that yocto can do
a successful build of a working u-boot image for the mpc8315
reference BSP.

In v2, I've fixed up the issue where TARGET_PREFIX accidentally became
specific to the one single recipe.  That made the 3/3 patch in v1 no
longer required.  However, when build testing, I noticed that we
were needlessly clobbering PARALLEL_MAKE for u-boot, which is not
at all required, and just slows down builds.  So a new patch is
added to fix that, and we still have three total.

I've built for the beagleboard with -j8 (twice), and the same for
the 8315 BSP.  I've also always built u-boot with -j10 or greater
for countless powerpc images I've made in the last 1/2 dozen years.
Looking at the git history, it appears this just came in with some
large import, versus being an actively chosen individual setting.

The 8315 specific patch that was sent to the yocto list earlier to
enable building it (u-boot.bin) by default is unchanged, but I can
resend that if it helps somehow.

Paul.
---

Paul Gortmaker (3):
  u-boot: Don't make the -Os removal part of global settings.
  u-boot: make FILESDIR a shared setting.
  u-boot: do not clobber PARALLEL_MAKE setting

 meta/recipes-bsp/u-boot/u-boot.inc           |    6 ++----
 meta/recipes-bsp/u-boot/u-boot_2011.03.bb    |    2 --
 meta/recipes-bsp/u-boot/u-boot_2011.06.bb    |    2 --
 meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb |    2 --
 4 files changed, 2 insertions(+), 10 deletions(-)

-- 
1.7.9.6




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

* [PATCHv2 1/3] u-boot: Don't make the -Os removal part of global settings.
  2012-07-02  5:44     ` [PATCHv2 0/3] u-boot recipe updates Paul Gortmaker
@ 2012-07-02  5:44       ` Paul Gortmaker
  2012-07-02 11:23         ` Otavio Salvador
  2012-07-02  5:44       ` [PATCHv2 2/3] u-boot: make FILESDIR a shared setting Paul Gortmaker
                         ` (2 subsequent siblings)
  3 siblings, 1 reply; 36+ messages in thread
From: Paul Gortmaker @ 2012-07-02  5:44 UTC (permalink / raw)
  To: openembedded-core

We don't want to force everyone to be stripping the -Os
flags from their u-boot builds.  Remove it, since it pertains
to an old toolchain issue that is no longer relevant, and it
breaks the powerpc mpc8315.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---
 meta/recipes-bsp/u-boot/u-boot.inc |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
index a13eddc..5de3583 100644
--- a/meta/recipes-bsp/u-boot/u-boot.inc
+++ b/meta/recipes-bsp/u-boot/u-boot.inc
@@ -7,8 +7,7 @@ inherit deploy
 
 PARALLEL_MAKE=""
 
-# GCC 4.5.1 builds unusable binaries using -Os, remove it from OPTFLAGS
-EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} OPTFLAGS='-O2'"
+EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}"
 
 python () {
 	if not d.getVar("UBOOT_MACHINE", True):
-- 
1.7.9.6




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

* [PATCHv2 2/3] u-boot: make FILESDIR a shared setting.
  2012-07-02  5:44     ` [PATCHv2 0/3] u-boot recipe updates Paul Gortmaker
  2012-07-02  5:44       ` [PATCHv2 1/3] u-boot: Don't make the -Os removal part of global settings Paul Gortmaker
@ 2012-07-02  5:44       ` Paul Gortmaker
  2012-07-02 11:24         ` Otavio Salvador
  2012-07-02  5:44       ` [PATCHv2 3/3] u-boot: do not clobber PARALLEL_MAKE setting Paul Gortmaker
  2012-07-03 17:48       ` [PATCHv2 0/3] u-boot recipe updates Saul Wold
  3 siblings, 1 reply; 36+ messages in thread
From: Paul Gortmaker @ 2012-07-02  5:44 UTC (permalink / raw)
  To: openembedded-core

The setting is the same in all recipes, so move it to
the shared settings in u-boot.inc

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---
 meta/recipes-bsp/u-boot/u-boot.inc           |    1 +
 meta/recipes-bsp/u-boot/u-boot_2011.03.bb    |    2 --
 meta/recipes-bsp/u-boot/u-boot_2011.06.bb    |    2 --
 meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb |    2 --
 4 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
index 5de3583..3226bd4 100644
--- a/meta/recipes-bsp/u-boot/u-boot.inc
+++ b/meta/recipes-bsp/u-boot/u-boot.inc
@@ -59,6 +59,7 @@ do_install () {
 }
 
 FILES_${PN} = "/boot"
+FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
 
 do_deploy () {
     install -d ${DEPLOYDIR}
diff --git a/meta/recipes-bsp/u-boot/u-boot_2011.03.bb b/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
index e99bc2c..ed38f54 100644
--- a/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
+++ b/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
@@ -10,8 +10,6 @@ LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb \
                     file://README;beginline=1;endline=22;md5=3a00ef51d3fc96e9d6c1bc4708ccd3b5"
 
-FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
-
 # This revision corresponds to the tag "v2011.03"
 # We use the revision in order to avoid having to fetch it from the repo during parse
 SRCREV = "19b54a701811220221fc4d5089a2bb18892018ca"
diff --git a/meta/recipes-bsp/u-boot/u-boot_2011.06.bb b/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
index 680401f..da61852 100644
--- a/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
+++ b/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
@@ -10,8 +10,6 @@ LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb \
                     file://README;beginline=1;endline=22;md5=5ba4218ac89af7846802d0348df3fb90"
 
-FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
-
 # This revision corresponds to the tag "v2011.06"
 # We use the revision in order to avoid having to fetch it from the repo during parse
 SRCREV = "b1af6f532e0d348b153d5c148369229d24af361a"
diff --git a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
index dbdc663..25cc8c9 100644
--- a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
+++ b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
@@ -14,8 +14,6 @@ DEFAULT_PREFERENCE = "-1"
 LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb"
 
-FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
-
 # This revision corresponds to the tag "v2012.04.01"
 # We use the revision in order to avoid having to fetch it from the
 # repo during parse
-- 
1.7.9.6




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

* [PATCHv2 3/3] u-boot: do not clobber PARALLEL_MAKE setting
  2012-07-02  5:44     ` [PATCHv2 0/3] u-boot recipe updates Paul Gortmaker
  2012-07-02  5:44       ` [PATCHv2 1/3] u-boot: Don't make the -Os removal part of global settings Paul Gortmaker
  2012-07-02  5:44       ` [PATCHv2 2/3] u-boot: make FILESDIR a shared setting Paul Gortmaker
@ 2012-07-02  5:44       ` Paul Gortmaker
  2012-07-02 11:25         ` Otavio Salvador
  2012-07-03 17:48       ` [PATCHv2 0/3] u-boot recipe updates Saul Wold
  3 siblings, 1 reply; 36+ messages in thread
From: Paul Gortmaker @ 2012-07-02  5:44 UTC (permalink / raw)
  To: openembedded-core

The u-boot tree is fully capable of parallel builds, so this
setting should not exist as a blanket setting for all of the
recipes.  Going forward, if there is a parallelism issue
in u-boot, it needs to be reported and fixed there, and not
with the "make -j1" band-aid approach.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---
 meta/recipes-bsp/u-boot/u-boot.inc |    2 --
 1 file changed, 2 deletions(-)

diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
index 3226bd4..3df7418 100644
--- a/meta/recipes-bsp/u-boot/u-boot.inc
+++ b/meta/recipes-bsp/u-boot/u-boot.inc
@@ -5,8 +5,6 @@ PROVIDES = "virtual/bootloader"
 
 inherit deploy
 
-PARALLEL_MAKE=""
-
 EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}"
 
 python () {
-- 
1.7.9.6




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

* Re: [PATCHv2 1/3] u-boot: Don't make the -Os removal part of global settings.
  2012-07-02  5:44       ` [PATCHv2 1/3] u-boot: Don't make the -Os removal part of global settings Paul Gortmaker
@ 2012-07-02 11:23         ` Otavio Salvador
  0 siblings, 0 replies; 36+ messages in thread
From: Otavio Salvador @ 2012-07-02 11:23 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Mon, Jul 2, 2012 at 2:44 AM, Paul Gortmaker
<paul.gortmaker@windriver.com> wrote:
> We don't want to force everyone to be stripping the -Os
> flags from their u-boot builds.  Remove it, since it pertains
> to an old toolchain issue that is no longer relevant, and it
> breaks the powerpc mpc8315.
>
> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>

Acked-by: Otavio Salvador <otavio@ossystems.com.br>

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br



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

* Re: [PATCHv2 2/3] u-boot: make FILESDIR a shared setting.
  2012-07-02  5:44       ` [PATCHv2 2/3] u-boot: make FILESDIR a shared setting Paul Gortmaker
@ 2012-07-02 11:24         ` Otavio Salvador
  2012-07-02 13:33           ` Chris Larson
  0 siblings, 1 reply; 36+ messages in thread
From: Otavio Salvador @ 2012-07-02 11:24 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Mon, Jul 2, 2012 at 2:44 AM, Paul Gortmaker
<paul.gortmaker@windriver.com> wrote:
> The setting is the same in all recipes, so move it to
> the shared settings in u-boot.inc
>
> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>

Acked-by: Otavio Salvador <otavio@ossystems.com.br>

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br



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

* Re: [PATCHv2 3/3] u-boot: do not clobber PARALLEL_MAKE setting
  2012-07-02  5:44       ` [PATCHv2 3/3] u-boot: do not clobber PARALLEL_MAKE setting Paul Gortmaker
@ 2012-07-02 11:25         ` Otavio Salvador
  0 siblings, 0 replies; 36+ messages in thread
From: Otavio Salvador @ 2012-07-02 11:25 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Mon, Jul 2, 2012 at 2:44 AM, Paul Gortmaker
<paul.gortmaker@windriver.com> wrote:
> The u-boot tree is fully capable of parallel builds, so this
> setting should not exist as a blanket setting for all of the
> recipes.  Going forward, if there is a parallelism issue
> in u-boot, it needs to be reported and fixed there, and not
> with the "make -j1" band-aid approach.
>
> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>

Acked-by: Otavio Salvador <otavio@ossystems.com.br>

I've been building it with -j12 for long time, it does work :-)

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br



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

* Re: [PATCHv2 2/3] u-boot: make FILESDIR a shared setting.
  2012-07-02 11:24         ` Otavio Salvador
@ 2012-07-02 13:33           ` Chris Larson
  2012-07-02 16:42             ` Otavio Salvador
  0 siblings, 1 reply; 36+ messages in thread
From: Chris Larson @ 2012-07-02 13:33 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Mon, Jul 2, 2012 at 4:24 AM, Otavio Salvador <otavio@ossystems.com.br> wrote:
> On Mon, Jul 2, 2012 at 2:44 AM, Paul Gortmaker
> <paul.gortmaker@windriver.com> wrote:
>> The setting is the same in all recipes, so move it to
>> the shared settings in u-boot.inc
>>
>> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
>
> Acked-by: Otavio Salvador <otavio@ossystems.com.br>

It shouldn't be using the old, legacy FILESDIR mechanism at all.
-- 
Christopher Larson



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

* Re: [PATCHv2 2/3] u-boot: make FILESDIR a shared setting.
  2012-07-02 13:33           ` Chris Larson
@ 2012-07-02 16:42             ` Otavio Salvador
  2012-07-02 19:03               ` Richard Purdie
  0 siblings, 1 reply; 36+ messages in thread
From: Otavio Salvador @ 2012-07-02 16:42 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Mon, Jul 2, 2012 at 10:33 AM, Chris Larson <clarson@kergoth.com> wrote:
> On Mon, Jul 2, 2012 at 4:24 AM, Otavio Salvador <otavio@ossystems.com.br> wrote:
>> On Mon, Jul 2, 2012 at 2:44 AM, Paul Gortmaker
>> <paul.gortmaker@windriver.com> wrote:
>>> The setting is the same in all recipes, so move it to
>>> the shared settings in u-boot.inc
>>>
>>> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
>>
>> Acked-by: Otavio Salvador <otavio@ossystems.com.br>
>
> It shouldn't be using the old, legacy FILESDIR mechanism at all.

Indeed; grepping for it shows nothing.

This can be removed :-D

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br



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

* Re: [PATCHv2 2/3] u-boot: make FILESDIR a shared setting.
  2012-07-02 16:42             ` Otavio Salvador
@ 2012-07-02 19:03               ` Richard Purdie
  0 siblings, 0 replies; 36+ messages in thread
From: Richard Purdie @ 2012-07-02 19:03 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Mon, 2012-07-02 at 13:42 -0300, Otavio Salvador wrote:
> On Mon, Jul 2, 2012 at 10:33 AM, Chris Larson <clarson@kergoth.com> wrote:
> > On Mon, Jul 2, 2012 at 4:24 AM, Otavio Salvador <otavio@ossystems.com.br> wrote:
> >> On Mon, Jul 2, 2012 at 2:44 AM, Paul Gortmaker
> >> <paul.gortmaker@windriver.com> wrote:
> >>> The setting is the same in all recipes, so move it to
> >>> the shared settings in u-boot.inc
> >>>
> >>> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> >>
> >> Acked-by: Otavio Salvador <otavio@ossystems.com.br>
> >
> > It shouldn't be using the old, legacy FILESDIR mechanism at all.
> 
> Indeed; grepping for it shows nothing.
> 
> This can be removed :-D

This isn't what Chris meant. BitBake handles FILESDIR, not the metadata
(and grepping bitbake will show a result).

I'm tempted to take the patch on the grounds that a single reference to
fix is probably easier than several other references. The replacement is
probably something like:

FILESPATH =. "${FILE_DIRNAME}/u-boot-git/${MACHINE}:"

We should really get on, replace the remaining references and complete
removal of FILESDIR.

Cheers,

Richard







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

* Re: [PATCHv2 0/3] u-boot recipe updates
  2012-07-02  5:44     ` [PATCHv2 0/3] u-boot recipe updates Paul Gortmaker
                         ` (2 preceding siblings ...)
  2012-07-02  5:44       ` [PATCHv2 3/3] u-boot: do not clobber PARALLEL_MAKE setting Paul Gortmaker
@ 2012-07-03 17:48       ` Saul Wold
  2012-07-04 14:12         ` Paul Gortmaker
  2012-07-04 15:23         ` [PATCH] u-boot: make FILESDIR a shared setting via FILESPATH Paul Gortmaker
  3 siblings, 2 replies; 36+ messages in thread
From: Saul Wold @ 2012-07-03 17:48 UTC (permalink / raw)
  To: Paul Gortmaker; +Cc: openembedded-core

On 07/01/2012 10:44 PM, Paul Gortmaker wrote:
> These are the oe-core updates required so that yocto can do
> a successful build of a working u-boot image for the mpc8315
> reference BSP.
>
> In v2, I've fixed up the issue where TARGET_PREFIX accidentally became
> specific to the one single recipe.  That made the 3/3 patch in v1 no
> longer required.  However, when build testing, I noticed that we
> were needlessly clobbering PARALLEL_MAKE for u-boot, which is not
> at all required, and just slows down builds.  So a new patch is
> added to fix that, and we still have three total.
>
> I've built for the beagleboard with -j8 (twice), and the same for
> the 8315 BSP.  I've also always built u-boot with -j10 or greater
> for countless powerpc images I've made in the last 1/2 dozen years.
> Looking at the git history, it appears this just came in with some
> large import, versus being an actively chosen individual setting.
>
> The 8315 specific patch that was sent to the yocto list earlier to
> enable building it (u-boot.bin) by default is unchanged, but I can
> resend that if it helps somehow.
>
> Paul.
> ---
>
> Paul Gortmaker (3):
>    u-boot: Don't make the -Os removal part of global settings.
>    u-boot: make FILESDIR a shared setting.
>    u-boot: do not clobber PARALLEL_MAKE setting
>
Took in patches 1 & 3 into OE-Core

Looking for an update for FILESDIR -> FILESPATH as suggested by Richard.

Thanks
	Sau!


>   meta/recipes-bsp/u-boot/u-boot.inc           |    6 ++----
>   meta/recipes-bsp/u-boot/u-boot_2011.03.bb    |    2 --
>   meta/recipes-bsp/u-boot/u-boot_2011.06.bb    |    2 --
>   meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb |    2 --
>   4 files changed, 2 insertions(+), 10 deletions(-)
>



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

* Re: [PATCHv2 0/3] u-boot recipe updates
  2012-07-03 17:48       ` [PATCHv2 0/3] u-boot recipe updates Saul Wold
@ 2012-07-04 14:12         ` Paul Gortmaker
  2012-07-04 15:00           ` Paul Gortmaker
  2012-07-04 15:23         ` [PATCH] u-boot: make FILESDIR a shared setting via FILESPATH Paul Gortmaker
  1 sibling, 1 reply; 36+ messages in thread
From: Paul Gortmaker @ 2012-07-04 14:12 UTC (permalink / raw)
  To: Saul Wold; +Cc: openembedded-core

[Re: [PATCHv2 0/3] u-boot recipe updates] On 03/07/2012 (Tue 10:48) Saul Wold wrote:

> On 07/01/2012 10:44 PM, Paul Gortmaker wrote:
> >These are the oe-core updates required so that yocto can do
> >a successful build of a working u-boot image for the mpc8315
> >reference BSP.
> >
> >In v2, I've fixed up the issue where TARGET_PREFIX accidentally became
> >specific to the one single recipe.  That made the 3/3 patch in v1 no
> >longer required.  However, when build testing, I noticed that we
> >were needlessly clobbering PARALLEL_MAKE for u-boot, which is not
> >at all required, and just slows down builds.  So a new patch is
> >added to fix that, and we still have three total.
> >
> >I've built for the beagleboard with -j8 (twice), and the same for
> >the 8315 BSP.  I've also always built u-boot with -j10 or greater
> >for countless powerpc images I've made in the last 1/2 dozen years.
> >Looking at the git history, it appears this just came in with some
> >large import, versus being an actively chosen individual setting.
> >
> >The 8315 specific patch that was sent to the yocto list earlier to
> >enable building it (u-boot.bin) by default is unchanged, but I can
> >resend that if it helps somehow.
> >
> >Paul.
> >---
> >
> >Paul Gortmaker (3):
> >   u-boot: Don't make the -Os removal part of global settings.
> >   u-boot: make FILESDIR a shared setting.
> >   u-boot: do not clobber PARALLEL_MAKE setting
> >
> Took in patches 1 & 3 into OE-Core

Thanks!

> 
> Looking for an update for FILESDIR -> FILESPATH as suggested by Richard.

I've not seen Richard's feedback, since I'm OOO, and with the To/Cc:
stripped, it has got archived vs. staying in my inbox.  [They get
archived, because just like LKML, I'm not going to pretend I can read
all poky/oe mail on the very day it arrives.]

On a related note, is it possible to fix the mailing list so that it
does not strip To/Cc information and Message-ID strings?  [I'd have to
check -- maybe it is (also) inserting a needless Reply-To: header that
messes things up.]

Further, without a proper Message-ID, it breaks patchworks, so Richard's
comments should be here:

http://patchwork.openembedded.org/patch/30879/

but unfortunately they are not.  The netdev and ppc dev lists for linux
use patchworks and have the follow-up review comments captured and it is
really quite useful to all (esp. the person who has to triage and
decruftify patchworks content/state once a month...)

Finally, I can't even find it in the June/July archives:

https://lists.yoctoproject.org/pipermail/poky/2012-July/subject.html

Just thought it worth a mention, in case it hasn't been mentioned
before.  Fixing these little quirks would lower the barrier to entry
and the frustration factor for new contributors.  If I can help out
somehow with testing a fix, let me know.

Thanks,
Paul.
--

> 
> Thanks
> 	Sau!
> 
> 
> >  meta/recipes-bsp/u-boot/u-boot.inc           |    6 ++----
> >  meta/recipes-bsp/u-boot/u-boot_2011.03.bb    |    2 --
> >  meta/recipes-bsp/u-boot/u-boot_2011.06.bb    |    2 --
> >  meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb |    2 --
> >  4 files changed, 2 insertions(+), 10 deletions(-)
> >



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

* Re: [PATCHv2 0/3] u-boot recipe updates
  2012-07-04 14:12         ` Paul Gortmaker
@ 2012-07-04 15:00           ` Paul Gortmaker
  2012-07-04 15:29             ` Phil Blundell
  0 siblings, 1 reply; 36+ messages in thread
From: Paul Gortmaker @ 2012-07-04 15:00 UTC (permalink / raw)
  To: Saul Wold; +Cc: openembedded-core

[Re: [PATCHv2 0/3] u-boot recipe updates] On 04/07/2012 (Wed 10:12) Paul Gortmaker wrote:

> [Re: [PATCHv2 0/3] u-boot recipe updates] On 03/07/2012 (Tue 10:48) Saul Wold wrote:
> 
> > On 07/01/2012 10:44 PM, Paul Gortmaker wrote:
> > >These are the oe-core updates required so that yocto can do
> > >a successful build of a working u-boot image for the mpc8315
> > >reference BSP.
> > >
> > >In v2, I've fixed up the issue where TARGET_PREFIX accidentally became
> > >specific to the one single recipe.  That made the 3/3 patch in v1 no
> > >longer required.  However, when build testing, I noticed that we
> > >were needlessly clobbering PARALLEL_MAKE for u-boot, which is not
> > >at all required, and just slows down builds.  So a new patch is
> > >added to fix that, and we still have three total.
> > >
> > >I've built for the beagleboard with -j8 (twice), and the same for
> > >the 8315 BSP.  I've also always built u-boot with -j10 or greater
> > >for countless powerpc images I've made in the last 1/2 dozen years.
> > >Looking at the git history, it appears this just came in with some
> > >large import, versus being an actively chosen individual setting.
> > >
> > >The 8315 specific patch that was sent to the yocto list earlier to
> > >enable building it (u-boot.bin) by default is unchanged, but I can
> > >resend that if it helps somehow.
> > >
> > >Paul.
> > >---
> > >
> > >Paul Gortmaker (3):
> > >   u-boot: Don't make the -Os removal part of global settings.
> > >   u-boot: make FILESDIR a shared setting.
> > >   u-boot: do not clobber PARALLEL_MAKE setting
> > >
> > Took in patches 1 & 3 into OE-Core
> 
> Thanks!
> 
> > 
> > Looking for an update for FILESDIR -> FILESPATH as suggested by Richard.
> 
> I've not seen Richard's feedback, since I'm OOO, and with the To/Cc:
> stripped, it has got archived vs. staying in my inbox.  [They get
> archived, because just like LKML, I'm not going to pretend I can read
> all poky/oe mail on the very day it arrives.]

I've found Richard's comments [looking in OE archive and not poky
helped] and will test what he proposed to replace FILESDIR.  But I still
think it extremely worthwhile if some fine tuning to the mailing list(s)
can be done to address what I mentioned below.

Thanks,
Paul.
--

> 
> On a related note, is it possible to fix the mailing list so that it
> does not strip To/Cc information and Message-ID strings?  [I'd have to
> check -- maybe it is (also) inserting a needless Reply-To: header that
> messes things up.]
> 
> Further, without a proper Message-ID, it breaks patchworks, so Richard's
> comments should be here:
> 
> http://patchwork.openembedded.org/patch/30879/
> 
> but unfortunately they are not.  The netdev and ppc dev lists for linux
> use patchworks and have the follow-up review comments captured and it is
> really quite useful to all (esp. the person who has to triage and
> decruftify patchworks content/state once a month...)
> 
> Finally, I can't even find it in the June/July archives:
> 
> https://lists.yoctoproject.org/pipermail/poky/2012-July/subject.html
> 
> Just thought it worth a mention, in case it hasn't been mentioned
> before.  Fixing these little quirks would lower the barrier to entry
> and the frustration factor for new contributors.  If I can help out
> somehow with testing a fix, let me know.
> 
> Thanks,
> Paul.
> --
> 
> > 
> > Thanks
> > 	Sau!
> > 
> > 
> > >  meta/recipes-bsp/u-boot/u-boot.inc           |    6 ++----
> > >  meta/recipes-bsp/u-boot/u-boot_2011.03.bb    |    2 --
> > >  meta/recipes-bsp/u-boot/u-boot_2011.06.bb    |    2 --
> > >  meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb |    2 --
> > >  4 files changed, 2 insertions(+), 10 deletions(-)
> > >



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

* [PATCH] u-boot: make FILESDIR a shared setting via FILESPATH
  2012-07-03 17:48       ` [PATCHv2 0/3] u-boot recipe updates Saul Wold
  2012-07-04 14:12         ` Paul Gortmaker
@ 2012-07-04 15:23         ` Paul Gortmaker
  2012-07-04 15:38           ` Martin Jansa
  2012-07-05 17:19           ` Saul Wold
  1 sibling, 2 replies; 36+ messages in thread
From: Paul Gortmaker @ 2012-07-04 15:23 UTC (permalink / raw)
  To: openembedded-core

The setting is the same in all recipes, so move it to
the shared settings in u-boot.inc

Since FILESDIR is also being phased out, use the FILESPATH
setting as suggested by Richard Purdie.

Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---

[ PG: Retested builds for 8315 and beagleboard ]

 meta/recipes-bsp/u-boot/u-boot.inc           |    1 +
 meta/recipes-bsp/u-boot/u-boot_2011.03.bb    |    2 --
 meta/recipes-bsp/u-boot/u-boot_2011.06.bb    |    2 --
 meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb |    2 --
 4 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
index 5de3583..664c2e6 100644
--- a/meta/recipes-bsp/u-boot/u-boot.inc
+++ b/meta/recipes-bsp/u-boot/u-boot.inc
@@ -59,6 +59,7 @@ do_install () {
 }
 
 FILES_${PN} = "/boot"
+FILESPATH =. "${FILE_DIRNAME}/u-boot-git/${MACHINE}:"
 
 do_deploy () {
     install -d ${DEPLOYDIR}
diff --git a/meta/recipes-bsp/u-boot/u-boot_2011.03.bb b/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
index e99bc2c..ed38f54 100644
--- a/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
+++ b/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
@@ -10,8 +10,6 @@ LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb \
                     file://README;beginline=1;endline=22;md5=3a00ef51d3fc96e9d6c1bc4708ccd3b5"
 
-FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
-
 # This revision corresponds to the tag "v2011.03"
 # We use the revision in order to avoid having to fetch it from the repo during parse
 SRCREV = "19b54a701811220221fc4d5089a2bb18892018ca"
diff --git a/meta/recipes-bsp/u-boot/u-boot_2011.06.bb b/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
index 680401f..da61852 100644
--- a/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
+++ b/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
@@ -10,8 +10,6 @@ LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb \
                     file://README;beginline=1;endline=22;md5=5ba4218ac89af7846802d0348df3fb90"
 
-FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
-
 # This revision corresponds to the tag "v2011.06"
 # We use the revision in order to avoid having to fetch it from the repo during parse
 SRCREV = "b1af6f532e0d348b153d5c148369229d24af361a"
diff --git a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
index dbdc663..25cc8c9 100644
--- a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
+++ b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
@@ -14,8 +14,6 @@ DEFAULT_PREFERENCE = "-1"
 LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb"
 
-FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
-
 # This revision corresponds to the tag "v2012.04.01"
 # We use the revision in order to avoid having to fetch it from the
 # repo during parse
-- 
1.7.9.6




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

* Re: [PATCHv2 0/3] u-boot recipe updates
  2012-07-04 15:00           ` Paul Gortmaker
@ 2012-07-04 15:29             ` Phil Blundell
  2012-07-05 16:14               ` Paul Gortmaker
  0 siblings, 1 reply; 36+ messages in thread
From: Phil Blundell @ 2012-07-04 15:29 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Wed, 2012-07-04 at 11:00 -0400, Paul Gortmaker wrote:
> I've found Richard's comments [looking in OE archive and not poky
> helped] and will test what he proposed to replace FILESDIR.  But I still
> think it extremely worthwhile if some fine tuning to the mailing list(s)
> can be done to address what I mentioned below.

Can you be more specific about what you think should be changed?  If I
look at the message of yours that I'm replying to, it has:

Return-Path: <openembedded-core-bounces@lists.openembedded.org>
Received: from linuxtogo.org ([188.40.83.200]) by hetzner.pbcl.net with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.72) (envelope-from <openembedded-core-bounces@lists.openembedded.org>) id 1SmR3u-0002an-JT for pb@pbcl.net; Wed, 04 Jul 2012 17:00:14 +0200
Received: from localhost ([127.0.0.1]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from <openembedded-core-bounces@lists.openembedded.org>) id 1SmREX-0006Iq-NQ; Wed, 04 Jul 2012 17:11:13 +0200
Received: from mail1.windriver.com ([147.11.146.13]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from <Paul.Gortmaker@windriver.com>) id 1SmREW-0006Ih-OQ for openembedded-core@lists.openembedded.org; Wed, 04 Jul 2012 17:11:13 +0200

[...]

From: Paul Gortmaker <paul.gortmaker@windriver.com>
To: Saul Wold <sgw@linux.intel.com>
Message-id: <20120704150005.GD1817@windriver.com>
Cc: openembedded-core@lists.openembedded.org

which all seems in order.  Which part do you think is wrong?

> > On a related note, is it possible to fix the mailing list so that it
> > does not strip To/Cc information and Message-ID strings?  [I'd have to
> > check -- maybe it is (also) inserting a needless Reply-To: header that
> > messes things up.]
> > 
> > Further, without a proper Message-ID, it breaks patchworks, so Richard's
> > comments should be here:

p.





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

* Re: [PATCH] u-boot: make FILESDIR a shared setting via FILESPATH
  2012-07-04 15:23         ` [PATCH] u-boot: make FILESDIR a shared setting via FILESPATH Paul Gortmaker
@ 2012-07-04 15:38           ` Martin Jansa
  2012-07-04 17:01             ` Richard Purdie
  2012-07-05 17:19           ` Saul Wold
  1 sibling, 1 reply; 36+ messages in thread
From: Martin Jansa @ 2012-07-04 15:38 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

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

On Wed, Jul 04, 2012 at 11:23:45AM -0400, Paul Gortmaker wrote:
> The setting is the same in all recipes, so move it to
> the shared settings in u-boot.inc
> 
> Since FILESDIR is also being phased out, use the FILESPATH
> setting as suggested by Richard Purdie.

Shouldn't it be added in FILESEXTRAPATHS instead of FILESPATH?

Cheers,

> Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> ---
> 
> [ PG: Retested builds for 8315 and beagleboard ]
> 
>  meta/recipes-bsp/u-boot/u-boot.inc           |    1 +
>  meta/recipes-bsp/u-boot/u-boot_2011.03.bb    |    2 --
>  meta/recipes-bsp/u-boot/u-boot_2011.06.bb    |    2 --
>  meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb |    2 --
>  4 files changed, 1 insertion(+), 6 deletions(-)
> 
> diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
> index 5de3583..664c2e6 100644
> --- a/meta/recipes-bsp/u-boot/u-boot.inc
> +++ b/meta/recipes-bsp/u-boot/u-boot.inc
> @@ -59,6 +59,7 @@ do_install () {
>  }
>  
>  FILES_${PN} = "/boot"
> +FILESPATH =. "${FILE_DIRNAME}/u-boot-git/${MACHINE}:"
>  
>  do_deploy () {
>      install -d ${DEPLOYDIR}
> diff --git a/meta/recipes-bsp/u-boot/u-boot_2011.03.bb b/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
> index e99bc2c..ed38f54 100644
> --- a/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
> +++ b/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
> @@ -10,8 +10,6 @@ LICENSE = "GPLv2+"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb \
>                      file://README;beginline=1;endline=22;md5=3a00ef51d3fc96e9d6c1bc4708ccd3b5"
>  
> -FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
> -
>  # This revision corresponds to the tag "v2011.03"
>  # We use the revision in order to avoid having to fetch it from the repo during parse
>  SRCREV = "19b54a701811220221fc4d5089a2bb18892018ca"
> diff --git a/meta/recipes-bsp/u-boot/u-boot_2011.06.bb b/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
> index 680401f..da61852 100644
> --- a/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
> +++ b/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
> @@ -10,8 +10,6 @@ LICENSE = "GPLv2+"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb \
>                      file://README;beginline=1;endline=22;md5=5ba4218ac89af7846802d0348df3fb90"
>  
> -FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
> -
>  # This revision corresponds to the tag "v2011.06"
>  # We use the revision in order to avoid having to fetch it from the repo during parse
>  SRCREV = "b1af6f532e0d348b153d5c148369229d24af361a"
> diff --git a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
> index dbdc663..25cc8c9 100644
> --- a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
> +++ b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
> @@ -14,8 +14,6 @@ DEFAULT_PREFERENCE = "-1"
>  LICENSE = "GPLv2+"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb"
>  
> -FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
> -
>  # This revision corresponds to the tag "v2012.04.01"
>  # We use the revision in order to avoid having to fetch it from the
>  # repo during parse
> -- 
> 1.7.9.6
> 
> 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core

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

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

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

* Re: [PATCH] u-boot: make FILESDIR a shared setting via FILESPATH
  2012-07-04 15:38           ` Martin Jansa
@ 2012-07-04 17:01             ` Richard Purdie
  0 siblings, 0 replies; 36+ messages in thread
From: Richard Purdie @ 2012-07-04 17:01 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Wed, 2012-07-04 at 17:38 +0200, Martin Jansa wrote:
> On Wed, Jul 04, 2012 at 11:23:45AM -0400, Paul Gortmaker wrote:
> > The setting is the same in all recipes, so move it to
> > the shared settings in u-boot.inc
> > 
> > Since FILESDIR is also being phased out, use the FILESPATH
> > setting as suggested by Richard Purdie.
> 
> Shouldn't it be added in FILESEXTRAPATHS instead of FILESPATH?

The line is correct as it stands as far as I can tell. If you add to
FILESEXTRAPATHS, it will add various overrides to the end so the
${MACHINE} would become unnecessary. We know what combinations we
support in this case though.

Cheers,

Richard

> Cheers,
> 
> > Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
> > Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> > ---
> > 
> > [ PG: Retested builds for 8315 and beagleboard ]
> > 
> >  meta/recipes-bsp/u-boot/u-boot.inc           |    1 +
> >  meta/recipes-bsp/u-boot/u-boot_2011.03.bb    |    2 --
> >  meta/recipes-bsp/u-boot/u-boot_2011.06.bb    |    2 --
> >  meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb |    2 --
> >  4 files changed, 1 insertion(+), 6 deletions(-)
> > 
> > diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
> > index 5de3583..664c2e6 100644
> > --- a/meta/recipes-bsp/u-boot/u-boot.inc
> > +++ b/meta/recipes-bsp/u-boot/u-boot.inc
> > @@ -59,6 +59,7 @@ do_install () {
> >  }
> >  
> >  FILES_${PN} = "/boot"
> > +FILESPATH =. "${FILE_DIRNAME}/u-boot-git/${MACHINE}:"
> >  
> >  do_deploy () {
> >      install -d ${DEPLOYDIR}
> > diff --git a/meta/recipes-bsp/u-boot/u-boot_2011.03.bb b/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
> > index e99bc2c..ed38f54 100644
> > --- a/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
> > +++ b/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
> > @@ -10,8 +10,6 @@ LICENSE = "GPLv2+"
> >  LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb \
> >                      file://README;beginline=1;endline=22;md5=3a00ef51d3fc96e9d6c1bc4708ccd3b5"
> >  
> > -FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
> > -
> >  # This revision corresponds to the tag "v2011.03"
> >  # We use the revision in order to avoid having to fetch it from the repo during parse
> >  SRCREV = "19b54a701811220221fc4d5089a2bb18892018ca"
> > diff --git a/meta/recipes-bsp/u-boot/u-boot_2011.06.bb b/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
> > index 680401f..da61852 100644
> > --- a/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
> > +++ b/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
> > @@ -10,8 +10,6 @@ LICENSE = "GPLv2+"
> >  LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb \
> >                      file://README;beginline=1;endline=22;md5=5ba4218ac89af7846802d0348df3fb90"
> >  
> > -FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
> > -
> >  # This revision corresponds to the tag "v2011.06"
> >  # We use the revision in order to avoid having to fetch it from the repo during parse
> >  SRCREV = "b1af6f532e0d348b153d5c148369229d24af361a"
> > diff --git a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
> > index dbdc663..25cc8c9 100644
> > --- a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
> > +++ b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
> > @@ -14,8 +14,6 @@ DEFAULT_PREFERENCE = "-1"
> >  LICENSE = "GPLv2+"
> >  LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb"
> >  
> > -FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
> > -
> >  # This revision corresponds to the tag "v2012.04.01"
> >  # We use the revision in order to avoid having to fetch it from the
> >  # repo during parse
> > -- 
> > 1.7.9.6
> > 
> > 
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
> 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core





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

* Re: [PATCHv2 0/3] u-boot recipe updates
  2012-07-04 15:29             ` Phil Blundell
@ 2012-07-05 16:14               ` Paul Gortmaker
  2012-07-09 16:01                 ` Phil Blundell
  0 siblings, 1 reply; 36+ messages in thread
From: Paul Gortmaker @ 2012-07-05 16:14 UTC (permalink / raw)
  To: Phil Blundell; +Cc: openembedded-core

[Re: [OE-core] [PATCHv2 0/3] u-boot recipe updates] On 04/07/2012 (Wed 16:29) Phil Blundell wrote:

> On Wed, 2012-07-04 at 11:00 -0400, Paul Gortmaker wrote:
> > I've found Richard's comments [looking in OE archive and not poky
> > helped] and will test what he proposed to replace FILESDIR.  But I still
> > think it extremely worthwhile if some fine tuning to the mailing list(s)
> > can be done to address what I mentioned below.
> 
> Can you be more specific about what you think should be changed?  If I
> look at the message of yours that I'm replying to, it has:
> 
> Return-Path: <openembedded-core-bounces@lists.openembedded.org>
> Received: from linuxtogo.org ([188.40.83.200]) by hetzner.pbcl.net with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.72) (envelope-from <openembedded-core-bounces@lists.openembedded.org>) id 1SmR3u-0002an-JT for pb@pbcl.net; Wed, 04 Jul 2012 17:00:14 +0200
> Received: from localhost ([127.0.0.1]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from <openembedded-core-bounces@lists.openembedded.org>) id 1SmREX-0006Iq-NQ; Wed, 04 Jul 2012 17:11:13 +0200
> Received: from mail1.windriver.com ([147.11.146.13]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from <Paul.Gortmaker@windriver.com>) id 1SmREW-0006Ih-OQ for openembedded-core@lists.openembedded.org; Wed, 04 Jul 2012 17:11:13 +0200
> 
> [...]
> 
> From: Paul Gortmaker <paul.gortmaker@windriver.com>
> To: Saul Wold <sgw@linux.intel.com>
> Message-id: <20120704150005.GD1817@windriver.com>
> Cc: openembedded-core@lists.openembedded.org
> 
> which all seems in order.  Which part do you think is wrong?
> 
> > > On a related note, is it possible to fix the mailing list so that it
> > > does not strip To/Cc information and Message-ID strings?  [I'd have to
> > > check -- maybe it is (also) inserting a needless Reply-To: header that
> > > messes things up.]

Hi Phil,

Your mail suffers the exact same problem.  My address is nowhere to be
seen on the To/Cc:  I only happened to see it since I told mutt to
show me all archived poky/oe mails with u-boot in the subject.
Otherwise your message would have been lost in the noise, perhaps seen
next week when I return from OOO.

And when I hit reply, it won't go to you unless I tell mutt to ignore
the broken Reply-To line.  It is the line right at the bottom:

-----------
	From: Phil Blundell <philb@gnu.org>
	To: Patches and discussions about the oe-core layer
	        <openembedded-core@lists.openembedded.org>
	Date: Wed, 4 Jul 2012 16:29:24 +0100
	In-Reply-To: <20120704150005.GD1817@windriver.com>
	References: <4FF0C930.4000104@linux.intel.com>
	        <1341207885-9463-1-git-send-email-paul.gortmaker@windriver.com>
	        <4FF33085.1070703@linux.intel.com>
	        <20120704141259.GA1817@windriver.com>
	        <20120704150005.GD1817@windriver.com>
	X-Mailer: Evolution 3.0.2- 
	Message-ID: <1341415765.20265.30.camel@phil-desktop>
	Subject: Re: [OE-core] [PATCHv2 0/3] u-boot recipe updates
	X-BeenThere: openembedded-core@lists.openembedded.org
	X-Mailman-Version: 2.1.11
	Precedence: list
	Reply-To: Patches and discussions about the oe-core layer
	        <openembedded-core@lists.openembedded.org>
-----------

Note the absence of the To/Cc: with my name?  How are people to sort the
"needs attention from me now" mails from the general mailing list traffic?

The hijack effect of "Reply-To:" is evil and should be removed.  It
isn't used on any of the other dozen devel mailing lists I'm on.

Thanks,
Paul.
--
	
> > > 
> > > Further, without a proper Message-ID, it breaks patchworks, so Richard's
> > > comments should be here:
> 
> p.
> 
> 
> 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
> 



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

* Re: [PATCH] u-boot: make FILESDIR a shared setting via FILESPATH
  2012-07-04 15:23         ` [PATCH] u-boot: make FILESDIR a shared setting via FILESPATH Paul Gortmaker
  2012-07-04 15:38           ` Martin Jansa
@ 2012-07-05 17:19           ` Saul Wold
  1 sibling, 0 replies; 36+ messages in thread
From: Saul Wold @ 2012-07-05 17:19 UTC (permalink / raw)
  To: Paul Gortmaker; +Cc: openembedded-core

On 07/04/2012 08:23 AM, Paul Gortmaker wrote:
> The setting is the same in all recipes, so move it to
> the shared settings in u-boot.inc
>
> Since FILESDIR is also being phased out, use the FILESPATH
> setting as suggested by Richard Purdie.
>
> Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> ---
>
> [ PG: Retested builds for 8315 and beagleboard ]
>
>   meta/recipes-bsp/u-boot/u-boot.inc           |    1 +
>   meta/recipes-bsp/u-boot/u-boot_2011.03.bb    |    2 --
>   meta/recipes-bsp/u-boot/u-boot_2011.06.bb    |    2 --
>   meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb |    2 --
>   4 files changed, 1 insertion(+), 6 deletions(-)
>
Merged into OE-Core

Thanks
	Sau!

> diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
> index 5de3583..664c2e6 100644
> --- a/meta/recipes-bsp/u-boot/u-boot.inc
> +++ b/meta/recipes-bsp/u-boot/u-boot.inc
> @@ -59,6 +59,7 @@ do_install () {
>   }
>
>   FILES_${PN} = "/boot"
> +FILESPATH =. "${FILE_DIRNAME}/u-boot-git/${MACHINE}:"
>
>   do_deploy () {
>       install -d ${DEPLOYDIR}
> diff --git a/meta/recipes-bsp/u-boot/u-boot_2011.03.bb b/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
> index e99bc2c..ed38f54 100644
> --- a/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
> +++ b/meta/recipes-bsp/u-boot/u-boot_2011.03.bb
> @@ -10,8 +10,6 @@ LICENSE = "GPLv2+"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb \
>                       file://README;beginline=1;endline=22;md5=3a00ef51d3fc96e9d6c1bc4708ccd3b5"
>
> -FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
> -
>   # This revision corresponds to the tag "v2011.03"
>   # We use the revision in order to avoid having to fetch it from the repo during parse
>   SRCREV = "19b54a701811220221fc4d5089a2bb18892018ca"
> diff --git a/meta/recipes-bsp/u-boot/u-boot_2011.06.bb b/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
> index 680401f..da61852 100644
> --- a/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
> +++ b/meta/recipes-bsp/u-boot/u-boot_2011.06.bb
> @@ -10,8 +10,6 @@ LICENSE = "GPLv2+"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb \
>                       file://README;beginline=1;endline=22;md5=5ba4218ac89af7846802d0348df3fb90"
>
> -FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
> -
>   # This revision corresponds to the tag "v2011.06"
>   # We use the revision in order to avoid having to fetch it from the repo during parse
>   SRCREV = "b1af6f532e0d348b153d5c148369229d24af361a"
> diff --git a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
> index dbdc663..25cc8c9 100644
> --- a/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
> +++ b/meta/recipes-bsp/u-boot/u-boot_2012.04.01.bb
> @@ -14,8 +14,6 @@ DEFAULT_PREFERENCE = "-1"
>   LICENSE = "GPLv2+"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb"
>
> -FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/u-boot-git/${MACHINE}"
> -
>   # This revision corresponds to the tag "v2012.04.01"
>   # We use the revision in order to avoid having to fetch it from the
>   # repo during parse
>




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

* Re: [PATCHv2 0/3] u-boot recipe updates
  2012-07-05 16:14               ` Paul Gortmaker
@ 2012-07-09 16:01                 ` Phil Blundell
  2012-07-09 18:20                   ` McClintock Matthew-B29882
                                     ` (2 more replies)
  0 siblings, 3 replies; 36+ messages in thread
From: Phil Blundell @ 2012-07-09 16:01 UTC (permalink / raw)
  To: Paul Gortmaker; +Cc: openembedded-core

On Thu, 2012-07-05 at 12:14 -0400, Paul Gortmaker wrote:
> > On Wed, 2012-07-04 at 11:00 -0400, Paul Gortmaker wrote:
> > > > On a related note, is it possible to fix the mailing list so that it
> > > > does not strip To/Cc information and Message-ID strings?  [I'd have to
> > > > check -- maybe it is (also) inserting a needless Reply-To: header that
> > > > messes things up.]
> 
> Your mail suffers the exact same problem.  My address is nowhere to be
> seen on the To/Cc:  I only happened to see it since I told mutt to
> show me all archived poky/oe mails with u-boot in the subject.
> Otherwise your message would have been lost in the noise, perhaps seen
> next week when I return from OOO.
> 
> And when I hit reply, it won't go to you unless I tell mutt to ignore
> the broken Reply-To line.  It is the line right at the bottom:

Ah, I see.  So, just to be clear, the mailing list isn't stripping
anything: the reason that your address doesn't appear in To/Cc is, as
you suggest, purely because the Reply-to: header which mailman inserts
tends to cause replies to be sent only to the list.

I tend to agree with you that the Reply-to header is a bad idea and it
would be better off disabled, but this is a list policy decision and
Richard, as the administrator, would need to decide whether he wants to
disable it or not.

For what it's worth, you can partially defeat this behaviour by
inserting your own Reply-to header in messages that you send to the
list.  If you tell mutt to add:

Reply-to: Paul Gortmaker <paul.gortmaker@windriver.com>

then mailman will translate this to:

Reply-to: Paul Gortmaker <paul.gortmaker@windriver.com>,
openembedded-core@lists.openembedded.org

which will probably produce more or less the effect that you are looking
for.  I realise that this is still somewhat annoying but you might find
it better than the behaviour you are getting at present.

p.





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

* Re: [PATCHv2 0/3] u-boot recipe updates
  2012-07-09 16:01                 ` Phil Blundell
@ 2012-07-09 18:20                   ` McClintock Matthew-B29882
  2012-07-09 18:52                   ` Paul Gortmaker
  2012-07-09 19:08                   ` Richard Purdie
  2 siblings, 0 replies; 36+ messages in thread
From: McClintock Matthew-B29882 @ 2012-07-09 18:20 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Mon, Jul 9, 2012 at 11:01 AM, Phil Blundell <philb@gnu.org> wrote:
> On Thu, 2012-07-05 at 12:14 -0400, Paul Gortmaker wrote:
>> > On Wed, 2012-07-04 at 11:00 -0400, Paul Gortmaker wrote:
>> > > > On a related note, is it possible to fix the mailing list so that it
>> > > > does not strip To/Cc information and Message-ID strings?  [I'd have to
>> > > > check -- maybe it is (also) inserting a needless Reply-To: header that
>> > > > messes things up.]
>>
>> Your mail suffers the exact same problem.  My address is nowhere to be
>> seen on the To/Cc:  I only happened to see it since I told mutt to
>> show me all archived poky/oe mails with u-boot in the subject.
>> Otherwise your message would have been lost in the noise, perhaps seen
>> next week when I return from OOO.
>>
>> And when I hit reply, it won't go to you unless I tell mutt to ignore
>> the broken Reply-To line.  It is the line right at the bottom:
>
> Ah, I see.  So, just to be clear, the mailing list isn't stripping
> anything: the reason that your address doesn't appear in To/Cc is, as
> you suggest, purely because the Reply-to: header which mailman inserts
> tends to cause replies to be sent only to the list.
>
> I tend to agree with you that the Reply-to header is a bad idea and it
> would be better off disabled, but this is a list policy decision and
> Richard, as the administrator, would need to decide whether he wants to
> disable it or not.
>
> For what it's worth, you can partially defeat this behaviour by
> inserting your own Reply-to header in messages that you send to the
> list.  If you tell mutt to add:
>
> Reply-to: Paul Gortmaker <paul.gortmaker@windriver.com>
>
> then mailman will translate this to:
>
> Reply-to: Paul Gortmaker <paul.gortmaker@windriver.com>,
> openembedded-core@lists.openembedded.org
>
> which will probably produce more or less the effect that you are looking
> for.  I realise that this is still somewhat annoying but you might find
> it better than the behaviour you are getting at present.
>
> p.

I really wish this worked like 99% of other mailing lists....

-M



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

* Re: [PATCHv2 0/3] u-boot recipe updates
  2012-07-09 16:01                 ` Phil Blundell
  2012-07-09 18:20                   ` McClintock Matthew-B29882
@ 2012-07-09 18:52                   ` Paul Gortmaker
  2012-07-09 19:08                   ` Richard Purdie
  2 siblings, 0 replies; 36+ messages in thread
From: Paul Gortmaker @ 2012-07-09 18:52 UTC (permalink / raw)
  To: Phil Blundell; +Cc: Patches and discussions about the oe-core layer

[CC'ing Richard, since Phil says he is list admin]

On 12-07-09 12:01 PM, Phil Blundell wrote:
> On Thu, 2012-07-05 at 12:14 -0400, Paul Gortmaker wrote:
>>> On Wed, 2012-07-04 at 11:00 -0400, Paul Gortmaker wrote:
>>>>> On a related note, is it possible to fix the mailing list so that it
>>>>> does not strip To/Cc information and Message-ID strings?  [I'd have to
>>>>> check -- maybe it is (also) inserting a needless Reply-To: header that
>>>>> messes things up.]
>>
>> Your mail suffers the exact same problem.  My address is nowhere to be
>> seen on the To/Cc:  I only happened to see it since I told mutt to
>> show me all archived poky/oe mails with u-boot in the subject.
>> Otherwise your message would have been lost in the noise, perhaps seen
>> next week when I return from OOO.
>>
>> And when I hit reply, it won't go to you unless I tell mutt to ignore
>> the broken Reply-To line.  It is the line right at the bottom:
> 
> Ah, I see.  So, just to be clear, the mailing list isn't stripping
> anything: the reason that your address doesn't appear in To/Cc is, as
> you suggest, purely because the Reply-to: header which mailman inserts
> tends to cause replies to be sent only to the list.
> 
> I tend to agree with you that the Reply-to header is a bad idea and it
> would be better off disabled, but this is a list policy decision and
> Richard, as the administrator, would need to decide whether he wants to
> disable it or not.
> 
> For what it's worth, you can partially defeat this behaviour by
> inserting your own Reply-to header in messages that you send to the
> list.  If you tell mutt to add:
> 
> Reply-to: Paul Gortmaker <paul.gortmaker@windriver.com>
> 
> then mailman will translate this to:
> 
> Reply-to: Paul Gortmaker <paul.gortmaker@windriver.com>,
> openembedded-core@lists.openembedded.org
> 
> which will probably produce more or less the effect that you are looking
> for.  I realise that this is still somewhat annoying but you might find
> it better than the behaviour you are getting at present.

Sure, there are workarounds, and I've employed some of them, but
in the end it makes no sense to have everyone manually deploy
such one-shot workarounds just in order to make the list behave
like 99% of all the other lists, when one administrator change to
delete the bogus Reply-To: header makes the whole problem go away
for everyone.

Paul.
--

> 
> p.
> 
> 




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

* Re: [PATCHv2 0/3] u-boot recipe updates
  2012-07-09 16:01                 ` Phil Blundell
  2012-07-09 18:20                   ` McClintock Matthew-B29882
  2012-07-09 18:52                   ` Paul Gortmaker
@ 2012-07-09 19:08                   ` Richard Purdie
  2 siblings, 0 replies; 36+ messages in thread
From: Richard Purdie @ 2012-07-09 19:08 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Phil Blundell

On Mon, 2012-07-09 at 17:01 +0100, Phil Blundell wrote:
> On Thu, 2012-07-05 at 12:14 -0400, Paul Gortmaker wrote:
> > > On Wed, 2012-07-04 at 11:00 -0400, Paul Gortmaker wrote:
> > > > > On a related note, is it possible to fix the mailing list so that it
> > > > > does not strip To/Cc information and Message-ID strings?  [I'd have to
> > > > > check -- maybe it is (also) inserting a needless Reply-To: header that
> > > > > messes things up.]
> > 
> > Your mail suffers the exact same problem.  My address is nowhere to be
> > seen on the To/Cc:  I only happened to see it since I told mutt to
> > show me all archived poky/oe mails with u-boot in the subject.
> > Otherwise your message would have been lost in the noise, perhaps seen
> > next week when I return from OOO.
> > 
> > And when I hit reply, it won't go to you unless I tell mutt to ignore
> > the broken Reply-To line.  It is the line right at the bottom:
> 
> Ah, I see.  So, just to be clear, the mailing list isn't stripping
> anything: the reason that your address doesn't appear in To/Cc is, as
> you suggest, purely because the Reply-to: header which mailman inserts
> tends to cause replies to be sent only to the list.
> 
> I tend to agree with you that the Reply-to header is a bad idea and it
> would be better off disabled, but this is a list policy decision and
> Richard, as the administrator, would need to decide whether he wants to
> disable it or not.

I'm fairly indifferent about this and happy to change it unless anyone
can think of a good reason why its list this. I would note that whilst
in theory I might admin the list, I don't have any of the list admin
password for this list or the tsc one for that matter, only that for
bitbake-devel. Phil, perhaps we could discuss this offline :)

Cheers,

Richard




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

end of thread, other threads:[~2012-07-09 19:19 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-29 18:35 [PATCH 0/3] u-boot recipe updates Paul Gortmaker
2012-06-29 18:35 ` [PATCH 1/3] u-boot: Don't make the -Os removal part of global settings Paul Gortmaker
2012-06-29 21:55   ` Khem Raj
2012-06-29 22:01     ` Wolfgang Denk
2012-06-29 22:11       ` Khem Raj
2012-06-29 23:34         ` Wolfgang Denk
2012-06-30  2:49           ` Khem Raj
2012-07-01 22:03   ` Saul Wold
2012-07-01 23:14     ` Khem Raj
2012-07-02  3:04     ` Paul Gortmaker
2012-07-02  5:44     ` [PATCHv2 0/3] u-boot recipe updates Paul Gortmaker
2012-07-02  5:44       ` [PATCHv2 1/3] u-boot: Don't make the -Os removal part of global settings Paul Gortmaker
2012-07-02 11:23         ` Otavio Salvador
2012-07-02  5:44       ` [PATCHv2 2/3] u-boot: make FILESDIR a shared setting Paul Gortmaker
2012-07-02 11:24         ` Otavio Salvador
2012-07-02 13:33           ` Chris Larson
2012-07-02 16:42             ` Otavio Salvador
2012-07-02 19:03               ` Richard Purdie
2012-07-02  5:44       ` [PATCHv2 3/3] u-boot: do not clobber PARALLEL_MAKE setting Paul Gortmaker
2012-07-02 11:25         ` Otavio Salvador
2012-07-03 17:48       ` [PATCHv2 0/3] u-boot recipe updates Saul Wold
2012-07-04 14:12         ` Paul Gortmaker
2012-07-04 15:00           ` Paul Gortmaker
2012-07-04 15:29             ` Phil Blundell
2012-07-05 16:14               ` Paul Gortmaker
2012-07-09 16:01                 ` Phil Blundell
2012-07-09 18:20                   ` McClintock Matthew-B29882
2012-07-09 18:52                   ` Paul Gortmaker
2012-07-09 19:08                   ` Richard Purdie
2012-07-04 15:23         ` [PATCH] u-boot: make FILESDIR a shared setting via FILESPATH Paul Gortmaker
2012-07-04 15:38           ` Martin Jansa
2012-07-04 17:01             ` Richard Purdie
2012-07-05 17:19           ` Saul Wold
2012-06-29 18:35 ` [PATCH 2/3] u-boot: make FILESDIR a shared setting Paul Gortmaker
2012-06-29 18:35 ` [PATCH 3/3] u-boot: make sure CROSS_COMPILE is passed into build Paul Gortmaker
2012-06-29 20:04   ` McClintock Matthew-B29882

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.