Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 2/2] toolchain-external: remove support for Linaro 2012.05 toolchain
From: Thomas Petazzoni @ 2012-10-26  8:20 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1351239626-16394-1-git-send-email-thomas.petazzoni@free-electrons.com>

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 toolchain/toolchain-external/Config.in   |   17 -----------------
 toolchain/toolchain-external/ext-tool.mk |    3 ---
 2 files changed, 20 deletions(-)

diff --git a/toolchain/toolchain-external/Config.in b/toolchain/toolchain-external/Config.in
index 7a9ec1d..98d0c0e 100644
--- a/toolchain/toolchain-external/Config.in
+++ b/toolchain/toolchain-external/Config.in
@@ -83,22 +83,6 @@ config BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_06
 
 	  To use this toolchain, you must disable soft float usage.
 
-config BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_05
-	bool "Linaro 2012.05"
-	depends on BR2_arm
-	depends on BR2_cortex_a8 || BR2_cortex_a9
-	select BR2_TOOLCHAIN_EXTERNAL_GLIBC
-	select BR2_INSTALL_LIBSTDCPP
-	help
-	  Linaro toolchain for the ARM architecture. It uses Linaro
-	  GCC 2012.05 (based on gcc 4.7), Linaro GDB 2012.05 (based on
-	  GDB 7.4), eglibc 2.13. It generates code that runs on all
-	  Cortex-A profile devices, but tuned for the Cortex-A9. The
-	  code generated is Thumb 2, with the hard floating point
-	  calling convention, and uses the VFPv3-D16 FPU instructions.
-
-	  To use this toolchain, you must disable soft float usage.
-
 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201203
 	bool "Sourcery CodeBench ARM 2012.03"
 	depends on BR2_arm
@@ -648,7 +632,6 @@ config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX
 
 config BR2_TOOLCHAIN_EXTERNAL_PREFIX
 	string
-	default "arm-linux-gnueabihf"	 if BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_05
 	default "arm-linux-gnueabihf"	 if BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_06
 	default "arm-linux-gnueabihf"	 if BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_07
 	default "arm-linux-gnueabihf"	 if BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_08
diff --git a/toolchain/toolchain-external/ext-tool.mk b/toolchain/toolchain-external/ext-tool.mk
index a7e4ab6..2c85931 100644
--- a/toolchain/toolchain-external/ext-tool.mk
+++ b/toolchain/toolchain-external/ext-tool.mk
@@ -190,9 +190,6 @@ TOOLCHAIN_EXTERNAL_SOURCE=arm-2011.09-70-arm-none-linux-gnueabi-i686-pc-linux-gn
 else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201203),y)
 TOOLCHAIN_EXTERNAL_SITE=http://sourcery.mentor.com/public/gnu_toolchain/arm-none-linux-gnueabi/
 TOOLCHAIN_EXTERNAL_SOURCE=arm-2012.03-57-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2
-else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_05),y)
-TOOLCHAIN_EXTERNAL_SITE=https://launchpad.net/linaro-toolchain-binaries/trunk/2012.05/+download/
-TOOLCHAIN_EXTERNAL_SOURCE=gcc-linaro-arm-linux-gnueabihf-2012.05-20120523_linux.tar.bz2
 else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_06),y)
 TOOLCHAIN_EXTERNAL_SITE=https://launchpad.net/linaro-toolchain-binaries/trunk/2012.06/+download/
 TOOLCHAIN_EXTERNAL_SOURCE=gcc-linaro-arm-linux-gnueabihf-2012.06-20120625_linux.tar.bz2
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH 1/2] toolchain-external: add support for Linaro 2012.10 toolchain
From: Thomas Petazzoni @ 2012-10-26  8:20 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 toolchain/toolchain-external/Config.in   |   17 +++++++++++++++++
 toolchain/toolchain-external/ext-tool.mk |    3 +++
 2 files changed, 20 insertions(+)

diff --git a/toolchain/toolchain-external/Config.in b/toolchain/toolchain-external/Config.in
index 105fb2a..7a9ec1d 100644
--- a/toolchain/toolchain-external/Config.in
+++ b/toolchain/toolchain-external/Config.in
@@ -3,6 +3,22 @@ if BR2_TOOLCHAIN_EXTERNAL
 choice
 	prompt "Toolchain"
 
+config BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_10
+	bool "Linaro 2012.10"
+	depends on BR2_arm
+	depends on BR2_cortex_a8 || BR2_cortex_a9
+	select BR2_TOOLCHAIN_EXTERNAL_GLIBC
+	select BR2_INSTALL_LIBSTDCPP
+	help
+	  Linaro toolchain for the ARM architecture. It uses Linaro
+	  GCC 2012.10 (based on gcc 4.7), Linaro GDB 2012.10 (based on
+	  GDB 7.5), eglibc 2.15. It generates code that runs on all
+	  Cortex-A profile devices, but tuned for the Cortex-A9. The
+	  code generated is Thumb 2, with the hard floating point
+	  calling convention, and uses the VFPv3-D16 FPU instructions.
+
+	  To use this toolchain, you must disable soft float usage.
+
 config BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_09
 	bool "Linaro 2012.09"
 	depends on BR2_arm
@@ -637,6 +653,7 @@ config BR2_TOOLCHAIN_EXTERNAL_PREFIX
 	default "arm-linux-gnueabihf"	 if BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_07
 	default "arm-linux-gnueabihf"	 if BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_08
 	default "arm-linux-gnueabihf"	 if BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_09
+	default "arm-linux-gnueabihf"	 if BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_10
 	default "arm-none-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM2010Q1
 	default "arm-none-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201009
 	default "arm-none-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201103
diff --git a/toolchain/toolchain-external/ext-tool.mk b/toolchain/toolchain-external/ext-tool.mk
index 43d747c..a7e4ab6 100644
--- a/toolchain/toolchain-external/ext-tool.mk
+++ b/toolchain/toolchain-external/ext-tool.mk
@@ -205,6 +205,9 @@ TOOLCHAIN_EXTERNAL_SOURCE=gcc-linaro-arm-linux-gnueabihf-2012.08-20120827_linux.
 else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_09),y)
 TOOLCHAIN_EXTERNAL_SITE=https://launchpad.net/linaro-toolchain-binaries/trunk/2012.09/+download/
 TOOLCHAIN_EXTERNAL_SOURCE=gcc-linaro-arm-linux-gnueabihf-2012.09-20120921_linux.tar.bz2
+else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_10),y)
+TOOLCHAIN_EXTERNAL_SITE=https://launchpad.net/linaro-toolchain-binaries/trunk/2012.10/+download/
+TOOLCHAIN_EXTERNAL_SOURCE=gcc-linaro-arm-linux-gnueabihf-4.7-2012.10-20121022_linux.tar.bz2
 else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS44),y)
 TOOLCHAIN_EXTERNAL_SITE=http://sourcery.mentor.com/sgpp/lite/mips/portal/package7401/public/mips-linux-gnu/
 TOOLCHAIN_EXTERNAL_SOURCE=mips-4.4-303-mips-linux-gnu-i686-pc-linux-gnu.tar.bz2
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH] gqview: Fix build failure due to missing -lm
From: Arnout Vandecappelle @ 2012-10-26  7:38 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1349555736-10008-1-git-send-email-gvaxon@gmail.com>

On 06/10/12 22:35, Valentine Barshak wrote:
> Signed-off-by: Valentine Barshak<gvaxon@gmail.com>

Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

  Problem can be reproduced on e.g. x86_64 with external toolchain.

  And since upstream is dead, the simple addition of -lm to LIBS is an
adequate solution.

  Regards,
  Arnout

> ---
>   package/gqview/gqview.mk | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/package/gqview/gqview.mk b/package/gqview/gqview.mk
> index 2f64cd0..7d09fda 100644
> --- a/package/gqview/gqview.mk
> +++ b/package/gqview/gqview.mk
> @@ -7,6 +7,7 @@ GQVIEW_VERSION = 2.1.5
>   GQVIEW_SOURCE = gqview-$(GQVIEW_VERSION).tar.gz
>   GQVIEW_SITE = http://prdownloads.sourceforge.net/gqview
>   GQVIEW_DEPENDENCIES = host-pkg-config libgtk2
> +GQVIEW_CONF_ENV = LIBS="-lm"
>
>   $(eval $(autotools-package))
>

-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply

* [Buildroot] [Bug 5624] When building directfb, BR2_TARGET_LDFLAGS not used by libtool
From: Arnout Vandecappelle @ 2012-10-26  7:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121025090918.77F51998D6@busybox.osuosl.org>

On 25/10/12 11:09, bugzilla at busybox.net wrote:
> https://bugs.busybox.net/show_bug.cgi?id=5624
>
> --- Comment #4 from Duncan<dunk_palmer@yahoo.com>  2012-10-25 09:09:17 UTC ---
> Created attachment 4598
>    -->  https://bugs.busybox.net/attachment.cgi?id=4598
> Change as suggested by Arnout.

  Patch looks good. Should we ask to repost it on the list?

  Regards,
  Arnout
-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply

* [Buildroot] [PATCH v2] fluxbox: select xmodmap
From: Arnout Vandecappelle @ 2012-10-26  7:27 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1351161652-9231-1-git-send-email-yegorslists@googlemail.com>

On 25/10/12 12:40, yegorslists at googlemail.com wrote:
> From: Yegor Yefremov<yegorslists@googlemail.com>
>
> Fluxbox uses xmodmap in its startup script.

  I'm not so sure...  The user could change the startup script to remove the
xmodmap (e.g. for a keyboardless device), but now you take away the
possibility to build without it.

  OTOH, xmodmap is so small compared to (tiny)X that it shouldn't matter much.

  Regards,
  Arnout
-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply

* [Buildroot] [Bug 5624] When building directfb, BR2_TARGET_LDFLAGS not used by libtool
From: bugzilla at busybox.net @ 2012-10-26  6:56 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <bug-5624-163@https.bugs.busybox.net/>

https://bugs.busybox.net/show_bug.cgi?id=5624

--- Comment #6 from Jean-Mickael <jean-mickael.guerin@6wind.com> 2012-10-26 06:56:14 UTC ---
FYI I got similar issue with my LD not having the correct emulation (mips),
and I opted to add it to LDFLAGS, "-melf64btsmip" for instance.
It fixes packages using LD directly, but a new problem appears: CC cannot
recognize such LD specific option syntax, and some packages adds TARGET_LDFLAGS
to CC.

So I would first clean-up TARGET_LDFLAGS usage before doing the LD wrapper
(which sounds good idea).

-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

^ permalink raw reply

* [Buildroot] [autobuild.buildroot.net] Build results for 2012-10-25
From: Thomas Petazzoni @ 2012-10-26  6:33 UTC (permalink / raw)
  To: buildroot


Hello,

On 2012-10-25, 124 random build tests have been done and
submitted on autobuild.buildroot.net.
 62 builds have been successful
 62 builds have failed

Below the results of the failed builds. Successful builds are omitted.

Build 21cf7b4d5cf69627985f5d1cb698fe4c4f5226b9
==============================================

Status         : NOK
Failure reason : gnutls-2.12.20
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-10-25 00:01:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/21cf7b4d5cf69627985f5d1cb698fe4c4f5226b9/build-end.log
Complete log   : http://autobuild.buildroot.net/results/21cf7b4d5cf69627985f5d1cb698fe4c4f5226b9/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/21cf7b4d5cf69627985f5d1cb698fe4c4f5226b9/config
Defconfig      : http://autobuild.buildroot.net/results/21cf7b4d5cf69627985f5d1cb698fe4c4f5226b9/defconfig

Build 08b7f03492556226858f9974d3d7cec0332f0eda
==============================================

Status         : NOK
Failure reason : gnutls-2.12.20
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-10-25 00:44:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/08b7f03492556226858f9974d3d7cec0332f0eda/build-end.log
Complete log   : http://autobuild.buildroot.net/results/08b7f03492556226858f9974d3d7cec0332f0eda/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/08b7f03492556226858f9974d3d7cec0332f0eda/config
Defconfig      : http://autobuild.buildroot.net/results/08b7f03492556226858f9974d3d7cec0332f0eda/defconfig

Build e8673659f2d377d6e46aaa69ac9c16f714d9a9f0
==============================================

Status         : NOK
Failure reason : qt-4.8.3
Architecture   : sh4
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 00:49:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/e8673659f2d377d6e46aaa69ac9c16f714d9a9f0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e8673659f2d377d6e46aaa69ac9c16f714d9a9f0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e8673659f2d377d6e46aaa69ac9c16f714d9a9f0/config
Defconfig      : http://autobuild.buildroot.net/results/e8673659f2d377d6e46aaa69ac9c16f714d9a9f0/defconfig

Build b99d31cd1841ca87fee1145dcc3ac0bdd2d860ca
==============================================

Status         : NOK
Failure reason : strace-4.7
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-10-25 01:08:41
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/b99d31cd1841ca87fee1145dcc3ac0bdd2d860ca/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b99d31cd1841ca87fee1145dcc3ac0bdd2d860ca/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b99d31cd1841ca87fee1145dcc3ac0bdd2d860ca/config
Defconfig      : http://autobuild.buildroot.net/results/b99d31cd1841ca87fee1145dcc3ac0bdd2d860ca/defconfig

Build 88a0c5f5fd619a7a9f9cef232c40797e55d1362d
==============================================

Status         : NOK
Failure reason : gdbhost-7.4.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 01:09:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/88a0c5f5fd619a7a9f9cef232c40797e55d1362d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/88a0c5f5fd619a7a9f9cef232c40797e55d1362d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/88a0c5f5fd619a7a9f9cef232c40797e55d1362d/config
Defconfig      : http://autobuild.buildroot.net/results/88a0c5f5fd619a7a9f9cef232c40797e55d1362d/defconfig

Build 7580ae4710408c045cc90dd7c5f54f1cb6134b3f
==============================================

Status         : NOK
Failure reason : gnutls-2.12.20
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-10-25 01:34:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/7580ae4710408c045cc90dd7c5f54f1cb6134b3f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7580ae4710408c045cc90dd7c5f54f1cb6134b3f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7580ae4710408c045cc90dd7c5f54f1cb6134b3f/config
Defconfig      : http://autobuild.buildroot.net/results/7580ae4710408c045cc90dd7c5f54f1cb6134b3f/defconfig

Build f713641374a18409c6f60ab4122742a9d9d9409f
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 02:25:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/f713641374a18409c6f60ab4122742a9d9d9409f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f713641374a18409c6f60ab4122742a9d9d9409f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f713641374a18409c6f60ab4122742a9d9d9409f/config
Defconfig      : http://autobuild.buildroot.net/results/f713641374a18409c6f60ab4122742a9d9d9409f/defconfig

Build 7f334ff4aae0a6daec022c2ec2c988c62a876baf
==============================================

Status         : NOK
Failure reason : gnutls-2.12.20
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-10-25 02:47:29
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/7f334ff4aae0a6daec022c2ec2c988c62a876baf/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7f334ff4aae0a6daec022c2ec2c988c62a876baf/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7f334ff4aae0a6daec022c2ec2c988c62a876baf/config
Defconfig      : http://autobuild.buildroot.net/results/7f334ff4aae0a6daec022c2ec2c988c62a876baf/defconfig

Build c18d401550b72e9b1e5e324bd599d2063a4378e1
==============================================

Status         : NOK
Failure reason : util-linux-2.20.1
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 03:22:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/c18d401550b72e9b1e5e324bd599d2063a4378e1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c18d401550b72e9b1e5e324bd599d2063a4378e1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c18d401550b72e9b1e5e324bd599d2063a4378e1/config
Defconfig      : http://autobuild.buildroot.net/results/c18d401550b72e9b1e5e324bd599d2063a4378e1/defconfig

Build d18153028b2dba9c3f60c9f6c74d2a3f9ffc35ad
==============================================

Status         : NOK
Failure reason : libdaemon-0.14
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 03:32:31
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/d18153028b2dba9c3f60c9f6c74d2a3f9ffc35ad/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d18153028b2dba9c3f60c9f6c74d2a3f9ffc35ad/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d18153028b2dba9c3f60c9f6c74d2a3f9ffc35ad/config
Defconfig      : http://autobuild.buildroot.net/results/d18153028b2dba9c3f60c9f6c74d2a3f9ffc35ad/defconfig

Build ca710fb0fdfd18f879740e63649b4d2d09c02e4f
==============================================

Status         : NOK
Failure reason : host-microperl-5.12.4
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 03:36:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/ca710fb0fdfd18f879740e63649b4d2d09c02e4f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ca710fb0fdfd18f879740e63649b4d2d09c02e4f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ca710fb0fdfd18f879740e63649b4d2d09c02e4f/config
Defconfig      : http://autobuild.buildroot.net/results/ca710fb0fdfd18f879740e63649b4d2d09c02e4f/defconfig

Build a74c47e34addc04ec6c6b74c3fe63263045096fa
==============================================

Status         : NOK
Failure reason : gnutls-2.12.20
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-10-25 04:02:53
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/a74c47e34addc04ec6c6b74c3fe63263045096fa/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a74c47e34addc04ec6c6b74c3fe63263045096fa/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a74c47e34addc04ec6c6b74c3fe63263045096fa/config
Defconfig      : http://autobuild.buildroot.net/results/a74c47e34addc04ec6c6b74c3fe63263045096fa/defconfig

Build 2dda88c702c7ca380fbeea28d25916a3998d5e60
==============================================

Status         : NOK
Failure reason : luajit-2.0.0-beta11
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 04:29:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/2dda88c702c7ca380fbeea28d25916a3998d5e60/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2dda88c702c7ca380fbeea28d25916a3998d5e60/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2dda88c702c7ca380fbeea28d25916a3998d5e60/config
Defconfig      : http://autobuild.buildroot.net/results/2dda88c702c7ca380fbeea28d25916a3998d5e60/defconfig

Build ac61902ec57ad4434e5eb5add76342c1f35f23ed
==============================================

Status         : NOK
Failure reason : gnutls-2.12.20
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-10-25 04:55:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/ac61902ec57ad4434e5eb5add76342c1f35f23ed/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ac61902ec57ad4434e5eb5add76342c1f35f23ed/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ac61902ec57ad4434e5eb5add76342c1f35f23ed/config
Defconfig      : http://autobuild.buildroot.net/results/ac61902ec57ad4434e5eb5add76342c1f35f23ed/defconfig

Build 5c4f5b2dafc5a16c42c25aa6aed82b25b2aa4f49
==============================================

Status         : NOK
Failure reason : php-5.3.16
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 05:09:44
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/5c4f5b2dafc5a16c42c25aa6aed82b25b2aa4f49/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5c4f5b2dafc5a16c42c25aa6aed82b25b2aa4f49/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5c4f5b2dafc5a16c42c25aa6aed82b25b2aa4f49/config
Defconfig      : http://autobuild.buildroot.net/results/5c4f5b2dafc5a16c42c25aa6aed82b25b2aa4f49/defconfig

Build cd375c47788e797654eb359c28dd7b411b03a4d9
==============================================

Status         : NOK
Failure reason : strace-4.7
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-10-25 05:47:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/cd375c47788e797654eb359c28dd7b411b03a4d9/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cd375c47788e797654eb359c28dd7b411b03a4d9/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cd375c47788e797654eb359c28dd7b411b03a4d9/config
Defconfig      : http://autobuild.buildroot.net/results/cd375c47788e797654eb359c28dd7b411b03a4d9/defconfig

Build 11cd2a1708c1e415ae28b1d1512e550a8cebbe5f
==============================================

Status         : NOK
Failure reason : tremor-18153
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 05:54:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/11cd2a1708c1e415ae28b1d1512e550a8cebbe5f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/11cd2a1708c1e415ae28b1d1512e550a8cebbe5f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/11cd2a1708c1e415ae28b1d1512e550a8cebbe5f/config
Defconfig      : http://autobuild.buildroot.net/results/11cd2a1708c1e415ae28b1d1512e550a8cebbe5f/defconfig

Build b19a9ad0d7c63136fbaf874af1df792f4860244e
==============================================

Status         : NOK
Failure reason : libnspr-4.8.7
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 06:14:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/b19a9ad0d7c63136fbaf874af1df792f4860244e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b19a9ad0d7c63136fbaf874af1df792f4860244e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b19a9ad0d7c63136fbaf874af1df792f4860244e/config
Defconfig      : http://autobuild.buildroot.net/results/b19a9ad0d7c63136fbaf874af1df792f4860244e/defconfig

Build a4c1be43a9398f4d65da885eb740b5b069a6b721
==============================================

Status         : NOK
Failure reason : iproute2-3.6.0
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 07:50:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/a4c1be43a9398f4d65da885eb740b5b069a6b721/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a4c1be43a9398f4d65da885eb740b5b069a6b721/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a4c1be43a9398f4d65da885eb740b5b069a6b721/config
Defconfig      : http://autobuild.buildroot.net/results/a4c1be43a9398f4d65da885eb740b5b069a6b721/defconfig

Build 7bcf8579fdb51c583c9c6e04ed492fa668b83107
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.25
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 08:20:02
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/7bcf8579fdb51c583c9c6e04ed492fa668b83107/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7bcf8579fdb51c583c9c6e04ed492fa668b83107/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7bcf8579fdb51c583c9c6e04ed492fa668b83107/config
Defconfig      : http://autobuild.buildroot.net/results/7bcf8579fdb51c583c9c6e04ed492fa668b83107/defconfig

Build 41529468e86fd8a59f74caf32372d0f836404b1e
==============================================

Status         : NOK
Failure reason : libmbus-0.7.0
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-10-25 08:33:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/41529468e86fd8a59f74caf32372d0f836404b1e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/41529468e86fd8a59f74caf32372d0f836404b1e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/41529468e86fd8a59f74caf32372d0f836404b1e/config
Defconfig      : http://autobuild.buildroot.net/results/41529468e86fd8a59f74caf32372d0f836404b1e/defconfig

Build 9abe7d095cc460c9cbc149bd7931ad61bdf2fbfe
==============================================

Status         : NOK
Failure reason : strace-4.7
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-10-25 09:07:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/9abe7d095cc460c9cbc149bd7931ad61bdf2fbfe/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9abe7d095cc460c9cbc149bd7931ad61bdf2fbfe/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9abe7d095cc460c9cbc149bd7931ad61bdf2fbfe/config
Defconfig      : http://autobuild.buildroot.net/results/9abe7d095cc460c9cbc149bd7931ad61bdf2fbfe/defconfig

Build 34de3f34f3845eb6bbbee2514da531ce276b24b0
==============================================

Status         : NOK
Failure reason : strace-4.7
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 09:09:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/34de3f34f3845eb6bbbee2514da531ce276b24b0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/34de3f34f3845eb6bbbee2514da531ce276b24b0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/34de3f34f3845eb6bbbee2514da531ce276b24b0/config
Defconfig      : http://autobuild.buildroot.net/results/34de3f34f3845eb6bbbee2514da531ce276b24b0/defconfig

Build 4eef9af87d737cdce06348dab12b7c3c18cbf095
==============================================

Status         : NOK
Failure reason : sconeserver-178
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 09:55:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/4eef9af87d737cdce06348dab12b7c3c18cbf095/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4eef9af87d737cdce06348dab12b7c3c18cbf095/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4eef9af87d737cdce06348dab12b7c3c18cbf095/config
Defconfig      : http://autobuild.buildroot.net/results/4eef9af87d737cdce06348dab12b7c3c18cbf095/defconfig

Build b915c455d851bc2429e6c86cc730f693781cae2b
==============================================

Status         : NOK
Failure reason : icu-4.8.1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 10:15:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/b915c455d851bc2429e6c86cc730f693781cae2b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b915c455d851bc2429e6c86cc730f693781cae2b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b915c455d851bc2429e6c86cc730f693781cae2b/config
Defconfig      : http://autobuild.buildroot.net/results/b915c455d851bc2429e6c86cc730f693781cae2b/defconfig

Build f663349b0700d2ba9bdea66f4db8fe528b971b6f
==============================================

Status         : NOK
Failure reason : python-2.7.2
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-10-25 10:28:17
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/f663349b0700d2ba9bdea66f4db8fe528b971b6f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f663349b0700d2ba9bdea66f4db8fe528b971b6f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f663349b0700d2ba9bdea66f4db8fe528b971b6f/config
Defconfig      : http://autobuild.buildroot.net/results/f663349b0700d2ba9bdea66f4db8fe528b971b6f/defconfig

Build 86425fd6d7a160981767c24a53737f3a3e6f1eb1
==============================================

Status         : NOK
Failure reason : libmbus-0.7.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 10:54:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/86425fd6d7a160981767c24a53737f3a3e6f1eb1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/86425fd6d7a160981767c24a53737f3a3e6f1eb1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/86425fd6d7a160981767c24a53737f3a3e6f1eb1/config
Defconfig      : http://autobuild.buildroot.net/results/86425fd6d7a160981767c24a53737f3a3e6f1eb1/defconfig

Build 98b73607751ec91365cae4082184b7dd6af8e488
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/dl/gdb-.tar.bz2] Error 1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 10:55:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/98b73607751ec91365cae4082184b7dd6af8e488/build-end.log
Complete log   : http://autobuild.buildroot.net/results/98b73607751ec91365cae4082184b7dd6af8e488/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/98b73607751ec91365cae4082184b7dd6af8e488/config
Defconfig      : http://autobuild.buildroot.net/results/98b73607751ec91365cae4082184b7dd6af8e488/defconfig

Build 2fccd8dd645fb7d7c5f511420a6afabebe2e9294
==============================================

Status         : NOK
Failure reason : gsl-1.15
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 12:00:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/2fccd8dd645fb7d7c5f511420a6afabebe2e9294/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2fccd8dd645fb7d7c5f511420a6afabebe2e9294/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2fccd8dd645fb7d7c5f511420a6afabebe2e9294/config
Defconfig      : http://autobuild.buildroot.net/results/2fccd8dd645fb7d7c5f511420a6afabebe2e9294/defconfig

Build fcf6dbb1d5010de645e59fb414e8d69d48aebd39
==============================================

Status         : NOK
Failure reason : libmbus-0.7.0
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-10-25 12:04:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/fcf6dbb1d5010de645e59fb414e8d69d48aebd39/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fcf6dbb1d5010de645e59fb414e8d69d48aebd39/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fcf6dbb1d5010de645e59fb414e8d69d48aebd39/config
Defconfig      : http://autobuild.buildroot.net/results/fcf6dbb1d5010de645e59fb414e8d69d48aebd39/defconfig

Build 8c9080a4ed5213ba7fee6fef1cfaa73b8f69aace
==============================================

Status         : NOK
Failure reason : pciutils-3.1.10
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-10-25 12:22:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/8c9080a4ed5213ba7fee6fef1cfaa73b8f69aace/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8c9080a4ed5213ba7fee6fef1cfaa73b8f69aace/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8c9080a4ed5213ba7fee6fef1cfaa73b8f69aace/config
Defconfig      : http://autobuild.buildroot.net/results/8c9080a4ed5213ba7fee6fef1cfaa73b8f69aace/defconfig

Build 89ceca9ac362be5bde7880542133724c29461498
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/dl/gdb-.tar.bz2] Error 1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 12:34:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/89ceca9ac362be5bde7880542133724c29461498/build-end.log
Complete log   : http://autobuild.buildroot.net/results/89ceca9ac362be5bde7880542133724c29461498/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/89ceca9ac362be5bde7880542133724c29461498/config
Defconfig      : http://autobuild.buildroot.net/results/89ceca9ac362be5bde7880542133724c29461498/defconfig

Build 4ed302f3787cac968f70d1c79d9815017ffc5487
==============================================

Status         : NOK
Failure reason : gnutls-2.12.20
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-10-25 12:51:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/4ed302f3787cac968f70d1c79d9815017ffc5487/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4ed302f3787cac968f70d1c79d9815017ffc5487/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4ed302f3787cac968f70d1c79d9815017ffc5487/config
Defconfig      : http://autobuild.buildroot.net/results/4ed302f3787cac968f70d1c79d9815017ffc5487/defconfig

Build 7110ebfb699fc054c9b20cc575514ab6774a8296
==============================================

Status         : NOK
Failure reason : rtorrent-0.9.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 13:20:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/7110ebfb699fc054c9b20cc575514ab6774a8296/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7110ebfb699fc054c9b20cc575514ab6774a8296/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7110ebfb699fc054c9b20cc575514ab6774a8296/config
Defconfig      : http://autobuild.buildroot.net/results/7110ebfb699fc054c9b20cc575514ab6774a8296/defconfig

Build 9fb30d8ffd580dd7ad5d88d11b290edde4ae9110
==============================================

Status         : NOK
Failure reason : gnutls-2.12.20
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-10-25 13:40:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/9fb30d8ffd580dd7ad5d88d11b290edde4ae9110/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9fb30d8ffd580dd7ad5d88d11b290edde4ae9110/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9fb30d8ffd580dd7ad5d88d11b290edde4ae9110/config
Defconfig      : http://autobuild.buildroot.net/results/9fb30d8ffd580dd7ad5d88d11b290edde4ae9110/defconfig

Build 16b186a018b75be817945eaefd13999099776983
==============================================

Status         : NOK
Failure reason : luajit-2.0.0-beta11
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 14:07:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/16b186a018b75be817945eaefd13999099776983/build-end.log
Complete log   : http://autobuild.buildroot.net/results/16b186a018b75be817945eaefd13999099776983/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/16b186a018b75be817945eaefd13999099776983/config
Defconfig      : http://autobuild.buildroot.net/results/16b186a018b75be817945eaefd13999099776983/defconfig

Build 2114ca91b4f25b263271d5ed6e634065e988fd3f
==============================================

Status         : NOK
Failure reason : gnutls-2.12.20
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-10-25 14:25:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/2114ca91b4f25b263271d5ed6e634065e988fd3f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2114ca91b4f25b263271d5ed6e634065e988fd3f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2114ca91b4f25b263271d5ed6e634065e988fd3f/config
Defconfig      : http://autobuild.buildroot.net/results/2114ca91b4f25b263271d5ed6e634065e988fd3f/defconfig

Build 5b658b886597ba61079497a56fd7b5b4947f5e15
==============================================

Status         : NOK
Failure reason : gnutls-2.12.20
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 14:30:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/5b658b886597ba61079497a56fd7b5b4947f5e15/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5b658b886597ba61079497a56fd7b5b4947f5e15/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5b658b886597ba61079497a56fd7b5b4947f5e15/config
Defconfig      : http://autobuild.buildroot.net/results/5b658b886597ba61079497a56fd7b5b4947f5e15/defconfig

Build 64003b540fb25cc15dd7415aca8ffef5f2ddab3b
==============================================

Status         : NOK
Failure reason : mtd-1.5.0
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 15:09:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/64003b540fb25cc15dd7415aca8ffef5f2ddab3b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/64003b540fb25cc15dd7415aca8ffef5f2ddab3b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/64003b540fb25cc15dd7415aca8ffef5f2ddab3b/config
Defconfig      : http://autobuild.buildroot.net/results/64003b540fb25cc15dd7415aca8ffef5f2ddab3b/defconfig

Build f7dbe1bce3e0a7ea9a867fff7e9b54aee7b28ce0
==============================================

Status         : NOK
Failure reason : boost-1.49.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 15:13:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/f7dbe1bce3e0a7ea9a867fff7e9b54aee7b28ce0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f7dbe1bce3e0a7ea9a867fff7e9b54aee7b28ce0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f7dbe1bce3e0a7ea9a867fff7e9b54aee7b28ce0/config
Defconfig      : http://autobuild.buildroot.net/results/f7dbe1bce3e0a7ea9a867fff7e9b54aee7b28ce0/defconfig

Build aee80b70652a744f40fa242ee627c2d7d4e117e1
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 15:16:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/aee80b70652a744f40fa242ee627c2d7d4e117e1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/aee80b70652a744f40fa242ee627c2d7d4e117e1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/aee80b70652a744f40fa242ee627c2d7d4e117e1/config
Defconfig      : http://autobuild.buildroot.net/results/aee80b70652a744f40fa242ee627c2d7d4e117e1/defconfig

Build 6358d99a6987c133a69d23d830eab3356d885c65
==============================================

Status         : NOK
Failure reason : gettext-0.16.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 15:23:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/6358d99a6987c133a69d23d830eab3356d885c65/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6358d99a6987c133a69d23d830eab3356d885c65/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6358d99a6987c133a69d23d830eab3356d885c65/config
Defconfig      : http://autobuild.buildroot.net/results/6358d99a6987c133a69d23d830eab3356d885c65/defconfig

Build 92e4ab79a28a52429209a5e326494efddd8a8ecc
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/dl/gdb-.tar.bz2] Error 1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 15:43:15
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/92e4ab79a28a52429209a5e326494efddd8a8ecc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/92e4ab79a28a52429209a5e326494efddd8a8ecc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/92e4ab79a28a52429209a5e326494efddd8a8ecc/config
Defconfig      : http://autobuild.buildroot.net/results/92e4ab79a28a52429209a5e326494efddd8a8ecc/defconfig

Build b4b26dd9c7d7bebe45638ba125fb49a5f5d0cc14
==============================================

Status         : NOK
Failure reason : matchbox-lib-1.9
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 16:08:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/b4b26dd9c7d7bebe45638ba125fb49a5f5d0cc14/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b4b26dd9c7d7bebe45638ba125fb49a5f5d0cc14/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b4b26dd9c7d7bebe45638ba125fb49a5f5d0cc14/config
Defconfig      : http://autobuild.buildroot.net/results/b4b26dd9c7d7bebe45638ba125fb49a5f5d0cc14/defconfig

Build 23d3f7e9290ce8d36aa27e706bf33f031ef52813
==============================================

Status         : NOK
Failure reason : strace-4.7
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 17:38:34
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/23d3f7e9290ce8d36aa27e706bf33f031ef52813/build-end.log
Complete log   : http://autobuild.buildroot.net/results/23d3f7e9290ce8d36aa27e706bf33f031ef52813/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/23d3f7e9290ce8d36aa27e706bf33f031ef52813/config
Defconfig      : http://autobuild.buildroot.net/results/23d3f7e9290ce8d36aa27e706bf33f031ef52813/defconfig

Build 0a47643edfe99eac75ae7406a4e17a08ac795700
==============================================

Status         : NOK
Failure reason : gnutls-2.12.20
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 18:01:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/0a47643edfe99eac75ae7406a4e17a08ac795700/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0a47643edfe99eac75ae7406a4e17a08ac795700/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0a47643edfe99eac75ae7406a4e17a08ac795700/config
Defconfig      : http://autobuild.buildroot.net/results/0a47643edfe99eac75ae7406a4e17a08ac795700/defconfig

Build a6363515971ec95cc266ace08cf4514a6b38a66c
==============================================

Status         : NOK
Failure reason : libnspr-4.8.7
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 18:33:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/a6363515971ec95cc266ace08cf4514a6b38a66c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a6363515971ec95cc266ace08cf4514a6b38a66c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a6363515971ec95cc266ace08cf4514a6b38a66c/config
Defconfig      : http://autobuild.buildroot.net/results/a6363515971ec95cc266ace08cf4514a6b38a66c/defconfig

Build 02980144467ab7cf414270e8e76fe0d334c83933
==============================================

Status         : NOK
Failure reason : strace-4.7
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-10-25 19:04:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/02980144467ab7cf414270e8e76fe0d334c83933/build-end.log
Complete log   : http://autobuild.buildroot.net/results/02980144467ab7cf414270e8e76fe0d334c83933/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/02980144467ab7cf414270e8e76fe0d334c83933/config
Defconfig      : http://autobuild.buildroot.net/results/02980144467ab7cf414270e8e76fe0d334c83933/defconfig

Build 6d4a680b472a7cb6637595b7abe104cbc0276028
==============================================

Status         : NOK
Failure reason : lua-5.1.5
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 19:55:02
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/6d4a680b472a7cb6637595b7abe104cbc0276028/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6d4a680b472a7cb6637595b7abe104cbc0276028/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6d4a680b472a7cb6637595b7abe104cbc0276028/config
Defconfig      : http://autobuild.buildroot.net/results/6d4a680b472a7cb6637595b7abe104cbc0276028/defconfig

Build fa69d123a8f0fe6a6929cd26c7c570ba2e5d2474
==============================================

Status         : NOK
Failure reason : gnutls-2.12.20
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-10-25 20:07:14
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/fa69d123a8f0fe6a6929cd26c7c570ba2e5d2474/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fa69d123a8f0fe6a6929cd26c7c570ba2e5d2474/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fa69d123a8f0fe6a6929cd26c7c570ba2e5d2474/config
Defconfig      : http://autobuild.buildroot.net/results/fa69d123a8f0fe6a6929cd26c7c570ba2e5d2474/defconfig

Build 58fab0b0524b0b032e357ed86b9d11e998a661af
==============================================

Status         : NOK
Failure reason : mplayer-1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 20:14:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/58fab0b0524b0b032e357ed86b9d11e998a661af/build-end.log
Complete log   : http://autobuild.buildroot.net/results/58fab0b0524b0b032e357ed86b9d11e998a661af/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/58fab0b0524b0b032e357ed86b9d11e998a661af/config
Defconfig      : http://autobuild.buildroot.net/results/58fab0b0524b0b032e357ed86b9d11e998a661af/defconfig

Build 05c6bea8d8df77cf8c509570b70850b7c7dba3f8
==============================================

Status         : NOK
Failure reason : gmpc-11.8.16
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 21:08:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/05c6bea8d8df77cf8c509570b70850b7c7dba3f8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/05c6bea8d8df77cf8c509570b70850b7c7dba3f8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/05c6bea8d8df77cf8c509570b70850b7c7dba3f8/config
Defconfig      : http://autobuild.buildroot.net/results/05c6bea8d8df77cf8c509570b70850b7c7dba3f8/defconfig

Build 7615956fdd113cc18a78152894a834c5d80c7935
==============================================

Status         : NOK
Failure reason : gnutls-2.12.20
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-10-25 21:12:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/7615956fdd113cc18a78152894a834c5d80c7935/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7615956fdd113cc18a78152894a834c5d80c7935/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7615956fdd113cc18a78152894a834c5d80c7935/config
Defconfig      : http://autobuild.buildroot.net/results/7615956fdd113cc18a78152894a834c5d80c7935/defconfig

Build 9766cd8a2b3b70b723ee792893023efcf86a8c1e
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.25
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 21:27:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/9766cd8a2b3b70b723ee792893023efcf86a8c1e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9766cd8a2b3b70b723ee792893023efcf86a8c1e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9766cd8a2b3b70b723ee792893023efcf86a8c1e/config
Defconfig      : http://autobuild.buildroot.net/results/9766cd8a2b3b70b723ee792893023efcf86a8c1e/defconfig

Build ff9bf8f688279385d6e63a00f0ef5326a82ae3ca
==============================================

Status         : NOK
Failure reason : libmbus-0.7.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 22:06:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/ff9bf8f688279385d6e63a00f0ef5326a82ae3ca/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ff9bf8f688279385d6e63a00f0ef5326a82ae3ca/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ff9bf8f688279385d6e63a00f0ef5326a82ae3ca/config
Defconfig      : http://autobuild.buildroot.net/results/ff9bf8f688279385d6e63a00f0ef5326a82ae3ca/defconfig

Build 69e5123f146f73fd6e08548df6796c863a74408a
==============================================

Status         : NOK
Failure reason : strace-4.7
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-10-25 22:21:22
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/69e5123f146f73fd6e08548df6796c863a74408a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/69e5123f146f73fd6e08548df6796c863a74408a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/69e5123f146f73fd6e08548df6796c863a74408a/config
Defconfig      : http://autobuild.buildroot.net/results/69e5123f146f73fd6e08548df6796c863a74408a/defconfig

Build ad1a352dbd4d5e50acdeb759e22fa56b48d8706f
==============================================

Status         : NOK
Failure reason : libmbus-0.7.0
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-10-25 22:33:53
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/ad1a352dbd4d5e50acdeb759e22fa56b48d8706f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ad1a352dbd4d5e50acdeb759e22fa56b48d8706f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ad1a352dbd4d5e50acdeb759e22fa56b48d8706f/config
Defconfig      : http://autobuild.buildroot.net/results/ad1a352dbd4d5e50acdeb759e22fa56b48d8706f/defconfig

Build 071f63d3023e5213ae7963e28582a1f681138b4f
==============================================

Status         : NOK
Failure reason : icu-4.8.1.1
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 22:53:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/071f63d3023e5213ae7963e28582a1f681138b4f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/071f63d3023e5213ae7963e28582a1f681138b4f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/071f63d3023e5213ae7963e28582a1f681138b4f/config
Defconfig      : http://autobuild.buildroot.net/results/071f63d3023e5213ae7963e28582a1f681138b4f/defconfig

Build 96f33b6d3a9391f6195610bbb834945335dd0d38
==============================================

Status         : NOK
Failure reason : libmbus-0.7.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-10-25 23:04:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/96f33b6d3a9391f6195610bbb834945335dd0d38/build-end.log
Complete log   : http://autobuild.buildroot.net/results/96f33b6d3a9391f6195610bbb834945335dd0d38/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/96f33b6d3a9391f6195610bbb834945335dd0d38/config
Defconfig      : http://autobuild.buildroot.net/results/96f33b6d3a9391f6195610bbb834945335dd0d38/defconfig

Build db42e85d2986cc0d9ea8dc8db8da16ac7c2122b3
==============================================

Status         : NOK
Failure reason : gnutls-2.12.20
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-10-25 23:19:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/db42e85d2986cc0d9ea8dc8db8da16ac7c2122b3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/db42e85d2986cc0d9ea8dc8db8da16ac7c2122b3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/db42e85d2986cc0d9ea8dc8db8da16ac7c2122b3/config
Defconfig      : http://autobuild.buildroot.net/results/db42e85d2986cc0d9ea8dc8db8da16ac7c2122b3/defconfig

Build b58a416d302c7b1ab1547b750b83106ea1d120f5
==============================================

Status         : NOK
Failure reason : gnutls-2.12.20
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-10-25 23:44:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/b58a416d302c7b1ab1547b750b83106ea1d120f5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b58a416d302c7b1ab1547b750b83106ea1d120f5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b58a416d302c7b1ab1547b750b83106ea1d120f5/config
Defconfig      : http://autobuild.buildroot.net/results/b58a416d302c7b1ab1547b750b83106ea1d120f5/defconfig

Build 653a4d8e4a1284f5ca741ddb49791713ce60a611
==============================================

Status         : NOK
Failure reason : libmbus-0.7.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-10-25 23:52:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5a61fbd82394f9bc9317535b717a2e1dd51dea7d
End of log     : http://autobuild.buildroot.net/results/653a4d8e4a1284f5ca741ddb49791713ce60a611/build-end.log
Complete log   : http://autobuild.buildroot.net/results/653a4d8e4a1284f5ca741ddb49791713ce60a611/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/653a4d8e4a1284f5ca741ddb49791713ce60a611/config
Defconfig      : http://autobuild.buildroot.net/results/653a4d8e4a1284f5ca741ddb49791713ce60a611/defconfig



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] [PATCH 3/3] at91sam92*: update defconfigs to use latest u-boot
From: Alexandre Belloni @ 2012-10-25 22:15 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1351203333-26588-1-git-send-email-alexandre.belloni@piout.net>

Signed-off-by: Alexandre Belloni <alexandre.belloni@piout.net>
---
 configs/at91sam9260dfc_defconfig |    6 ------
 configs/at91sam9261ek_defconfig  |    6 ------
 configs/at91sam9263ek_defconfig  |    6 ------
 3 files changed, 18 deletions(-)

diff --git a/configs/at91sam9260dfc_defconfig b/configs/at91sam9260dfc_defconfig
index 921afa8..085997a 100644
--- a/configs/at91sam9260dfc_defconfig
+++ b/configs/at91sam9260dfc_defconfig
@@ -9,17 +9,11 @@ BR2_PACKAGE_HOST_SAM_BA=y
 # First stage bootloader
 BR2_TARGET_AT91BOOTSTRAP=y
 BR2_TARGET_AT91BOOTSTRAP_BOARD="at91sam9260ek"
-BR2_TARGET_AT91BOOTSTRAP_DATAFLASH=y
 
 # Second stage bootloader
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BOARDNAME="at91sam9260ek_dataflash_cs0"
-BR2_TARGET_UBOOT_2011_12=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_USE_DEFCONFIG=y
 BR2_LINUX_KERNEL_DEFCONFIG="at91sam9260"
-
-# Filesystem
-BR2_TARGET_ROOTFS_TAR=y
diff --git a/configs/at91sam9261ek_defconfig b/configs/at91sam9261ek_defconfig
index aafb166..c53e732 100644
--- a/configs/at91sam9261ek_defconfig
+++ b/configs/at91sam9261ek_defconfig
@@ -9,17 +9,11 @@ BR2_PACKAGE_HOST_SAM_BA=y
 # First stage bootloader
 BR2_TARGET_AT91BOOTSTRAP=y
 BR2_TARGET_AT91BOOTSTRAP_BOARD="at91sam9261ek"
-BR2_TARGET_AT91BOOTSTRAP_DATAFLASH=y
 
 # Second stage bootloader
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BOARDNAME="at91sam9261ek_dataflash_cs0"
-BR2_TARGET_UBOOT_2011_12=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_USE_DEFCONFIG=y
 BR2_LINUX_KERNEL_DEFCONFIG="at91sam9261"
-
-# Filesystem
-BR2_TARGET_ROOTFS_TAR=y
diff --git a/configs/at91sam9263ek_defconfig b/configs/at91sam9263ek_defconfig
index 2cd82c0..208e057 100644
--- a/configs/at91sam9263ek_defconfig
+++ b/configs/at91sam9263ek_defconfig
@@ -9,17 +9,11 @@ BR2_PACKAGE_HOST_SAM_BA=y
 # First stage bootloader
 BR2_TARGET_AT91BOOTSTRAP=y
 BR2_TARGET_AT91BOOTSTRAP_BOARD="at91sam9263ek"
-BR2_TARGET_AT91BOOTSTRAP_DATAFLASH=y
 
 # Second stage bootloader
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BOARDNAME="at91sam9263ek_dataflash_cs0"
-BR2_TARGET_UBOOT_2011_12=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_USE_DEFCONFIG=y
 BR2_LINUX_KERNEL_DEFCONFIG="at91sam9263"
-
-# Filesystem
-BR2_TARGET_ROOTFS_TAR=y
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH 2/3] u-boot: update at91 patches to match mainline
From: Alexandre Belloni @ 2012-10-25 22:15 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1351203333-26588-1-git-send-email-alexandre.belloni@piout.net>

The patch that was included in buildroot was not the same as the final
one submitted in the mainline.

Signed-off-by: Alexandre Belloni <alexandre.belloni@piout.net>
---
 ...011.12-change-kernel-address-in-dataflash.patch |  210 +++++++++++---------
 ...012.04-change-kernel-address-in-dataflash.patch |  210 +++++++++++---------
 2 files changed, 224 insertions(+), 196 deletions(-)

diff --git a/boot/uboot/uboot-2011.12/uboot-2011.12-change-kernel-address-in-dataflash.patch b/boot/uboot/uboot-2011.12/uboot-2011.12-change-kernel-address-in-dataflash.patch
index 4cdbb98..c7d9a7e 100644
--- a/boot/uboot/uboot-2011.12/uboot-2011.12-change-kernel-address-in-dataflash.patch
+++ b/boot/uboot/uboot-2011.12/uboot-2011.12-change-kernel-address-in-dataflash.patch
@@ -1,7 +1,9 @@
-From 9fc4787c7a6c797db649831f86e49c4bf9780b4e Mon Sep 17 00:00:00 2001
+From e139cb31d32a4f39241bfd83bf622a97d08f6c9d Mon Sep 17 00:00:00 2001
 From: Alexandre Belloni <alexandre.belloni@piout.net>
-Date: Mon, 2 Jan 2012 03:51:11 +0100
-Subject: [PATCH] Change kernel address in dataflash to match u-boot's size
+Date: Mon, 2 Jul 2012 04:26:58 +0000
+Subject: [PATCH] AT91SAM9*: Change kernel address in dataflash to
+ match u-boot's size
+
 
 On at91sam platforms, u-boot grew larger than the allocated size in
 dataflash, the layout was:
@@ -9,173 +11,185 @@ bootstrap  0x00000000
 ubootenv   0x00004200
 uboot      0x00008400
 kernel     0x00042000
+fs         0x00252000
 
 u-boot with the defconfig doesn't seem to fit in 0x42000 - 0x8400 =
 0x39C00 bytes anymore.
 
 Now, the layout is:
 bootstrap  0x00000000
-uboot      0x00004000
-ubootenv   0x00084000
-ubootenv2  0x00088000
-kernel     0x0008C000
+ubootenv   0x00004200
+uboot      0x00008400
+kernel     0x00084000
+fs         0x00294000
 
 Signed-off-by: Alexandre Belloni <alexandre.belloni@piout.net>
+Signed-off-by: Andreas Bie?mann <andreas.devel@googlemail.com>
 ---
- include/configs/at91sam9260ek.h |   18 ++++++++++++------
- include/configs/at91sam9261ek.h |   18 ++++++++++++------
- include/configs/at91sam9263ek.h |   10 +++++++---
- include/configs/at91sam9rlek.h  |   10 +++++++---
- 4 files changed, 38 insertions(+), 18 deletions(-)
+ board/atmel/at91sam9260ek/partition.c |    6 +++---
+ board/atmel/at91sam9261ek/partition.c |    6 +++---
+ board/atmel/at91sam9263ek/partition.c |    6 +++---
+ board/atmel/at91sam9rlek/partition.c  |    6 +++---
+ include/configs/at91sam9260ek.h       |    5 +++--
+ include/configs/at91sam9261ek.h       |    5 +++--
+ include/configs/at91sam9263ek.h       |    2 +-
+ include/configs/at91sam9rlek.h        |    3 ++-
+ 8 files changed, 21 insertions(+), 18 deletions(-)
 
+diff --git a/board/atmel/at91sam9260ek/partition.c b/board/atmel/at91sam9260ek/partition.c
+index 2629c67..9ec054f 100644
+--- a/board/atmel/at91sam9260ek/partition.c
++++ b/board/atmel/at91sam9260ek/partition.c
+@@ -34,7 +34,7 @@ struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
+ dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
+ 	{0x00000000, 0x000041FF, FLAG_PROTECT_SET,   0, "Bootstrap"},
+ 	{0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
+-	{0x00008400, 0x00041FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
+-	{0x00042000, 0x00251FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
+-	{0x00252000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
++	{0x00008400, 0x00083FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
++	{0x00084000, 0x00293FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
++	{0x00294000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
+ };
+diff --git a/board/atmel/at91sam9261ek/partition.c b/board/atmel/at91sam9261ek/partition.c
+index c739b11..51cac77 100644
+--- a/board/atmel/at91sam9261ek/partition.c
++++ b/board/atmel/at91sam9261ek/partition.c
+@@ -34,7 +34,7 @@ struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
+ dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
+ 	{0x00000000, 0x000041FF, FLAG_PROTECT_SET,   0, "Bootstrap"},
+ 	{0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
+-	{0x00008400, 0x00041FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
+-	{0x00042000, 0x00251FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
+-	{0x00252000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
++	{0x00008400, 0x00083FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
++	{0x00084000, 0x00293FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
++	{0x00294000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
+ };
+diff --git a/board/atmel/at91sam9263ek/partition.c b/board/atmel/at91sam9263ek/partition.c
+index 7e1d46f..d48fab7 100644
+--- a/board/atmel/at91sam9263ek/partition.c
++++ b/board/atmel/at91sam9263ek/partition.c
+@@ -33,7 +33,7 @@ struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
+ dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
+ 	{0x00000000, 0x000041FF, FLAG_PROTECT_SET,   0, "Bootstrap"},
+ 	{0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
+-	{0x00008400, 0x00041FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
+-	{0x00042000, 0x00251FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
+-	{0x00252000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
++	{0x00008400, 0x00083FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
++	{0x00084000, 0x00293FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
++	{0x00294000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
+ };
+diff --git a/board/atmel/at91sam9rlek/partition.c b/board/atmel/at91sam9rlek/partition.c
+index 7e1d46f..d48fab7 100644
+--- a/board/atmel/at91sam9rlek/partition.c
++++ b/board/atmel/at91sam9rlek/partition.c
+@@ -33,7 +33,7 @@ struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
+ dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
+ 	{0x00000000, 0x000041FF, FLAG_PROTECT_SET,   0, "Bootstrap"},
+ 	{0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
+-	{0x00008400, 0x00041FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
+-	{0x00042000, 0x00251FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
+-	{0x00252000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
++	{0x00008400, 0x00083FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
++	{0x00084000, 0x00293FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
++	{0x00294000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
+ };
 diff --git a/include/configs/at91sam9260ek.h b/include/configs/at91sam9260ek.h
-index db52ee6..b537760 100644
+index 07b1968..ef25fa5 100644
 --- a/include/configs/at91sam9260ek.h
 +++ b/include/configs/at91sam9260ek.h
-@@ -185,10 +185,12 @@
- /* bootstrap + u-boot + env + linux in dataflash on CS0 */
- #define CONFIG_ENV_IS_IN_DATAFLASH	1
- #define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + 0x8400)
--#define CONFIG_ENV_OFFSET		0x4200
-+#define CONFIG_ENV_OFFSET		0x84000
+@@ -187,7 +187,7 @@
+ #define CONFIG_ENV_OFFSET		0x4200
  #define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET)
--#define CONFIG_ENV_SIZE		0x4200
+ #define CONFIG_ENV_SIZE		0x4200
 -#define CONFIG_BOOTCOMMAND	"cp.b 0xC0042000 0x22000000 0x210000; bootm"
-+#define CONFIG_ENV_SIZE		0x4000
-+#define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE)
-+#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
-+#define CONFIG_BOOTCOMMAND	"cp.b 0xC008C000 0x22000000 0x210000; bootm"
++#define CONFIG_BOOTCOMMAND	"cp.b 0xC0084000 0x22000000 0x210000; bootm"
  #define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\
  				"root=/dev/mtdblock0 "			\
  				"mtdparts=atmel_nand:-(root) "		\
-@@ -199,10 +201,12 @@
- /* bootstrap + u-boot + env + linux in dataflash on CS1 */
- #define CONFIG_ENV_IS_IN_DATAFLASH	1
- #define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1 + 0x8400)
--#define CONFIG_ENV_OFFSET		0x4200
-+#define CONFIG_ENV_OFFSET		0x84000
+@@ -201,7 +201,7 @@
+ #define CONFIG_ENV_OFFSET		0x4200
  #define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1 + CONFIG_ENV_OFFSET)
--#define CONFIG_ENV_SIZE		0x4200
+ #define CONFIG_ENV_SIZE		0x4200
 -#define CONFIG_BOOTCOMMAND	"cp.b 0xD0042000 0x22000000 0x210000; bootm"
-+#define CONFIG_ENV_SIZE		0x4000
-+#define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE)
-+#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
-+#define CONFIG_BOOTCOMMAND	"cp.b 0xD008C000 0x22000000 0x210000; bootm"
++#define CONFIG_BOOTCOMMAND	"cp.b 0xD0084000 0x22000000 0x210000; bootm"
  #define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\
  				"root=/dev/mtdblock0 "			\
  				"mtdparts=atmel_nand:-(root) "		\
-@@ -231,6 +235,8 @@
+@@ -230,6 +230,7 @@
  #define CONFIG_SYS_PBSIZE		(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  #define CONFIG_SYS_LONGHELP		1
  #define CONFIG_CMDLINE_EDITING	1
 +#define CONFIG_AUTO_COMPLETE
-+#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
  
  /*
   * Size of malloc() pool
 diff --git a/include/configs/at91sam9261ek.h b/include/configs/at91sam9261ek.h
-index 5140b26..fa461da 100644
+index 6fd0b83..014437b 100644
 --- a/include/configs/at91sam9261ek.h
 +++ b/include/configs/at91sam9261ek.h
-@@ -187,10 +187,12 @@
- /* bootstrap + u-boot + env + linux in dataflash on CS0 */
- #define CONFIG_ENV_IS_IN_DATAFLASH
- #define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + 0x8400)
--#define CONFIG_ENV_OFFSET	0x4200
-+#define CONFIG_ENV_OFFSET	0x84000
+@@ -189,7 +189,7 @@
+ #define CONFIG_ENV_OFFSET	0x4200
  #define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET)
--#define CONFIG_ENV_SIZE		0x4200
+ #define CONFIG_ENV_SIZE		0x4200
 -#define CONFIG_BOOTCOMMAND	"cp.b 0xC0042000 0x22000000 0x210000; bootm"
-+#define CONFIG_ENV_SIZE		0x4000
-+#define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE)
-+#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
-+#define CONFIG_BOOTCOMMAND	"cp.b 0xC008C000 0x22000000 0x210000; bootm"
++#define CONFIG_BOOTCOMMAND	"cp.b 0xC0084000 0x22000000 0x210000; bootm"
  #define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\
  				"root=/dev/mtdblock0 "			\
  				"mtdparts=atmel_nand:-(root) "		\
-@@ -201,10 +203,12 @@
- /* bootstrap + u-boot + env + linux in dataflash on CS3 */
- #define CONFIG_ENV_IS_IN_DATAFLASH
- #define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS3 + 0x8400)
--#define CONFIG_ENV_OFFSET	0x4200
-+#define CONFIG_ENV_OFFSET	0x84000
+@@ -203,7 +203,7 @@
+ #define CONFIG_ENV_OFFSET	0x4200
  #define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS3 + CONFIG_ENV_OFFSET)
--#define CONFIG_ENV_SIZE		0x4200
+ #define CONFIG_ENV_SIZE		0x4200
 -#define CONFIG_BOOTCOMMAND	"cp.b 0xD0042000 0x22000000 0x210000; bootm"
-+#define CONFIG_ENV_SIZE		0x4000
-+#define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE)
-+#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
-+#define CONFIG_BOOTCOMMAND	"cp.b 0xD008C000 0x22000000 0x210000; bootm"
++#define CONFIG_BOOTCOMMAND	"cp.b 0xD0084000 0x22000000 0x210000; bootm"
  #define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\
  				"root=/dev/mtdblock0 "			\
  				"mtdparts=atmel_nand:-(root) "		\
-@@ -233,6 +237,8 @@
+@@ -232,6 +232,7 @@
  #define CONFIG_SYS_PBSIZE		(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  #define CONFIG_SYS_LONGHELP
  #define CONFIG_CMDLINE_EDITING
 +#define CONFIG_AUTO_COMPLETE
-+#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
  
  /*
   * Size of malloc() pool
 diff --git a/include/configs/at91sam9263ek.h b/include/configs/at91sam9263ek.h
-index 8399246..253bee4 100644
+index f2163f1..4309f71 100644
 --- a/include/configs/at91sam9263ek.h
 +++ b/include/configs/at91sam9263ek.h
-@@ -314,10 +314,12 @@
- /* bootstrap + u-boot + env + linux in dataflash on CS0 */
- #define CONFIG_ENV_IS_IN_DATAFLASH	1
- #define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + 0x8400)
--#define CONFIG_ENV_OFFSET		0x4200
-+#define CONFIG_ENV_OFFSET		0x84000
+@@ -318,7 +318,7 @@
+ #define CONFIG_ENV_OFFSET		0x4200
  #define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET)
--#define CONFIG_ENV_SIZE		0x4200
+ #define CONFIG_ENV_SIZE		0x4200
 -#define CONFIG_BOOTCOMMAND	"cp.b 0xC0042000 0x22000000 0x210000; bootm"
-+#define CONFIG_ENV_SIZE		0x4000
-+#define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE)
-+#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
-+#define CONFIG_BOOTCOMMAND	"cp.b 0xC008C000 0x22000000 0x210000; bootm"
++#define CONFIG_BOOTCOMMAND	"cp.b 0xC0084000 0x22000000 0x210000; bootm"
  #define CONFIG_BOOTARGS		"console=ttyS0,115200 " \
  				"root=/dev/mtdblock0 " \
  				"mtdparts=atmel_nand:-(root) "\
-@@ -347,6 +349,8 @@
- #define CONFIG_AUTO_COMPLETE
- #define CONFIG_SYS_HUSH_PARSER
- #define CONFIG_SYS_PROMPT_HUSH_PS2	"> "
-+#define CONFIG_AUTO_COMPLETE
-+#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
- 
- /*
-  * Size of malloc() pool
 diff --git a/include/configs/at91sam9rlek.h b/include/configs/at91sam9rlek.h
-index 79ea1f2..423f523 100644
+index 45f8baf..c5952e9 100644
 --- a/include/configs/at91sam9rlek.h
 +++ b/include/configs/at91sam9rlek.h
-@@ -153,10 +153,12 @@
- /* bootstrap + u-boot + env + linux in dataflash on CS0 */
- #define CONFIG_ENV_IS_IN_DATAFLASH	1
- #define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + 0x8400)
--#define CONFIG_ENV_OFFSET		0x4200
-+#define CONFIG_ENV_OFFSET		0x84000
+@@ -155,7 +155,7 @@
+ #define CONFIG_ENV_OFFSET		0x4200
  #define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET)
--#define CONFIG_ENV_SIZE		0x4200
+ #define CONFIG_ENV_SIZE		0x4200
 -#define CONFIG_BOOTCOMMAND	"cp.b 0xC0042000 0x22000000 0x210000; bootm"
-+#define CONFIG_ENV_SIZE		0x4000
-+#define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE)
-+#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
-+#define CONFIG_BOOTCOMMAND	"cp.b 0xC008C000 0x22000000 0x210000; bootm"
++#define CONFIG_BOOTCOMMAND	"cp.b 0xC0084000 0x22000000 0x210000; bootm"
  #define CONFIG_BOOTARGS		"console=ttyS0,115200 " \
  				"root=/dev/mtdblock0 " \
  				"mtdparts=atmel_nand:-(root) "\
-@@ -183,6 +185,8 @@
+@@ -182,6 +182,7 @@
  #define CONFIG_SYS_PBSIZE		(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  #define CONFIG_SYS_LONGHELP		1
  #define CONFIG_CMDLINE_EDITING		1
 +#define CONFIG_AUTO_COMPLETE
-+#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
  
  /*
   * Size of malloc() pool
 -- 
-1.7.5.4
+1.7.9.5
 
diff --git a/boot/uboot/uboot-2012.04.01/uboot-2012.04-change-kernel-address-in-dataflash.patch b/boot/uboot/uboot-2012.04.01/uboot-2012.04-change-kernel-address-in-dataflash.patch
index 4cdbb98..c7d9a7e 100644
--- a/boot/uboot/uboot-2012.04.01/uboot-2012.04-change-kernel-address-in-dataflash.patch
+++ b/boot/uboot/uboot-2012.04.01/uboot-2012.04-change-kernel-address-in-dataflash.patch
@@ -1,7 +1,9 @@
-From 9fc4787c7a6c797db649831f86e49c4bf9780b4e Mon Sep 17 00:00:00 2001
+From e139cb31d32a4f39241bfd83bf622a97d08f6c9d Mon Sep 17 00:00:00 2001
 From: Alexandre Belloni <alexandre.belloni@piout.net>
-Date: Mon, 2 Jan 2012 03:51:11 +0100
-Subject: [PATCH] Change kernel address in dataflash to match u-boot's size
+Date: Mon, 2 Jul 2012 04:26:58 +0000
+Subject: [PATCH] AT91SAM9*: Change kernel address in dataflash to
+ match u-boot's size
+
 
 On at91sam platforms, u-boot grew larger than the allocated size in
 dataflash, the layout was:
@@ -9,173 +11,185 @@ bootstrap  0x00000000
 ubootenv   0x00004200
 uboot      0x00008400
 kernel     0x00042000
+fs         0x00252000
 
 u-boot with the defconfig doesn't seem to fit in 0x42000 - 0x8400 =
 0x39C00 bytes anymore.
 
 Now, the layout is:
 bootstrap  0x00000000
-uboot      0x00004000
-ubootenv   0x00084000
-ubootenv2  0x00088000
-kernel     0x0008C000
+ubootenv   0x00004200
+uboot      0x00008400
+kernel     0x00084000
+fs         0x00294000
 
 Signed-off-by: Alexandre Belloni <alexandre.belloni@piout.net>
+Signed-off-by: Andreas Bie?mann <andreas.devel@googlemail.com>
 ---
- include/configs/at91sam9260ek.h |   18 ++++++++++++------
- include/configs/at91sam9261ek.h |   18 ++++++++++++------
- include/configs/at91sam9263ek.h |   10 +++++++---
- include/configs/at91sam9rlek.h  |   10 +++++++---
- 4 files changed, 38 insertions(+), 18 deletions(-)
+ board/atmel/at91sam9260ek/partition.c |    6 +++---
+ board/atmel/at91sam9261ek/partition.c |    6 +++---
+ board/atmel/at91sam9263ek/partition.c |    6 +++---
+ board/atmel/at91sam9rlek/partition.c  |    6 +++---
+ include/configs/at91sam9260ek.h       |    5 +++--
+ include/configs/at91sam9261ek.h       |    5 +++--
+ include/configs/at91sam9263ek.h       |    2 +-
+ include/configs/at91sam9rlek.h        |    3 ++-
+ 8 files changed, 21 insertions(+), 18 deletions(-)
 
+diff --git a/board/atmel/at91sam9260ek/partition.c b/board/atmel/at91sam9260ek/partition.c
+index 2629c67..9ec054f 100644
+--- a/board/atmel/at91sam9260ek/partition.c
++++ b/board/atmel/at91sam9260ek/partition.c
+@@ -34,7 +34,7 @@ struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
+ dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
+ 	{0x00000000, 0x000041FF, FLAG_PROTECT_SET,   0, "Bootstrap"},
+ 	{0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
+-	{0x00008400, 0x00041FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
+-	{0x00042000, 0x00251FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
+-	{0x00252000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
++	{0x00008400, 0x00083FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
++	{0x00084000, 0x00293FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
++	{0x00294000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
+ };
+diff --git a/board/atmel/at91sam9261ek/partition.c b/board/atmel/at91sam9261ek/partition.c
+index c739b11..51cac77 100644
+--- a/board/atmel/at91sam9261ek/partition.c
++++ b/board/atmel/at91sam9261ek/partition.c
+@@ -34,7 +34,7 @@ struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
+ dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
+ 	{0x00000000, 0x000041FF, FLAG_PROTECT_SET,   0, "Bootstrap"},
+ 	{0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
+-	{0x00008400, 0x00041FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
+-	{0x00042000, 0x00251FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
+-	{0x00252000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
++	{0x00008400, 0x00083FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
++	{0x00084000, 0x00293FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
++	{0x00294000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
+ };
+diff --git a/board/atmel/at91sam9263ek/partition.c b/board/atmel/at91sam9263ek/partition.c
+index 7e1d46f..d48fab7 100644
+--- a/board/atmel/at91sam9263ek/partition.c
++++ b/board/atmel/at91sam9263ek/partition.c
+@@ -33,7 +33,7 @@ struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
+ dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
+ 	{0x00000000, 0x000041FF, FLAG_PROTECT_SET,   0, "Bootstrap"},
+ 	{0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
+-	{0x00008400, 0x00041FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
+-	{0x00042000, 0x00251FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
+-	{0x00252000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
++	{0x00008400, 0x00083FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
++	{0x00084000, 0x00293FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
++	{0x00294000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
+ };
+diff --git a/board/atmel/at91sam9rlek/partition.c b/board/atmel/at91sam9rlek/partition.c
+index 7e1d46f..d48fab7 100644
+--- a/board/atmel/at91sam9rlek/partition.c
++++ b/board/atmel/at91sam9rlek/partition.c
+@@ -33,7 +33,7 @@ struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
+ dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
+ 	{0x00000000, 0x000041FF, FLAG_PROTECT_SET,   0, "Bootstrap"},
+ 	{0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
+-	{0x00008400, 0x00041FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
+-	{0x00042000, 0x00251FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
+-	{0x00252000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
++	{0x00008400, 0x00083FFF, FLAG_PROTECT_SET,   0, "U-Boot"},
++	{0x00084000, 0x00293FFF, FLAG_PROTECT_CLEAR, 0,	"Kernel"},
++	{0x00294000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0,	"FS"},
+ };
 diff --git a/include/configs/at91sam9260ek.h b/include/configs/at91sam9260ek.h
-index db52ee6..b537760 100644
+index 07b1968..ef25fa5 100644
 --- a/include/configs/at91sam9260ek.h
 +++ b/include/configs/at91sam9260ek.h
-@@ -185,10 +185,12 @@
- /* bootstrap + u-boot + env + linux in dataflash on CS0 */
- #define CONFIG_ENV_IS_IN_DATAFLASH	1
- #define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + 0x8400)
--#define CONFIG_ENV_OFFSET		0x4200
-+#define CONFIG_ENV_OFFSET		0x84000
+@@ -187,7 +187,7 @@
+ #define CONFIG_ENV_OFFSET		0x4200
  #define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET)
--#define CONFIG_ENV_SIZE		0x4200
+ #define CONFIG_ENV_SIZE		0x4200
 -#define CONFIG_BOOTCOMMAND	"cp.b 0xC0042000 0x22000000 0x210000; bootm"
-+#define CONFIG_ENV_SIZE		0x4000
-+#define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE)
-+#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
-+#define CONFIG_BOOTCOMMAND	"cp.b 0xC008C000 0x22000000 0x210000; bootm"
++#define CONFIG_BOOTCOMMAND	"cp.b 0xC0084000 0x22000000 0x210000; bootm"
  #define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\
  				"root=/dev/mtdblock0 "			\
  				"mtdparts=atmel_nand:-(root) "		\
-@@ -199,10 +201,12 @@
- /* bootstrap + u-boot + env + linux in dataflash on CS1 */
- #define CONFIG_ENV_IS_IN_DATAFLASH	1
- #define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1 + 0x8400)
--#define CONFIG_ENV_OFFSET		0x4200
-+#define CONFIG_ENV_OFFSET		0x84000
+@@ -201,7 +201,7 @@
+ #define CONFIG_ENV_OFFSET		0x4200
  #define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1 + CONFIG_ENV_OFFSET)
--#define CONFIG_ENV_SIZE		0x4200
+ #define CONFIG_ENV_SIZE		0x4200
 -#define CONFIG_BOOTCOMMAND	"cp.b 0xD0042000 0x22000000 0x210000; bootm"
-+#define CONFIG_ENV_SIZE		0x4000
-+#define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE)
-+#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
-+#define CONFIG_BOOTCOMMAND	"cp.b 0xD008C000 0x22000000 0x210000; bootm"
++#define CONFIG_BOOTCOMMAND	"cp.b 0xD0084000 0x22000000 0x210000; bootm"
  #define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\
  				"root=/dev/mtdblock0 "			\
  				"mtdparts=atmel_nand:-(root) "		\
-@@ -231,6 +235,8 @@
+@@ -230,6 +230,7 @@
  #define CONFIG_SYS_PBSIZE		(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  #define CONFIG_SYS_LONGHELP		1
  #define CONFIG_CMDLINE_EDITING	1
 +#define CONFIG_AUTO_COMPLETE
-+#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
  
  /*
   * Size of malloc() pool
 diff --git a/include/configs/at91sam9261ek.h b/include/configs/at91sam9261ek.h
-index 5140b26..fa461da 100644
+index 6fd0b83..014437b 100644
 --- a/include/configs/at91sam9261ek.h
 +++ b/include/configs/at91sam9261ek.h
-@@ -187,10 +187,12 @@
- /* bootstrap + u-boot + env + linux in dataflash on CS0 */
- #define CONFIG_ENV_IS_IN_DATAFLASH
- #define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + 0x8400)
--#define CONFIG_ENV_OFFSET	0x4200
-+#define CONFIG_ENV_OFFSET	0x84000
+@@ -189,7 +189,7 @@
+ #define CONFIG_ENV_OFFSET	0x4200
  #define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET)
--#define CONFIG_ENV_SIZE		0x4200
+ #define CONFIG_ENV_SIZE		0x4200
 -#define CONFIG_BOOTCOMMAND	"cp.b 0xC0042000 0x22000000 0x210000; bootm"
-+#define CONFIG_ENV_SIZE		0x4000
-+#define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE)
-+#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
-+#define CONFIG_BOOTCOMMAND	"cp.b 0xC008C000 0x22000000 0x210000; bootm"
++#define CONFIG_BOOTCOMMAND	"cp.b 0xC0084000 0x22000000 0x210000; bootm"
  #define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\
  				"root=/dev/mtdblock0 "			\
  				"mtdparts=atmel_nand:-(root) "		\
-@@ -201,10 +203,12 @@
- /* bootstrap + u-boot + env + linux in dataflash on CS3 */
- #define CONFIG_ENV_IS_IN_DATAFLASH
- #define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS3 + 0x8400)
--#define CONFIG_ENV_OFFSET	0x4200
-+#define CONFIG_ENV_OFFSET	0x84000
+@@ -203,7 +203,7 @@
+ #define CONFIG_ENV_OFFSET	0x4200
  #define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS3 + CONFIG_ENV_OFFSET)
--#define CONFIG_ENV_SIZE		0x4200
+ #define CONFIG_ENV_SIZE		0x4200
 -#define CONFIG_BOOTCOMMAND	"cp.b 0xD0042000 0x22000000 0x210000; bootm"
-+#define CONFIG_ENV_SIZE		0x4000
-+#define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE)
-+#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
-+#define CONFIG_BOOTCOMMAND	"cp.b 0xD008C000 0x22000000 0x210000; bootm"
++#define CONFIG_BOOTCOMMAND	"cp.b 0xD0084000 0x22000000 0x210000; bootm"
  #define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\
  				"root=/dev/mtdblock0 "			\
  				"mtdparts=atmel_nand:-(root) "		\
-@@ -233,6 +237,8 @@
+@@ -232,6 +232,7 @@
  #define CONFIG_SYS_PBSIZE		(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  #define CONFIG_SYS_LONGHELP
  #define CONFIG_CMDLINE_EDITING
 +#define CONFIG_AUTO_COMPLETE
-+#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
  
  /*
   * Size of malloc() pool
 diff --git a/include/configs/at91sam9263ek.h b/include/configs/at91sam9263ek.h
-index 8399246..253bee4 100644
+index f2163f1..4309f71 100644
 --- a/include/configs/at91sam9263ek.h
 +++ b/include/configs/at91sam9263ek.h
-@@ -314,10 +314,12 @@
- /* bootstrap + u-boot + env + linux in dataflash on CS0 */
- #define CONFIG_ENV_IS_IN_DATAFLASH	1
- #define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + 0x8400)
--#define CONFIG_ENV_OFFSET		0x4200
-+#define CONFIG_ENV_OFFSET		0x84000
+@@ -318,7 +318,7 @@
+ #define CONFIG_ENV_OFFSET		0x4200
  #define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET)
--#define CONFIG_ENV_SIZE		0x4200
+ #define CONFIG_ENV_SIZE		0x4200
 -#define CONFIG_BOOTCOMMAND	"cp.b 0xC0042000 0x22000000 0x210000; bootm"
-+#define CONFIG_ENV_SIZE		0x4000
-+#define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE)
-+#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
-+#define CONFIG_BOOTCOMMAND	"cp.b 0xC008C000 0x22000000 0x210000; bootm"
++#define CONFIG_BOOTCOMMAND	"cp.b 0xC0084000 0x22000000 0x210000; bootm"
  #define CONFIG_BOOTARGS		"console=ttyS0,115200 " \
  				"root=/dev/mtdblock0 " \
  				"mtdparts=atmel_nand:-(root) "\
-@@ -347,6 +349,8 @@
- #define CONFIG_AUTO_COMPLETE
- #define CONFIG_SYS_HUSH_PARSER
- #define CONFIG_SYS_PROMPT_HUSH_PS2	"> "
-+#define CONFIG_AUTO_COMPLETE
-+#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
- 
- /*
-  * Size of malloc() pool
 diff --git a/include/configs/at91sam9rlek.h b/include/configs/at91sam9rlek.h
-index 79ea1f2..423f523 100644
+index 45f8baf..c5952e9 100644
 --- a/include/configs/at91sam9rlek.h
 +++ b/include/configs/at91sam9rlek.h
-@@ -153,10 +153,12 @@
- /* bootstrap + u-boot + env + linux in dataflash on CS0 */
- #define CONFIG_ENV_IS_IN_DATAFLASH	1
- #define CONFIG_SYS_MONITOR_BASE	(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + 0x8400)
--#define CONFIG_ENV_OFFSET		0x4200
-+#define CONFIG_ENV_OFFSET		0x84000
+@@ -155,7 +155,7 @@
+ #define CONFIG_ENV_OFFSET		0x4200
  #define CONFIG_ENV_ADDR		(CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET)
--#define CONFIG_ENV_SIZE		0x4200
+ #define CONFIG_ENV_SIZE		0x4200
 -#define CONFIG_BOOTCOMMAND	"cp.b 0xC0042000 0x22000000 0x210000; bootm"
-+#define CONFIG_ENV_SIZE		0x4000
-+#define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE)
-+#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
-+#define CONFIG_BOOTCOMMAND	"cp.b 0xC008C000 0x22000000 0x210000; bootm"
++#define CONFIG_BOOTCOMMAND	"cp.b 0xC0084000 0x22000000 0x210000; bootm"
  #define CONFIG_BOOTARGS		"console=ttyS0,115200 " \
  				"root=/dev/mtdblock0 " \
  				"mtdparts=atmel_nand:-(root) "\
-@@ -183,6 +185,8 @@
+@@ -182,6 +182,7 @@
  #define CONFIG_SYS_PBSIZE		(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  #define CONFIG_SYS_LONGHELP		1
  #define CONFIG_CMDLINE_EDITING		1
 +#define CONFIG_AUTO_COMPLETE
-+#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
  
  /*
   * Size of malloc() pool
 -- 
-1.7.5.4
+1.7.9.5
 
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH 1/3] at91bootstrap: update patch for latest u-boot
From: Alexandre Belloni @ 2012-10-25 22:15 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1351203333-26588-1-git-send-email-alexandre.belloni@piout.net>

The u-boot patch got mainlined but not exactly as it was submitted to
buildroot. Update the at91bootstrap to match what is in the mainline.

Signed-off-by: Alexandre Belloni <alexandre.belloni@piout.net>
---
 .../at91bootstrap-1.16-u-boot-relocation-fix.patch |  127 +++++++++-----------
 1 file changed, 56 insertions(+), 71 deletions(-)

diff --git a/boot/at91bootstrap/at91bootstrap-1.16-u-boot-relocation-fix.patch b/boot/at91bootstrap/at91bootstrap-1.16-u-boot-relocation-fix.patch
index 884519c..0c9b911 100644
--- a/boot/at91bootstrap/at91bootstrap-1.16-u-boot-relocation-fix.patch
+++ b/boot/at91bootstrap/at91bootstrap-1.16-u-boot-relocation-fix.patch
@@ -1,3 +1,8 @@
+From d4e4a1aad559e35d84b445d1379be94ad036984e Mon Sep 17 00:00:00 2001
+From: Alexandre Belloni <alexandre.belloni@piout.net>
+Date: Thu, 25 Oct 2012 22:57:14 +0200
+Subject: [PATCH] u-boot relocation fix
+
 Every AT91SAM plaforms were broken between 2010.12 and 2011.03 because
 of the relocation changes.
 
@@ -8,13 +13,11 @@ I didn't know what to do with at91sam9m10g45ek as it doesn't seems to be
 converted yet. But anyway, that means that it is either not working or
 doesn't care so changing it here shouldn't harm.
 
-I also chose to "repartition" the dataflash. u-boot is now living at
-0x4000, letting 16kB for the bootstrap. We also have to increase the
-IMG_SIZE as u-boot as grown larger than the default value.
-As requested on the u-boot ML, we assume that it could be up to 512kB
-big.
+We also have to increase the IMG_SIZE as u-boot as grown larger than the
+default value. As requested on the u-boot ML, we assume that it could
+be up to 495kB big.
 
-It means that now, you have to flash your kernel at 0x0008C000 instead
+It means that now, you have to flash your kernel at 0x00084000 instead
 of 0x00042000. And so you also have to load it from that adress from
 u-boot.
 
@@ -22,36 +25,34 @@ Then, remember that you could decrease IMG_SIZE to boot faster.
 
 Signed-off-by: Alexandre Belloni <alexandre.belloni@piout.net>
 ---
- board/at91sam9260ek/dataflash/at91sam9260ek.h      |    6 +++---
+ board/at91sam9260ek/dataflash/at91sam9260ek.h      |    4 ++--
  board/at91sam9260ek/nandflash/at91sam9260ek.h      |    2 +-
- board/at91sam9261ek/dataflash/at91sam9261ek.h      |    6 +++---
+ board/at91sam9261ek/dataflash/at91sam9261ek.h      |    4 ++--
  board/at91sam9261ek/nandflash/at91sam9261ek.h      |    2 +-
- board/at91sam9263ek/dataflash/at91sam9263ek.h      |    6 +++---
+ board/at91sam9263ek/dataflash/at91sam9263ek.h      |    4 ++--
  board/at91sam9263ek/nandflash/at91sam9263ek.h      |    2 +-
- board/at91sam9g10ek/dataflash/at91sam9g10ek.h      |    6 +++---
+ board/at91sam9g10ek/dataflash/at91sam9g10ek.h      |    4 ++--
  board/at91sam9g10ek/nandflash/at91sam9g10ek.h      |    2 +-
- board/at91sam9g20ek/dataflash/at91sam9g20ek.h      |    6 +++---
+ board/at91sam9g20ek/dataflash/at91sam9g20ek.h      |    4 ++--
  board/at91sam9g20ek/nandflash/at91sam9g20ek.h      |    2 +-
- board/at91sam9m10ekes/dataflash/at91sam9m10ekes.h  |    4 ++--
- .../at91sam9m10g45ek/dataflash/at91sam9m10g45ek.h  |    4 ++--
- board/at91sam9rlek/dataflash/at91sam9rlek.h        |    6 +++---
+ board/at91sam9m10ekes/dataflash/at91sam9m10ekes.h  |    2 +-
+ .../at91sam9m10g45ek/dataflash/at91sam9m10g45ek.h  |    2 +-
+ board/at91sam9rlek/dataflash/at91sam9rlek.h        |    4 ++--
  board/at91sam9rlek/nandflash/at91sam9rlek.h        |    2 +-
- board/at91sam9xeek/dataflash/at91sam9xeek.h        |    6 +++---
+ board/at91sam9xeek/dataflash/at91sam9xeek.h        |    4 ++--
  board/at91sam9xeek/nandflash/at91sam9xeek.h        |    2 +-
- 16 files changed, 32 insertions(+), 32 deletions(-)
+ 16 files changed, 23 insertions(+), 23 deletions(-)
 
 diff --git a/board/at91sam9260ek/dataflash/at91sam9260ek.h b/board/at91sam9260ek/dataflash/at91sam9260ek.h
-index 1834246..5c52bc6 100644
+index 1834246..91081a1 100644
 --- a/board/at91sam9260ek/dataflash/at91sam9260ek.h
 +++ b/board/at91sam9260ek/dataflash/at91sam9260ek.h
-@@ -73,11 +73,11 @@
- /* ******************************************************************* */
+@@ -74,10 +74,10 @@
  #define AT91C_SPI_PCS_DATAFLASH		AT91C_SPI_PCS1_DATAFLASH	/* Boot on SPI NCS0 */
  
--#define IMG_ADDRESS 		0x8400			/* Image Address in DataFlash */
+ #define IMG_ADDRESS 		0x8400			/* Image Address in DataFlash */
 -#define	IMG_SIZE		0x33900			/* Image Size in DataFlash    */
-+#define IMG_ADDRESS 		0x4000			/* Image Address in DataFlash */
-+#define	IMG_SIZE		0x80000			/* Image Size in DataFlash    */
++#define	IMG_SIZE		0x7BC00			/* Image Size in DataFlash    */
  
  #define MACH_TYPE       0x44B       /* AT91SAM9260-EK */
 -#define JUMP_ADDR		0x23F00000		/* Final Jump Address 	      */
@@ -73,17 +74,15 @@ index 2cac601..f8fdff2 100644
  /* ******************************************************************* */
  /* Application Settings                                                */
 diff --git a/board/at91sam9261ek/dataflash/at91sam9261ek.h b/board/at91sam9261ek/dataflash/at91sam9261ek.h
-index 8ce30e9..675f80b 100644
+index 8ce30e9..276ba3d 100644
 --- a/board/at91sam9261ek/dataflash/at91sam9261ek.h
 +++ b/board/at91sam9261ek/dataflash/at91sam9261ek.h
-@@ -96,11 +96,11 @@
- /* ******************************************************************* */
+@@ -97,10 +97,10 @@
  #define AT91C_SPI_PCS_DATAFLASH		AT91C_SPI_PCS0_DATAFLASH	/* Boot on SPI NCS0 */
  
--#define IMG_ADDRESS 		0x8400			/* Image Address in DataFlash */
+ #define IMG_ADDRESS 		0x8400			/* Image Address in DataFlash */
 -#define	IMG_SIZE		0x33900			/* Image Size in DataFlash    */
-+#define IMG_ADDRESS 		0x4000			/* Image Address in DataFlash */
-+#define	IMG_SIZE		0x80000			/* Image Size in DataFlash    */
++#define	IMG_SIZE		0x7BC00			/* Image Size in DataFlash    */
  
  #define MACH_TYPE       0x350       /* AT91SAM9261-EK */
 -#define JUMP_ADDR		0x23F00000		/* Final Jump Address 	      */
@@ -105,17 +104,15 @@ index badc3ac..e628c97 100644
  /* ******************************************************************* */
  /* Application Settings                                                */
 diff --git a/board/at91sam9263ek/dataflash/at91sam9263ek.h b/board/at91sam9263ek/dataflash/at91sam9263ek.h
-index 5c9da4b..d07b5d1 100644
+index 5c9da4b..870f9e2 100644
 --- a/board/at91sam9263ek/dataflash/at91sam9263ek.h
 +++ b/board/at91sam9263ek/dataflash/at91sam9263ek.h
-@@ -95,11 +95,11 @@
- /* ******************************************************************* */
+@@ -96,10 +96,10 @@
  #define AT91C_SPI_PCS_DATAFLASH		AT91C_SPI_PCS0_DATAFLASH	/* Boot on SPI NCS0 */
  
--#define IMG_ADDRESS 			0x8400			/* Image Address in DataFlash */
+ #define IMG_ADDRESS 			0x8400			/* Image Address in DataFlash */
 -#define	IMG_SIZE			0x33900			/* Image Size in DataFlash    */
-+#define IMG_ADDRESS 			0x4000			/* Image Address in DataFlash */
-+#define	IMG_SIZE			0x80000			/* Image Size in DataFlash    */
++#define	IMG_SIZE			0x7BC00			/* Image Size in DataFlash    */
  
  #define MACH_TYPE       		0x4B2       		/* AT91SAM9263-EK */
 -#define JUMP_ADDR			0x23F00000		/* Final Jump Address 	      */
@@ -137,17 +134,15 @@ index 505afc7..8ab4f46 100644
  /* ******************************************************************* */
  /* Application Settings                                                */
 diff --git a/board/at91sam9g10ek/dataflash/at91sam9g10ek.h b/board/at91sam9g10ek/dataflash/at91sam9g10ek.h
-index b2faf44..0882644 100644
+index b2faf44..f4f556b 100644
 --- a/board/at91sam9g10ek/dataflash/at91sam9g10ek.h
 +++ b/board/at91sam9g10ek/dataflash/at91sam9g10ek.h
-@@ -97,11 +97,11 @@
- /* ******************************************************************* */
+@@ -98,10 +98,10 @@
  #define AT91C_SPI_PCS_DATAFLASH		AT91C_SPI_PCS0_DATAFLASH	/* Boot on SPI NCS0 */
  
--#define IMG_ADDRESS 		0x8400			/* Image Address in DataFlash */
+ #define IMG_ADDRESS 		0x8400			/* Image Address in DataFlash */
 -#define	IMG_SIZE		0x33900			/* Image Size in DataFlash    */
-+#define IMG_ADDRESS 		0x4000			/* Image Address in DataFlash */
-+#define	IMG_SIZE		0x80000			/* Image Size in DataFlash    */
++#define	IMG_SIZE		0x7BC00			/* Image Size in DataFlash    */
  
  #define MACH_TYPE       0x350       /* AT91SAM9261-EK */
 -#define JUMP_ADDR		0x23F00000		/* Final Jump Address 	      */
@@ -169,17 +164,15 @@ index 66c40a3..6c3ecda 100644
  /* ******************************************************************* */
  /* Application Settings                                                */
 diff --git a/board/at91sam9g20ek/dataflash/at91sam9g20ek.h b/board/at91sam9g20ek/dataflash/at91sam9g20ek.h
-index eea0439..44bd578 100644
+index eea0439..7fc70d6 100644
 --- a/board/at91sam9g20ek/dataflash/at91sam9g20ek.h
 +++ b/board/at91sam9g20ek/dataflash/at91sam9g20ek.h
-@@ -74,11 +74,11 @@
- /* ******************************************************************* */
+@@ -75,10 +75,10 @@
  #define AT91C_SPI_PCS_DATAFLASH		AT91C_SPI_PCS1_DATAFLASH	/* Boot on SPI NCS1 */
  
--#define IMG_ADDRESS 		0x8400			/* Image Address in DataFlash */
+ #define IMG_ADDRESS 		0x8400			/* Image Address in DataFlash */
 -#define	IMG_SIZE		0x33900			/* Image Size in DataFlash */
-+#define IMG_ADDRESS 		0x4000			/* Image Address in DataFlash */
-+#define	IMG_SIZE		0x80000			/* Image Size in DataFlash */
++#define	IMG_SIZE		0x7BC00			/* Image Size in DataFlash */
  
  #define MACH_TYPE		0x658			/* AT91SAM9G20-EK */
 -#define JUMP_ADDR		0x23F00000		/* Final Jump Address */
@@ -201,47 +194,41 @@ index 31bd499..e797e4d 100644
  /* ******************************************************************* */
  /* Application Settings                                                */
 diff --git a/board/at91sam9m10ekes/dataflash/at91sam9m10ekes.h b/board/at91sam9m10ekes/dataflash/at91sam9m10ekes.h
-index a60fd41..144dd6d 100644
+index a60fd41..5587a00 100644
 --- a/board/at91sam9m10ekes/dataflash/at91sam9m10ekes.h
 +++ b/board/at91sam9m10ekes/dataflash/at91sam9m10ekes.h
-@@ -88,8 +88,8 @@
- /* ******************************************************************* */
+@@ -89,7 +89,7 @@
  #define AT91C_SPI_PCS_DATAFLASH		AT91C_SPI_PCS0_DATAFLASH	/* Boot on SPI NCS0 */
  
--#define IMG_ADDRESS 		0x8400			/* Image Address in DataFlash */
+ #define IMG_ADDRESS 		0x8400			/* Image Address in DataFlash */
 -#define	IMG_SIZE		0x33900			/* Image Size in DataFlash */
-+#define IMG_ADDRESS 		0x4000			/* Image Address in DataFlash */
-+#define	IMG_SIZE		0x80000			/* Image Size in DataFlash */
++#define	IMG_SIZE		0x7BC00			/* Image Size in DataFlash */
  
  #define MACH_TYPE		0x9CD			/* AT91SAM9M10-EKES */
  #define JUMP_ADDR		0x73F00000		/* Final Jump Address */
 diff --git a/board/at91sam9m10g45ek/dataflash/at91sam9m10g45ek.h b/board/at91sam9m10g45ek/dataflash/at91sam9m10g45ek.h
-index 5c726b5..3152b79 100644
+index 5c726b5..9090097 100644
 --- a/board/at91sam9m10g45ek/dataflash/at91sam9m10g45ek.h
 +++ b/board/at91sam9m10g45ek/dataflash/at91sam9m10g45ek.h
-@@ -84,8 +84,8 @@
- /* ******************************************************************* */
+@@ -85,7 +85,7 @@
  #define AT91C_SPI_PCS_DATAFLASH		AT91C_SPI_PCS0_DATAFLASH	/* Boot on SPI NCS0 */
  
--#define IMG_ADDRESS 		0x8400			/* Image Address in DataFlash */
+ #define IMG_ADDRESS 		0x8400			/* Image Address in DataFlash */
 -#define	IMG_SIZE		0x33900			/* Image Size in DataFlash */
-+#define IMG_ADDRESS 		0x4000			/* Image Address in DataFlash */
-+#define	IMG_SIZE		0x80000			/* Image Size in DataFlash */
++#define	IMG_SIZE		0x7BC00			/* Image Size in DataFlash */
  
  #define MACH_TYPE		0x726			/* AT91SAM9M10G45-EK */
  #define JUMP_ADDR		0x73F00000		/* Final Jump Address */
 diff --git a/board/at91sam9rlek/dataflash/at91sam9rlek.h b/board/at91sam9rlek/dataflash/at91sam9rlek.h
-index 05c42dc..be277b6 100644
+index 05c42dc..150f17e 100644
 --- a/board/at91sam9rlek/dataflash/at91sam9rlek.h
 +++ b/board/at91sam9rlek/dataflash/at91sam9rlek.h
-@@ -88,11 +88,11 @@
- /* ******************************************************************* */
+@@ -89,10 +89,10 @@
  #define AT91C_SPI_PCS_DATAFLASH		AT91C_SPI_PCS0_DATAFLASH	/* Boot on SPI NCS0 */
  
--#define IMG_ADDRESS 	0x8400		/* Image Address in DataFlash */
+ #define IMG_ADDRESS 	0x8400		/* Image Address in DataFlash */
 -#define	IMG_SIZE	0x33900		/* Image Size in DataFlash    */
-+#define IMG_ADDRESS 	0x4000		/* Image Address in DataFlash */
-+#define	IMG_SIZE	0x80000		/* Image Size in DataFlash    */
++#define	IMG_SIZE	0x7BC00		/* Image Size in DataFlash    */
  
  #define MACH_TYPE       1326       	/* AT91SAM9RL-EK */
 -#define JUMP_ADDR	0x23F00000	/* Final Jump Address 	      */
@@ -263,17 +250,15 @@ index 656b4ba..594db8f 100644
  /* ******************************************************************* */
  /* Application Settings                                                */
 diff --git a/board/at91sam9xeek/dataflash/at91sam9xeek.h b/board/at91sam9xeek/dataflash/at91sam9xeek.h
-index 27d1822..e3172da 100644
+index 27d1822..08e515d 100644
 --- a/board/at91sam9xeek/dataflash/at91sam9xeek.h
 +++ b/board/at91sam9xeek/dataflash/at91sam9xeek.h
-@@ -73,11 +73,11 @@
- /* ******************************************************************* */
+@@ -74,10 +74,10 @@
  #define AT91C_SPI_PCS_DATAFLASH		AT91C_SPI_PCS1_DATAFLASH	/* Boot on SPI NCS1 */
  
--#define IMG_ADDRESS 		0x8400			/* Image Address in DataFlash */
+ #define IMG_ADDRESS 		0x8400			/* Image Address in DataFlash */
 -#define	IMG_SIZE		0x33900			/* Image Size in DataFlash    */
-+#define IMG_ADDRESS 		0x4000			/* Image Address in DataFlash */
-+#define	IMG_SIZE		0x80000			/* Image Size in DataFlash    */
++#define	IMG_SIZE		0x7BC00			/* Image Size in DataFlash    */
  
  #define MACH_TYPE		0x44B			/* AT91SAM9XE-EK same id as AT91SAM9260-EK*/
 -#define JUMP_ADDR		0x23F00000		/* Final Jump Address 	      */
@@ -295,5 +280,5 @@ index 5dbc63e..9fac7cb 100644
  /* ******************************************************************* */
  /* Application Settings                                                */
 -- 
-1.7.5.4
+1.7.9.5
 
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH 0/3] Update AT91SAM926* patches and configs
From: Alexandre Belloni @ 2012-10-25 22:15 UTC (permalink / raw)
  To: buildroot

As u-boot took the patch in the mainline, I updated the at91bootstrap and
u-boot patches accordingly.

Also, update defconfigs to use latest u-boot.

Tested on at91sam9261ek with u-boot 2011.12, 2012.04.1 and 2012.10.

Alexandre Belloni (3):
  at91bootstrap: update patch for latest u-boot
  u-boot: update at91 patches to match mainline
  at91sam92*: update defconfigs to use latest u-boot

 .../at91bootstrap-1.16-u-boot-relocation-fix.patch |  127 ++++++------
 ...011.12-change-kernel-address-in-dataflash.patch |  210 +++++++++++---------
 ...012.04-change-kernel-address-in-dataflash.patch |  210 +++++++++++---------
 configs/at91sam9260dfc_defconfig                   |    6 -
 configs/at91sam9261ek_defconfig                    |    6 -
 configs/at91sam9263ek_defconfig                    |    6 -
 6 files changed, 280 insertions(+), 285 deletions(-)

-- 
1.7.9.5

^ permalink raw reply

* [Buildroot] [PATCH 05/47] package/usbredir: new package
From: Arnout Vandecappelle @ 2012-10-25 22:04 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1351113973-17237-6-git-send-email-yann.morin.1998@free.fr>

On 24/10/12 23:25, Yann E. MORIN wrote:
[snip]
> +USBREDIR_VERSION         = 0.4.3
> +USBREDIR_SOURCE          = usbredir-$(USBREDIR_VERSION).tar.bz2
> +USBREDIR_SITE            =http://spice-space.org/download/usbredir
> +USBREDIR_LICENSE         = LGPLv2.1+
> +USBREDIR_LICENSE_FILES   = COPYING.LIB
> +USBREDIR_INSTALL_STAGING = YES
> +USBREDIR_DEPENDENCIES    = libusb
> +
> +USBREDIR_DEPENDENCIES    += host-pkg-config
> +
> +ifeq ($(BR2_PACKAGE_USBREDIR_SERVER),y)
> +
> +USBREDIR_LICENSE         += GPLv2+
> +USBREDIR_LICENSE_FILES   += COPYING

  Nice!

> +
> +else # BR2_PACKAGE_USBREDIR_SERVER != y
> +
> +# It's much easier to remove unwanted files after-the-fact, rather than trying
> +# to install only what we want. Sad-and-dull life, but life nonetheless...
> +# Note: do not forget to update the license, above, if you keep the server.

  It's not the first time this is done in buildroot, so: comment is redundant.


  Regards,
  Arnout

> +define USBREDIR_POST_INSTALL_TARGET_RM_SERVER
> +	rm -f $(TARGET_DIR)/usr/sbin/usbredirserver
> +endef
> +USBREDIR_POST_INSTALL_TARGET_HOOKS += USBREDIR_POST_INSTALL_TARGET_RM_SERVER
> +
> +endif # BR2_PACKAGE_USBREDIR_SERVER
> +
> +$(eval $(autotools-package))

-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply

* [Buildroot] [PATCH 02/47] package/libfdt: new package
From: Arnout Vandecappelle @ 2012-10-25 21:55 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1351113973-17237-3-git-send-email-yann.morin.1998@free.fr>

  The package is called dtc, not libfdt.

On 24/10/12 23:25, Yann E. MORIN wrote:
> libfdt allows one to manipulate a Flat Device Tree.

  Flattened Device Tree

>
> Signed-off-by: "Yann E. MORIN"<yann.morin.1998@free.fr>
> ---
>   package/Config.in                          |    1 +
>   package/dtc/Config.in                      |    9 +++++++
>   package/dtc/dtc-extra_cflags.patch         |   12 +++++++++
>   package/dtc/dtc-separate-lib-install.patch |   28 +++++++++++++++++++++
>   package/dtc/dtc.mk                         |   36 ++++++++++++++++++++++++++++
>   5 files changed, 86 insertions(+), 0 deletions(-)
>   create mode 100644 package/dtc/Config.in
>   create mode 100644 package/dtc/dtc-extra_cflags.patch
>   create mode 100644 package/dtc/dtc-separate-lib-install.patch
>   create mode 100644 package/dtc/dtc.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 1650c71..c9cb3ed 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -396,6 +396,7 @@ source "package/libaio/Config.in"
>   source "package/libraw1394/Config.in"
>   source "package/tslib/Config.in"
>   source "package/libfreefare/Config.in"
> +source "package/dtc/Config.in"

  Alphabetical order.

  Also, even if for now it only installs libftd, I guess it shouldn't be
a problem to install dtc as well.  In that case it fits more in
Development tools or Hardware handling.

>   source "package/libftdi/Config.in"
>   source "package/libhid/Config.in"
>   source "package/libiqrf/Config.in"
> diff --git a/package/dtc/Config.in b/package/dtc/Config.in
> new file mode 100644
> index 0000000..7b86c60
> --- /dev/null
> +++ b/package/dtc/Config.in
> @@ -0,0 +1,9 @@
> +config BR2_PACKAGE_DTC
> +	bool "dtc"
> +	help
> +	  dtc is the Device Tree Compiler, to generate Device Trees.

  dtc generates Flattened Device Trees (i.e. it flattens the device
tree).

> +	  libfdt if a library to manipulate Flat Device Trees.

  Flattened

> +	
> +	  Note that only the library is installed for now.

  Why?  Build failures in the binaries?

> +	
> +	  http://git.jdl.com/gitweb/?p=dtc.git  (no home page)
> diff --git a/package/dtc/dtc-extra_cflags.patch b/package/dtc/dtc-extra_cflags.patch
> new file mode 100644
> index 0000000..03225e7
> --- /dev/null
> +++ b/package/dtc/dtc-extra_cflags.patch
> @@ -0,0 +1,12 @@
> +diff -durN dtc-e4b497f367a3b2ae99cc52089a14a221b13a76ef.orig/Makefile dtc-e4b497f367a3b2ae99cc52089a14a221b13a76ef/Makefile
> +--- dtc-e4b497f367a3b2ae99cc52089a14a221b13a76ef.orig/Makefile	2012-10-22 22:02:47.541240846 +0200
> ++++ dtc-e4b497f367a3b2ae99cc52089a14a221b13a76ef/Makefile	2012-10-22 22:03:21.151047833 +0200
> +@@ -18,7 +18,7 @@
> + CPPFLAGS = -I libfdt -I .
> + WARNINGS = -Werror -Wall -Wpointer-arith -Wcast-qual -Wnested-externs \
> + 	-Wstrict-prototypes -Wmissing-prototypes -Wredundant-decls
> +-CFLAGS = -g -Os -fPIC -Werror $(WARNINGS)
> ++CFLAGS = -g -Os -fPIC -Werror $(WARNINGS) $(EXTRA_CFLAGS)

  Why not CFLAGS += ...?

  And maybe CPPFLAGS should also be fixed.

> +
> + BISON = bison
> + LEX = flex
> diff --git a/package/dtc/dtc-separate-lib-install.patch b/package/dtc/dtc-separate-lib-install.patch
> new file mode 100644
> index 0000000..c86d587
> --- /dev/null
> +++ b/package/dtc/dtc-separate-lib-install.patch
> @@ -0,0 +1,28 @@
> +Makefile: add a rule to only install libfdt
> +
> +Signed-off-by: "Yann E. MORIN"<yann.morin.1998@free.fr>
> +
> +---
> +Patch not sent upstream.
> +
> +It's really specific to buildroot, and is probably not
> +good (aka generic) enough to be pushed upstream.
> +
> +diff --git a/Makefile b/Makefile
> +index 1169e6c..39e7190 100644
> +--- a/Makefile
> ++++ b/Makefile
> +@@ -160,10 +160,12 @@ endif
> + # intermediate target and building them again "for real"
> + .SECONDARY: $(DTC_GEN_SRCS) $(CONVERT_GEN_SRCS)
> +
> +-install: all $(SCRIPTS)
> ++install: all $(SCRIPTS) libfdt_install
> + 	@$(VECHO) INSTALL
> + 	$(INSTALL) -d $(DESTDIR)$(BINDIR)
> + 	$(INSTALL) $(BIN) $(SCRIPTS) $(DESTDIR)$(BINDIR)
> ++
> ++libfdt_install: libfdt
> + 	$(INSTALL) -d $(DESTDIR)$(LIBDIR)
> + 	$(INSTALL) $(LIBFDT_lib) $(DESTDIR)$(LIBDIR)
> + 	ln -sf $(notdir $(LIBFDT_lib)) $(DESTDIR)$(LIBDIR)/$(LIBFDT_soname)
> diff --git a/package/dtc/dtc.mk b/package/dtc/dtc.mk
> new file mode 100644
> index 0000000..d53e78a
> --- /dev/null
> +++ b/package/dtc/dtc.mk
> @@ -0,0 +1,36 @@
> +#############################################################
> +#
> +# libcurl
> +#
> +#############################################################
> +
> +DTC_VERSION         = e4b497f367a3b2ae99cc52089a14a221b13a76ef
> +DTC_SITE            = git://git.jdl.com/software/dtc.git
> +DTC_LICENSE         = GPLv2+/BSD-2c
> +DTC_LICENSE_FILES   = README.license GPL
> +# Note: the dual-license only applies to the library.
> +#       The DT compiler (dtc) is GPLv2+, but we do not install it.
> +DTC_INSTALL_STAGING = YES
> +
> +# Need -fPIC for x86-64

  ???

> +define DTC_BUILD_CMDS
> +	$(TARGET_CONFIGURE_OPTS) $(MAKE1) -C $(@D)                          \

  Looking at the Makefile, I don't see why parallel builds would fail...

> +	                                  EXTRA_CFLAGS="$(TARGET_CFLAGS)"   \
> +	                                  PREFIX=/usr                       \

  It's nicer to put these two options in DTC_MAKE_OPTS.

  Regards,
  Arnout

> +	                                  libfdt
> +endef
> +
> +# libfdt_install is our own install rule added by our patch
> +define DTC_INSTALL_STAGING_CMDS
> +	$(MAKE1) -C $(@D) DESTDIR=$(STAGING_DIR) PREFIX=/usr libfdt_install
> +endef
> +
> +define DTC_INSTALL_TARGET_CMDS
> +	$(MAKE1) -C $(@D) DESTDIR=$(TARGET_DIR) PREFIX=/usr libfdt_install
> +endef
> +
> +define DTC_CLEAN_CMDS
> +	$(MAKE) -C $(@D) libfdt_clean
> +endef
> +
> +$(eval $(generic-package))

-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply

* [Buildroot] [PATCH 01/47] package/cURL: fix static link whith openSSL
From: Arnout Vandecappelle @ 2012-10-25 21:36 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1351113973-17237-2-git-send-email-yann.morin.1998@free.fr>

On 24/10/12 23:25, Yann E. MORIN wrote:
> When openSSL is selected, cURL is configured to use it.
>
> But in this case, the libcurl.pc file /forgets/ to require link
> against -ldl.
>
> This can happen, for example, when BR2_PREFER_STATIC_LIB is not set,
> but an executable wants to be linked statically (for various reasons
> which are irrelevant here).
>
> Fix that by appending a 'Requires: openssl' line to the installed
> libcurl.pc, if openSSL is enabled.
>
> Signed-off-by: "Yann E. MORIN"<yann.morin.1998@free.fr>
> ---
>   package/libcurl/libcurl.mk |   10 ++++++++--
>   1 files changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk
> index 8d8fdb4..80e2922 100644
> --- a/package/libcurl/libcurl.mk
> +++ b/package/libcurl/libcurl.mk
> @@ -29,14 +29,20 @@ define LIBCURL_TARGET_CLEANUP
>   	rm -rf $(TARGET_DIR)/usr/bin/curl-config \
>   	       $(if $(BR2_PACKAGE_CURL),,$(TARGET_DIR)/usr/bin/curl)
>   endef
> -
> +define LIBCURL_FIX_TARGET_PC
> +	printf 'Requires: openssl\n'>>$(TARGET_DIR)/usr/lib/pkgconfig/libcurl.pc
> +endef
>   LIBCURL_POST_INSTALL_TARGET_HOOKS += LIBCURL_TARGET_CLEANUP
> +LIBCURL_POST_INSTALL_TARGET_HOOKS += $(if $(BR2_PACKAGE_OPENSSL),LIBCURL_FIX_TARGET_PC)
>
>   define LIBCURL_STAGING_FIXUP_CURL_CONFIG
>   	$(SED) "s,prefix=/usr,prefix=$(STAGING_DIR)/usr," $(STAGING_DIR)/usr/bin/curl-config
>   endef
> -
> +define LIBCURL_FIX_STAGING_PC
> +	printf 'Requires: openssl\n'>>$(STAGING_DIR)/usr/lib/pkgconfig/libcurl.pc
> +endef
>   LIBCURL_POST_INSTALL_STAGING_HOOKS += LIBCURL_STAGING_FIXUP_CURL_CONFIG
> +LIBCURL_POST_INSTALL_STAGING_HOOKS += $(if $(BR2_PACKAGE_OPENSSL),LIBCURL_FIX_STAGING_PC)

  Why not add it to $(@D)/libcurl.pc.in in a post-patch hook?  Then it only has
to be done once, and I also feel it's a better place to patch things.

  Regards,
  Arnout
-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply

* [Buildroot] [PATCHv6 5/5] iw: pkg-config cleanup
From: Arnout Vandecappelle @ 2012-10-25 21:30 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121025005246.32170c83@skate>

On 25/10/12 00:52, Thomas Petazzoni wrote:
>> >  -IW_MAKE_ENV = PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig" \
>> >  -	PKG_CONFIG="$(HOST_DIR)/usr/bin/pkg-config" \
>> >  +IW_MAKE_ENV = PKG_CONFIG="$(HOST_DIR)/usr/bin/pkg-config" \
>> >    	GIT_DIR=$(IW_DIR)
> I think the PKG_CONFIG variable can be removed as well. All packages
> are being compiled with TARGET_MAKE_ENV, which includes

  iw.mk doesn't use TARGET_MAKE_ENV, but it probably should.

  Regards,
  Arnout
-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply

* [Buildroot] [PATCH] gqview: Fix build failure due to missing -lm
From: Valentine Barshak @ 2012-10-25 19:02 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAFbHwiTUPKXvQt6akZUmUzPnUMXp9QDjbO28R6irCbDzd75deg@mail.gmail.com>

On 10/25/2012 10:23 PM, Will Newton wrote:
> On Thu, Oct 25, 2012 at 6:25 PM, Valentine Barshak <gvaxon@gmail.com> wrote:
>> On 10/25/2012 01:02 PM, Will Newton wrote:
>>>
>>> On Wed, Oct 24, 2012 at 10:35 PM, Valentine Barshak <gvaxon@gmail.com>
>>> wrote:
>>>>
>>>> On 10/25/2012 12:51 AM, Will Newton wrote:
>>>>>
>>>>>
>>>>> On Wed, Oct 24, 2012 at 8:22 PM, Valentine Barshak <gvaxon@gmail.com>
>>>>> wrote:
>>>>>>
>>>>>>
>>>>>> On 10/07/2012 12:35 AM, Valentine Barshak wrote:
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> Signed-off-by: Valentine Barshak <gvaxon@gmail.com>
>>>>>>> ---
>>>>>>>      package/gqview/gqview.mk | 1 +
>>>>>>>      1 file changed, 1 insertion(+)
>>>>>>>
>>>>>>> diff --git a/package/gqview/gqview.mk b/package/gqview/gqview.mk
>>>>>>> index 2f64cd0..7d09fda 100644
>>>>>>> --- a/package/gqview/gqview.mk
>>>>>>> +++ b/package/gqview/gqview.mk
>>>>>>> @@ -7,6 +7,7 @@ GQVIEW_VERSION = 2.1.5
>>>>>>>      GQVIEW_SOURCE = gqview-$(GQVIEW_VERSION).tar.gz
>>>>>>>      GQVIEW_SITE = http://prdownloads.sourceforge.net/gqview
>>>>>>>      GQVIEW_DEPENDENCIES = host-pkg-config libgtk2
>>>>>>> +GQVIEW_CONF_ENV = LIBS="-lm"
>>>>>>>
>>>>>>>      $(eval $(autotools-package))
>>>>>>>
>>>>>>>
>>>>>>
>>>>>> Does this work for everyone else or is it just deprecated and nobody
>>>>>> should
>>>>>> use it?
>>>>>>
>>>>>> I can't build without -lm neither in BR nor using my native host tools.
>>>>>
>>>>>
>>>>>
>>>>> Which version of binutils are you using? 2.22?
>>>>>
>>>>
>>>> Yes, 2.22.
>>>
>>>
>>> I believe this is caused by an issue with linking indirectly with the
>>> newer binutils. gqview relies on a library that is linked against libm
>>> but does not explicitly link against libm itself. Before 2.22 binutils
>>> would copy the DT_NEEDED entries from the library into gqview but it
>>> does not do this any more.
>>
>>
>> gqview calls pow() and sqrt() directly, though it doesn't link against libm.
>>
>>
>>>
>>> A number of packages are affected by this. I believe the correct fix
>>> is to modify the affected packages to link against the libraries they
>>> use explicitly.
>>>
>>
>> Is the above patch OK?
>
> I think so, although it could do with a comment to say why it is
> needed. Peter or Thomas may disagree though?

I thought it was kind of obvious.

>
>> Or do you mean configure/makefile(.in) should be patched to add libm
>> dependency?
>
> That is the proper long term fix that should be pushed to gqview upstream.
>

Gqview is no longer supported. There's a Geeqie project that has been 
forked from gqview and is currently active.

I still use gqview since it has all the features I need and is smaller 
than geeqie. I also prefer gqview because it opens a window and shows
a "broken image" icon for unsupported image types, while geeqie doesn't 
create any window (even an error message box), which is a bit confusing.

Thanks,
Val.

^ permalink raw reply

* [Buildroot] [PATCH] gqview: Fix build failure due to missing -lm
From: Will Newton @ 2012-10-25 18:23 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50897608.5080805@gmail.com>

On Thu, Oct 25, 2012 at 6:25 PM, Valentine Barshak <gvaxon@gmail.com> wrote:
> On 10/25/2012 01:02 PM, Will Newton wrote:
>>
>> On Wed, Oct 24, 2012 at 10:35 PM, Valentine Barshak <gvaxon@gmail.com>
>> wrote:
>>>
>>> On 10/25/2012 12:51 AM, Will Newton wrote:
>>>>
>>>>
>>>> On Wed, Oct 24, 2012 at 8:22 PM, Valentine Barshak <gvaxon@gmail.com>
>>>> wrote:
>>>>>
>>>>>
>>>>> On 10/07/2012 12:35 AM, Valentine Barshak wrote:
>>>>>>
>>>>>>
>>>>>>
>>>>>> Signed-off-by: Valentine Barshak <gvaxon@gmail.com>
>>>>>> ---
>>>>>>     package/gqview/gqview.mk | 1 +
>>>>>>     1 file changed, 1 insertion(+)
>>>>>>
>>>>>> diff --git a/package/gqview/gqview.mk b/package/gqview/gqview.mk
>>>>>> index 2f64cd0..7d09fda 100644
>>>>>> --- a/package/gqview/gqview.mk
>>>>>> +++ b/package/gqview/gqview.mk
>>>>>> @@ -7,6 +7,7 @@ GQVIEW_VERSION = 2.1.5
>>>>>>     GQVIEW_SOURCE = gqview-$(GQVIEW_VERSION).tar.gz
>>>>>>     GQVIEW_SITE = http://prdownloads.sourceforge.net/gqview
>>>>>>     GQVIEW_DEPENDENCIES = host-pkg-config libgtk2
>>>>>> +GQVIEW_CONF_ENV = LIBS="-lm"
>>>>>>
>>>>>>     $(eval $(autotools-package))
>>>>>>
>>>>>>
>>>>>
>>>>> Does this work for everyone else or is it just deprecated and nobody
>>>>> should
>>>>> use it?
>>>>>
>>>>> I can't build without -lm neither in BR nor using my native host tools.
>>>>
>>>>
>>>>
>>>> Which version of binutils are you using? 2.22?
>>>>
>>>
>>> Yes, 2.22.
>>
>>
>> I believe this is caused by an issue with linking indirectly with the
>> newer binutils. gqview relies on a library that is linked against libm
>> but does not explicitly link against libm itself. Before 2.22 binutils
>> would copy the DT_NEEDED entries from the library into gqview but it
>> does not do this any more.
>
>
> gqview calls pow() and sqrt() directly, though it doesn't link against libm.
>
>
>>
>> A number of packages are affected by this. I believe the correct fix
>> is to modify the affected packages to link against the libraries they
>> use explicitly.
>>
>
> Is the above patch OK?

I think so, although it could do with a comment to say why it is
needed. Peter or Thomas may disagree though?

> Or do you mean configure/makefile(.in) should be patched to add libm
> dependency?

That is the proper long term fix that should be pushed to gqview upstream.

^ permalink raw reply

* [Buildroot] buildroot for AM3358 AM3359 with wireless-tools shared library
From: Baruch Siach @ 2012-10-25 18:23 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50897A02.7000407@rie.eu>

Hi Michael,

On Thu, Oct 25, 2012 at 07:42:26PM +0200, Michael Stieler wrote:
> we are using buildroot for arm development. we are migrating from
> arm926t to AM3358 and AM3359.
> 
> i was hoping to continue to use buildroot for the processors, but i
> cannot build the right compiler for these 2.
> 
> in make menuconfig i choose:
> 
> target architecture ARM (big endian)

Why big endian? As far as I know all TI SoCs (as almost all ARM SoCs) are 
little endian.

baruch

> target architecture variant cortex-a8        # for sitara am3358 cortex a8 ?
> toolchain ->  Kernel headers 3.2.x
> package selection for target -> network applications --> X wireless
> tools --> X install shared library
> 
> i need the wireless tools library. liw
> 
> any suggestions ?

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

^ permalink raw reply

* [Buildroot] buildroot for AM3358 AM3359 with wireless-tools shared library
From: Thomas Petazzoni @ 2012-10-25 18:18 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50897A02.7000407@rie.eu>

Dear Michael Stieler,

On Thu, 25 Oct 2012 19:42:26 +0200, Michael Stieler wrote:

> we are using buildroot for arm development. we are migrating from 
> arm926t to AM3358 and AM3359.
> 
> i was hoping to continue to use buildroot for the processors, but i 
> cannot build the right compiler for these 2.
> 
> in make menuconfig i choose:
> 
> target architecture ARM (big endian)
> target architecture variant cortex-a8        # for sitara am3358
> cortex a8 ? toolchain ->  Kernel headers 3.2.x
> package selection for target -> network applications --> X wireless 
> tools --> X install shared library

Please send a .config, a vague explanation about your configurations is
not sufficient for us to understand what you've done.

> i need the wireless tools library. liw
> 
> any suggestions ?

Sorry, but you're not explaining what your problem is. What are you
trying to achieve?

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply

* [Buildroot] buildroot for AM3358 AM3359 with wireless-tools shared library
From: Michael Stieler @ 2012-10-25 17:42 UTC (permalink / raw)
  To: buildroot

hi,

we are using buildroot for arm development. we are migrating from 
arm926t to AM3358 and AM3359.

i was hoping to continue to use buildroot for the processors, but i 
cannot build the right compiler for these 2.

in make menuconfig i choose:

target architecture ARM (big endian)
target architecture variant cortex-a8        # for sitara am3358 cortex a8 ?
toolchain ->  Kernel headers 3.2.x
package selection for target -> network applications --> X wireless 
tools --> X install shared library

i need the wireless tools library. liw

any suggestions ?

^ permalink raw reply

* [Buildroot] [PATCH] gqview: Fix build failure due to missing -lm
From: Valentine Barshak @ 2012-10-25 17:25 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAFbHwiSDub+CF-Dax-peGOBP0WUYq9JeNsXMN1xf0uy1=byArg@mail.gmail.com>

On 10/25/2012 01:02 PM, Will Newton wrote:
> On Wed, Oct 24, 2012 at 10:35 PM, Valentine Barshak <gvaxon@gmail.com> wrote:
>> On 10/25/2012 12:51 AM, Will Newton wrote:
>>>
>>> On Wed, Oct 24, 2012 at 8:22 PM, Valentine Barshak <gvaxon@gmail.com>
>>> wrote:
>>>>
>>>> On 10/07/2012 12:35 AM, Valentine Barshak wrote:
>>>>>
>>>>>
>>>>> Signed-off-by: Valentine Barshak <gvaxon@gmail.com>
>>>>> ---
>>>>>     package/gqview/gqview.mk | 1 +
>>>>>     1 file changed, 1 insertion(+)
>>>>>
>>>>> diff --git a/package/gqview/gqview.mk b/package/gqview/gqview.mk
>>>>> index 2f64cd0..7d09fda 100644
>>>>> --- a/package/gqview/gqview.mk
>>>>> +++ b/package/gqview/gqview.mk
>>>>> @@ -7,6 +7,7 @@ GQVIEW_VERSION = 2.1.5
>>>>>     GQVIEW_SOURCE = gqview-$(GQVIEW_VERSION).tar.gz
>>>>>     GQVIEW_SITE = http://prdownloads.sourceforge.net/gqview
>>>>>     GQVIEW_DEPENDENCIES = host-pkg-config libgtk2
>>>>> +GQVIEW_CONF_ENV = LIBS="-lm"
>>>>>
>>>>>     $(eval $(autotools-package))
>>>>>
>>>>>
>>>>
>>>> Does this work for everyone else or is it just deprecated and nobody
>>>> should
>>>> use it?
>>>>
>>>> I can't build without -lm neither in BR nor using my native host tools.
>>>
>>>
>>> Which version of binutils are you using? 2.22?
>>>
>>
>> Yes, 2.22.
>
> I believe this is caused by an issue with linking indirectly with the
> newer binutils. gqview relies on a library that is linked against libm
> but does not explicitly link against libm itself. Before 2.22 binutils
> would copy the DT_NEEDED entries from the library into gqview but it
> does not do this any more.

gqview calls pow() and sqrt() directly, though it doesn't link against libm.

>
> A number of packages are affected by this. I believe the correct fix
> is to modify the affected packages to link against the libraries they
> use explicitly.
>

Is the above patch OK?

Or do you mean configure/makefile(.in) should be patched to add libm 
dependency?

Thanks,
Val.

^ permalink raw reply

* [Buildroot] [PATCH v2] lcdapi: new package
From: spdawson at gmail.com @ 2012-10-25 12:04 UTC (permalink / raw)
  To: buildroot

From: Simon Dawson <spdawson@gmail.com>

Signed-off-by: Simon Dawson <spdawson@gmail.com>
---
 v2: Incorporated changes suggested by Arnout Vandecappelle, use new upstream

 package/Config.in        |    1 +
 package/lcdapi/Config.in |   11 +++++++++++
 package/lcdapi/lcdapi.mk |   41 +++++++++++++++++++++++++++++++++++++++++
 3 files changed, 53 insertions(+)
 create mode 100644 package/lcdapi/Config.in
 create mode 100644 package/lcdapi/lcdapi.mk

diff --git a/package/Config.in b/package/Config.in
index 1650c71..6ebf2ce 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -392,6 +392,7 @@ endmenu
 
 menu "Hardware handling"
 source "package/ccid/Config.in"
+source "package/lcdapi/Config.in"
 source "package/libaio/Config.in"
 source "package/libraw1394/Config.in"
 source "package/tslib/Config.in"
diff --git a/package/lcdapi/Config.in b/package/lcdapi/Config.in
new file mode 100644
index 0000000..5c997d1
--- /dev/null
+++ b/package/lcdapi/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_LCDAPI
+	bool "lcdapi"
+	depends on BR2_INSTALL_LIBSTDCPP
+	depends on BR2_TOOLCHAIN_HAS_THREADS
+	help
+	  C++ client API for lcdproc, containing a set of widget classes.
+
+	  https://github.com/spdawson/lcdapi
+
+comment "lcdapi requires a toolchain with C++ and thread support enabled"
+	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/lcdapi/lcdapi.mk b/package/lcdapi/lcdapi.mk
new file mode 100644
index 0000000..3b5aaa3
--- /dev/null
+++ b/package/lcdapi/lcdapi.mk
@@ -0,0 +1,41 @@
+#############################################################
+#
+# lcdapi
+#
+#############################################################
+LCDAPI_VERSION = 27e16c37a39c7fab2cf2e912795a730c0e92bcf1
+LCDAPI_SITE = git://github.com/spdawson/lcdapi.git
+LCDAPI_LICENSE = LGPLv2.1+
+LCDAPI_LICENSE_FILES = COPYING
+
+LCDAPI_INSTALL_STAGING = YES
+
+define LCDAPI_BUILD_CMDS
+	$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
+endef
+
+define LCDAPI_INSTALL_STAGING_CMDS
+	$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
+		DESTDIR="$(STAGING_DIR)" install
+endef
+
+define LCDAPI_INSTALL_TARGET_CMDS
+	$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
+		DESTDIR="$(TARGET_DIR)" install
+endef
+
+define LCDAPI_UNINSTALL_STAGING_CMDS
+	$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
+		DESTDIR="$(STAGING_DIR)" uninstall
+endef
+
+define LCDAPI_UNINSTALL_TARGET_CMDS
+	$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
+		DESTDIR="$(TARGET_DIR)" uninstall
+endef
+
+define LCDAPI_CLEAN_CMDS
+	$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) clean
+endef
+
+$(eval $(generic-package))
-- 
1.7.10.4

^ permalink raw reply related

* [Buildroot] [PATCH 9/9] firefox: GNU gnash flash, an open source Adobe Flash player & plugin
From: Stefan Fröberg @ 2012-10-25 11:22 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <508852EB.4070401@mind.be>

24.10.2012 23:43, Arnout Vandecappelle kirjoitti:
> On 24/10/12 15:43, Stefan Fr?berg wrote:
>> I just read the following:
>> http://www.extremetech.com/mobile/137412-linux-kernel-version-3-7-will-support-multiple-arm-socs
>>
>>
>> So it seems things are now getting more easier.
>>
>> Im certainly going to upgrade to that kernel version and try if I have
>> better luck
>> this time with exonys board (basically the same stuff that those Samsung
>> Galaxy S II and III are using ????)
>> under qemu.
>
>  AFAIK that board is not yet part of the multiplatform patch.  And
> anyway, you
> still need a boot loader that sets up the SDRAM correctly, so you
> still need the
> correct U-Boot/Barebox/... config.
>
>  But what is your problem exactly?  Set the kernel defconfig to
> 'exynos' and all
> is well, no?
>

For some reason I could not get it booting.  Just black screen in qemu.
Maybe I messed something in linux-menuconfig or is it because it needs
boot loader ?

But I could boot versatile image without anykind boot loader in the
image with this:

qemu-system-arm   -M versatilepb -kernel zImage -initrd initramfs.xz
-append "root=/dev/ram0"

Best regards
Stefan

>  Regards,
>  Arnout
>

^ permalink raw reply

* [Buildroot] [PATCH v2] fluxbox: select xmodmap
From: Thomas Petazzoni @ 2012-10-25 10:44 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1351161652-9231-1-git-send-email-yegorslists@googlemail.com>

Dear yegorslists at googlemail.com,

On Thu, 25 Oct 2012 12:40:52 +0200, yegorslists at googlemail.com wrote:
> From: Yegor Yefremov <yegorslists@googlemail.com>
> 
> Fluxbox uses xmodmap in its startup script.
> 
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>

Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply

* [Buildroot] [PATCH v2] fluxbox: select xmodmap
From: yegorslists at googlemail.com @ 2012-10-25 10:40 UTC (permalink / raw)
  To: buildroot

From: Yegor Yefremov <yegorslists@googlemail.com>

Fluxbox uses xmodmap in its startup script.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
v2: add comment to the Config.in (Thomas Petazzoni)

 package/fluxbox/Config.in |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/package/fluxbox/Config.in b/package/fluxbox/Config.in
index e4d6c37..588e83b 100644
--- a/package/fluxbox/Config.in
+++ b/package/fluxbox/Config.in
@@ -3,6 +3,8 @@ config BR2_PACKAGE_FLUXBOX
 	depends on BR2_PACKAGE_XORG7
 	depends on BR2_INSTALL_LIBSTDCPP
 	select BR2_PACKAGE_XLIB_LIBX11
+	# Runtime dependency, needed by startup script
+	select BR2_PACKAGE_XAPP_XMODMAP
 	help
 	  The Fluxbox lightweight window manager for X
 
-- 
1.7.7

^ permalink raw reply related


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox