Re: [PATCH 7/9] Samsung/serial: move the decision about an improved UART into Kconfig

2012-07-22 Thread Sascha Hauer
On Fri, Jul 20, 2012 at 09:29:43PM +0200, Juergen Beisert wrote: > More or less just cosmetic (removing ifdefs!). > > Signed-off-by: Juergen Beisert > --- > arch/arm/mach-samsung/Kconfig |5 + > arch/arm/mach-samsung/include/mach/s5pcxx-iomap.h |5 +++-- > drivers

Re: [PATCH 6/7] compressed: rename barebox target to zbarebox and zbarebox.bin

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
On 08:35 Mon 23 Jul , Sascha Hauer wrote: > On Mon, Jul 23, 2012 at 06:26:02AM +0200, Jean-Christophe PLAGNIOL-VILLARD > wrote: > > Today we link to whole barebox and rely on gcc to cleanup via it's garbage > > collector. > > Now we specify only what is needed and introduce a new directory wit

Re: [PATCH 6/7] compressed: rename barebox target to zbarebox and zbarebox.bin

2012-07-22 Thread Sascha Hauer
On Mon, Jul 23, 2012 at 06:26:02AM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote: > Today we link to whole barebox and rely on gcc to cleanup via it's garbage > collector. > Now we specify only what is needed and introduce a new directory with source > only related to the compressed target. > > B

Re: [PATCH 1/1] compressed: rename barebox target to zbarebox and zbarebox.bin

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
On 08:26 Mon 23 Jul , Sascha Hauer wrote: > On Mon, Jul 23, 2012 at 08:24:40AM +0200, Sascha Hauer wrote: > > Hi Jean-Christophe, > > > > On Sun, Jul 22, 2012 at 09:31:36PM +0200, Jean-Christophe PLAGNIOL-VILLARD > > wrote: > > > Keep the previous target untouched. > > > This will allow to do

Re: [PATCH 1/1] compressed: rename barebox target to zbarebox and zbarebox.bin

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
On 08:24 Mon 23 Jul , Sascha Hauer wrote: > Hi Jean-Christophe, > > On Sun, Jul 22, 2012 at 09:31:36PM +0200, Jean-Christophe PLAGNIOL-VILLARD > wrote: > > Keep the previous target untouched. > > This will allow to do not brake the modules support. > > This breaks images which use barebox.bi

Re: [PATCH 1/1] compressed: rename barebox target to zbarebox and zbarebox.bin

2012-07-22 Thread Sascha Hauer
On Mon, Jul 23, 2012 at 08:24:40AM +0200, Sascha Hauer wrote: > Hi Jean-Christophe, > > On Sun, Jul 22, 2012 at 09:31:36PM +0200, Jean-Christophe PLAGNIOL-VILLARD > wrote: > > Keep the previous target untouched. > > This will allow to do not brake the modules support. > > This breaks images whic

Re: [PATCH 1/1] compressed: rename barebox target to zbarebox and zbarebox.bin

2012-07-22 Thread Sascha Hauer
Hi Jean-Christophe, On Sun, Jul 22, 2012 at 09:31:36PM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote: > Keep the previous target untouched. > This will allow to do not brake the modules support. This breaks images which use barebox.bin as an input for their SoC specific image, like MLO (Omap xlo

Re: AT91SAM9263-ek - Kernel panic

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
On 23:10 Sun 22 Jul , Stutz Sven wrote: >Hello to everybody, > >previously I have had some doubts to run a Linux kernel on this evalboard. >Especially to find a BSP for my board > >In the meantime I have had some problems which I was able to solve by >myself or readin

[PATCH 7/7] compressed image: add gzip support

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- arch/arm/compressed/Makefile |1 + arch/arm/compressed/piggy.gzip.S |6 ++ arch/arm/cpu/start.c |4 common/Kconfig |3 +++ lib/decompress_inflate.c |1 + 5 files changed, 15

[PATCH 3/7] compressed image: factorise compressor type

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
This will simplify to support of multi compressor support such as gzip, lzma, xz. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- Makefile | 12 +++- arch/arm/cpu/start.c |9 ++--- arch/arm/lib/Makefile |2 +- arch/arm/lib/barebox.lds.S |

[PATCH 6/7] compressed: rename barebox target to zbarebox and zbarebox.bin

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
Today we link to whole barebox and rely on gcc to cleanup via it's garbage collector. Now we specify only what is needed and introduce a new directory with source only related to the compressed target. Build it in arch//compressed Rebuild all the needed object. Keep the previous target untouched.

[PATCH 4/7] decompressor: import malloc/free implementation for linux 3.4

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
This is need for gunzip support Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- include/linux/decompress/mm.h | 68 + 1 file changed, 68 insertions(+) create mode 100644 include/linux/decompress/mm.h diff --git a/include/linux/decompress/mm.h b/inc

[PATCH 2/7] decompress_unlzo: define decompress_unlzo as decompress

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
so we can use decompress in the decompressor this will simplify multi decompress support Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- lib/decompress_unlzo.c |1 + 1 file changed, 1 insertion(+) diff --git a/lib/decompress_unlzo.c b/lib/decompress_unlzo.c index 0e6a7ad..56abfc6 100644

[PATCH 1/7] stddev: make it selectable via Kconfig

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
enable is by default for simple and hush we do not need to NO_SHELL this allow to save 1KiB Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- commands/Makefile |2 +- common/Kconfig|5 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/commands/Makefile b/commands

[PATCH 5/7] ARM: add early malloc support needed by the decompressor

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
This is not needed by lzo but by gunzip, xz and others. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- arch/arm/cpu/start.c |7 +++ 1 file changed, 7 insertions(+) diff --git a/arch/arm/cpu/start.c b/arch/arm/cpu/start.c index 18c5c83..8ab6fdc 100644 --- a/arch/arm/cpu/start.c +++

[PATCH 0/7 V2] compressed image update

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi, v2: fix modules support move compressed barebox to arch/ Jean-Christophe PLAGNIOL-VILLARD (7): stddev: make it selectable via Kconfig decompress_unlzo: define decompress_unlzo as decompress comp

AT91SAM9263-ek - Kernel panic

2012-07-22 Thread Stutz Sven
Hello to everybody, previously I have had some doubts to run a Linux kernel on this evalboard. Especially to find a BSP for my board In the meantime I have had some problems which I was able to solve by myself or reading through different forums. I still have some problems with Barebox a

[PATCH 1/1] compressed: rename barebox target to zbarebox and zbarebox.bin

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
Keep the previous target untouched. This will allow to do not brake the modules support. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- This patch apply over my previous patch series that add gzip support Best Regards, J. Makefile | 49 ++--

Booting kernel from FAT partition on beagle board

2012-07-22 Thread Bernhard Walle
Hi, this may be a very stupid question, but I'm using Barebox for the first time. My kernel is located on a SD card on the 1st FAT partition. I tried following sequence: barebox@Texas Instrument's Beagle:/ bootargs="console=ttyO2,115200

[PATCH 3/7] compressed image: factorise compressor type

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
This will simplify to support of multi compressor support such as gzip, lzma, xz. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- Makefile | 12 +++- arch/arm/cpu/start.c |9 ++--- arch/arm/lib/Makefile |2 +- arch/arm/lib/barebox.lds.S |

[PATCH 6/7] compressed: allow to link only what is needed

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
Today we link to whole barebox and rely on gcc to cleanup via it's garbage collector. Now we specify only what is needed and introduce a new directory with source only related to the compressed target. The architecture will have to specify the needed file for the link via comp-arch-y. Import st

[PATCH 1/7] stddev: make it selectable via Kconfig

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
enable is by default for simple and hush we do not need to NO_SHELL this allow to save 1KiB Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- commands/Makefile |2 +- common/Kconfig|5 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/commands/Makefile b/commands

[PATCH 7/7] compressed image: add gzip support

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- Makefile |7 ++- arch/arm/cpu/start.c |4 common/Kconfig |3 +++ lib/decompress_inflate.c |1 + piggy.gzip.S |6 ++ 5 files changed, 20 insertions(+), 1 deletion(-) crea

[PATCH 5/7] ARM: add early malloc support needed by the decompressor

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
This is not needed by lzo but by gunzip, xz and others. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- arch/arm/cpu/start.c |7 +++ 1 file changed, 7 insertions(+) diff --git a/arch/arm/cpu/start.c b/arch/arm/cpu/start.c index 18c5c83..8ab6fdc 100644 --- a/arch/arm/cpu/start.c +++

[PATCH 2/7] decompress_unlzo: define decompress_unlzo as decompress

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
so we can use decompress in the decompressor this will simplify multi decompress support Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- lib/decompress_unlzo.c |1 + 1 file changed, 1 insertion(+) diff --git a/lib/decompress_unlzo.c b/lib/decompress_unlzo.c index 0e6a7ad..56abfc6 100644

[PATCH 4/7] decompressor: import malloc/free implementation for linux 3.4

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
This is need for gunzip support Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- include/linux/decompress/mm.h | 68 + 1 file changed, 68 insertions(+) create mode 100644 include/linux/decompress/mm.h diff --git a/include/linux/decompress/mm.h b/inc

[PATCH] lib/Kconfig: Fix alignment of arrows in label

2012-07-22 Thread Bernhard Walle
Signed-off-by: Bernhard Walle --- lib/Kconfig |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Kconfig b/lib/Kconfig index 3bcde5c..32634df 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -1,4 +1,4 @@ -menu "Library routines" +menu "Library routines " config

[PATCH 0/7] compressed inmage update

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
HI, The following changes since commit 63ac9c743b1304b0b4b792643e4704394f6f8aeb: only compress default env in uncompressed images (2012-07-20 14:20:15 +0200) are available in the git repository at: git://git.jcrosoft.org/barebox.git tags/compressed-gzip for you to fetch changes up to 5c808

[PATCH 0/7] compressed image update

2012-07-22 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi, The following changes since commit 63ac9c743b1304b0b4b792643e4704394f6f8aeb: only compress default env in uncompressed images (2012-07-20 14:20:15 +0200) are available in the git repository at: git://git.jcrosoft.org/barebox.git tags/compressed-gzip for you to fetch changes up to 5c808