[U-Boot] Remaining CONFIG_NEEDS_MANUAL_RELOC

2012-09-07 Thread Marek Vasut
Hi guys. I've been pondering if the CONFIG_NEEDS_MANUAL_RELOC is getting away from MIPS/NDS32/AVR32/Sparc/M68K any soon. We've been having relocation around for a while, yet these platforms still don't support it. Currently, the MANUAL_RELOC only bloats code all around and usually breaks things

Re: [U-Boot] [PATCH v4 0/6] tegra: Add NAND flash support

2012-09-07 Thread Marek Vasut
Dear Tom Warren, > Simon, > > > -Original Message- > > From: Simon Glass [mailto:s...@chromium.org] > > Sent: Sunday, July 29, 2012 11:53 PM > > To: U-Boot Mailing List > > Cc: Tom Warren; Stephen Warren; Scott Wood; Simon Glass > > Subject: [PATCH v4 0/6] tegra: Add NAND flash support >

Re: [U-Boot] [PATCH v4 1/6] nand: Try to align the default buffers

2012-09-07 Thread Marek Vasut
Dear Tom Warren, > Marek, > > > -Original Message- > > From: Marek Vasut [mailto:ma...@denx.de] > > Sent: Friday, September 07, 2012 11:43 AM > > To: u-boot@lists.denx.de > > Cc: Tom Warren; Simon Glass; Scott Wood > > Subject: Re: [U-Boot] [PATCH v4 1/6] nand: Try to align the default >

Re: [U-Boot] [PATCH 1/2] cmd_nand: dump: Align data and OOB buffers

2012-09-07 Thread Tom Warren
Thierry, On Mon, Jul 30, 2012 at 11:21 PM, Thierry Reding wrote: > In order for cache invalidation and flushing to work properly, the data > and OOB buffers must be aligned to full cache lines. > > Signed-off-by: Thierry Reding This patch, along with the Tegra: 'Enable NAND on TEC' patch, appli

Re: [U-Boot] [PATCH 3/3] tegra: put eMMC environment into the boot sectors

2012-09-07 Thread Tom Warren
Stephen, > -Original Message- > From: Stephen Warren [mailto:swar...@wwwdotorg.org] > Sent: Monday, July 30, 2012 1:56 PM > To: Tom Warren; Andy Fleming > Cc: U-Boot Mailing List; Stephen Warren > Subject: [PATCH 3/3] tegra: put eMMC environment into the boot sectors > > From: Stephen War

Re: [U-Boot] [PATCH 1/2] ARM: tegra: remove redundant mkdirs from board Makefiles

2012-09-07 Thread Tom Warren
Stephen, > -Original Message- > From: Stephen Warren [mailto:swar...@wwwdotorg.org] > Sent: Friday, August 03, 2012 9:55 AM > To: Tom Warren > Cc: Allen Martin; Thierry Reding; Simon Glass; U-Boot Mailing List; Stephen > Warren > Subject: [PATCH 1/2] ARM: tegra: remove redundant mkdirs fro

Re: [U-Boot] [PATCH v4 0/6] tegra: Add NAND flash support

2012-09-07 Thread Simon Glass
Hi Tom, On Fri, Sep 7, 2012 at 2:31 PM, Tom Warren wrote: > Simon, > >> -Original Message- >> From: Simon Glass [mailto:s...@chromium.org] >> Sent: Sunday, July 29, 2012 11:53 PM >> To: U-Boot Mailing List >> Cc: Tom Warren; Stephen Warren; Scott Wood; Simon Glass >> Subject: [PATCH v4 0/

Re: [U-Boot] [PATCH v4 0/6] tegra: Add NAND flash support

2012-09-07 Thread Tom Warren
Simon, > -Original Message- > From: Simon Glass [mailto:s...@chromium.org] > Sent: Sunday, July 29, 2012 11:53 PM > To: U-Boot Mailing List > Cc: Tom Warren; Stephen Warren; Scott Wood; Simon Glass > Subject: [PATCH v4 0/6] tegra: Add NAND flash support > > This series adds NAND flash sup

Re: [U-Boot] [PATCH v4 1/6] nand: Try to align the default buffers

2012-09-07 Thread Tom Warren
Marek, > -Original Message- > From: Marek Vasut [mailto:ma...@denx.de] > Sent: Friday, September 07, 2012 11:43 AM > To: u-boot@lists.denx.de > Cc: Tom Warren; Simon Glass; Scott Wood > Subject: Re: [U-Boot] [PATCH v4 1/6] nand: Try to align the default buffers > > Dear Tom Warren, > > >

Re: [U-Boot] [PATCH] powerpc mpc85xx: Do not protect TLB entry for debuggging in AS1 against invalidation

2012-09-07 Thread Scott Wood
On 09/07/2012 07:50 AM, Joye Laurent wrote: > In case of booting from RAM (CONFIG_SYS_RAMBOOT), a TLB entry is created > for IVPR + IVOR15 to map on valid OP code address. > This TLB entry shall not be protected against invalidation, because > a new TLB entry to access RAM in AS0 will be created by

Re: [U-Boot] [PATCH V2 4/4] cmd_part: add partition-related command

2012-09-07 Thread Stephen Warren
On 09/05/2012 05:58 PM, Tom Rini wrote: > On Wed, Sep 05, 2012 at 06:51:58PM -0500, Rob Herring wrote: >> On 09/05/2012 05:03 PM, Stephen Warren wrote: >>> From: Stephen Warren >>> >>> This implements the following: >>> >>> part uuid mmc 0:1 >>> -> print partition UUID >>> part uuid mmc 0:1 uuid

Re: [U-Boot] [PATCH] env_nand: fix incorrect size parameter to ALLOC_CACHE_ALIGN_BUFFER

2012-09-07 Thread Prabhakar Lad
Hi Stephen, Thanks for the patch. On Sat, Sep 8, 2012 at 12:45 AM, Stephen Warren wrote: > From: Stephen Warren > > The third parameter to ALLOC_CACHE_ALIGN_BUFFER is not size (as named), > but rather count (number of elements of the type to allocate). The > current code ends up allocating one

Re: [U-Boot] Recent commit to env_nand.c causing saveenv to hang

2012-09-07 Thread Stephen Warren
On 09/07/2012 10:44 AM, Prabhakar Lad wrote: > On Fri, Sep 7, 2012 at 9:35 PM, Stephen Warren wrote: >> On 09/07/2012 06:17 AM, Prabhakar Lad wrote: >>> Hi Stephen, >>> >>> I checked out the latest code and try flashing on DM355 for NAND boot mode, >>> I saw that saveenv was causing a hang. A litt

[U-Boot] [PATCH] env_nand: fix incorrect size parameter to ALLOC_CACHE_ALIGN_BUFFER

2012-09-07 Thread Stephen Warren
From: Stephen Warren The third parameter to ALLOC_CACHE_ALIGN_BUFFER is not size (as named), but rather count (number of elements of the type to allocate). The current code ends up allocating one copy of env_t for each byte in its size, which quite possibly ends up overflowing RAM. This fixes a

Re: [U-Boot] [PATCH v4] PXE: FDT: Add support for fdt in PXE

2012-09-07 Thread Jason Hobbs
Chander, Looks good now. Acked-by: Jason Hobbs Thanks, Jason On Fri, Sep 07, 2012 at 01:36:31AM -0400, Chander Kashyap wrote: > Now DT support is becoming common for all new SoC's. Hence it is better > to have option for getting specific FDT from the remote server. > > This patch adds support

Re: [U-Boot] [NEXT PATCH v1 2/7] NAND: added NAND type to nand_ids

2012-09-07 Thread Scott Wood
On 09/07/2012 10:23 AM, Stefano Babic wrote: > On 07/09/2012 11:12, Stefano Babic wrote: >> On 07/09/2012 01:19, Scott Wood wrote: >>> On 09/06/2012 03:04 AM, Stefano Babic wrote: Signed-off-by: Stefano Babic --- >> >> Hi Scott, >> drivers/mtd/nand/nand_ids.c |2 ++ 1 file

Re: [U-Boot] [PATCH v3 2/4] kirkwood: implement kw_sdram_bs_set()

2012-09-07 Thread Prafulla Wadaskar
> -Original Message- > From: Holger Brunck [mailto:holger.bru...@keymile.com] > Sent: 20 July 2012 05:34 > To: u-boot@lists.denx.de > Cc: Gerlando Falauto; Holger Brunck; Prafulla Wadaskar; Valentin > Longchamp; Marek Vasut > Subject: [PATCH v3 2/4] kirkwood: implement kw_sdram_bs_set() >

Re: [U-Boot] [PATCH] powerpc mpc85xx: Synchronization Required for mmucsr0 spr

2012-09-07 Thread Scott Wood
On 09/07/2012 07:25 AM, Laurent Joye wrote: > As explained in the PowerPC e500 Core Family Reference Manual > (Synchronization Requirements for SPRs), an isync instruction > is required after a mtspr mmucsr0 instruction. > > Signed-off-by: Laurent Joye > --- > arch/powerpc/cpu/mpc85xx/tlb.c |

Re: [U-Boot] [PATCH v3 1/4] kirkwood: use c-struct for access to SDRAM addr decode registers

2012-09-07 Thread Prafulla Wadaskar
> -Original Message- > From: Holger Brunck [mailto:holger.bru...@keymile.com] > Sent: 20 July 2012 05:34 > To: u-boot@lists.denx.de > Cc: Holger Brunck; Prafulla Wadaskar; Valentin Longchamp; Gerlando > Falauto; Marek Vasut > Subject: [PATCH v3 1/4] kirkwood: use c-struct for access to SD

Re: [U-Boot] [PATCH v4 4/4] arm/km: use kw_sdram_size_adjust to adjust SDRAM size

2012-09-07 Thread Prafulla Wadaskar
> -Original Message- > From: Gerlando Falauto [mailto:gerlando.fala...@keymile.com] > Sent: 25 July 2012 09:26 > To: u-boot@lists.denx.de > Cc: Holger Brunck; Gerlando Falauto; Prafulla Wadaskar; Valentin > Longchamp > Subject: [PATCH v4 4/4] arm/km: use kw_sdram_size_adjust to adjust > S

Re: [U-Boot] [PATCH v4 3/4] kirkwood: implement kw_sdram_size_adjust

2012-09-07 Thread Prafulla Wadaskar
> -Original Message- > From: Gerlando Falauto [mailto:gerlando.fala...@keymile.com] > Sent: 25 July 2012 09:24 > To: u-boot@lists.denx.de > Cc: Gerlando Falauto; Holger Brunck; Prafulla Wadaskar; Valentin > Longchamp > Subject: [PATCH v4 3/4] kirkwood: implement kw_sdram_size_adjust > >

Re: [U-Boot] [PATCH v4 1/6] nand: Try to align the default buffers

2012-09-07 Thread Marek Vasut
Dear Tom Warren, > Simon, > > > -Original Message- > > From: Simon Glass [mailto:s...@chromium.org] > > Sent: Sunday, July 29, 2012 11:53 PM > > To: U-Boot Mailing List > > Cc: Tom Warren; Stephen Warren; Scott Wood; Simon Glass > > Subject: [PATCH v4 1/6] nand: Try to align the default b

Re: [U-Boot] [PATCH v4 1/6] nand: Try to align the default buffers

2012-09-07 Thread Tom Warren
Simon, > -Original Message- > From: Simon Glass [mailto:s...@chromium.org] > Sent: Sunday, July 29, 2012 11:53 PM > To: U-Boot Mailing List > Cc: Tom Warren; Stephen Warren; Scott Wood; Simon Glass > Subject: [PATCH v4 1/6] nand: Try to align the default buffers > > The NAND layer needs t

Re: [U-Boot] cuImage doesn't boot with u-boot 2009.11 version

2012-09-07 Thread narayanasami vijayaraghavan
Hello Scott, Thanks again for explaining. I will proceed based on your inputs. Narayanasami. On 9/7/12, Scott Wood wrote: > On 09/07/2012 11:07 AM, narayanasami vijayaraghavan wrote: >> Hello Scott, Thanks for replying. >> We have few more products based on different >> ppc-processor/u-boot/l

Re: [U-Boot] cuImage doesn't boot with u-boot 2009.11 version

2012-09-07 Thread narayanasami vijayaraghavan
Hello Scott, Thanks for replying. We have few more products based on different ppc-processor/u-boot/linux, all are using cuImage. So, for better maintenance and uniformity, I am trying cuImage with this new h/w (P1020 & u-boot-2009.11). Could you please let me know that, - Can we make cuImage wo

[U-Boot] A little introduction

2012-09-07 Thread Henrik Nordström
A little introduction to let you know who I am and why I am here. I am maintaining u-boot support for Allwinner A1x class CPUs, and ARM Cortex A8 class SoC by chineese Allwinner Tech. http://www.github.com/hno/uboot-allwinner/ To be honest I am not guilty to much of the code. The bulk of the A10

Re: [U-Boot] How to manage RMOBILE patches?

2012-09-07 Thread Albert ARIBAUD
Hi Tom, On Thu, 6 Sep 2012 13:58:57 -0700, Tom Rini wrote: > On 09/06/2012 12:28 PM, Albert ARIBAUD wrote: > > Hi Nobuhiro, > > > > On Thu, 6 Sep 2012 08:20:59 +0900, Nobuhiro Iwamatsu > > wrote: > > > >> Hi, Tom. > >> > >> On Wed, Sep 5, 2012 at 11:17 PM, Tom Rini wrote: > >>> On 09/05/2012

Re: [U-Boot] [PATCH v3 3/4] kirkwood: implement kw_sdram_size_adjust

2012-09-07 Thread Prafulla Wadaskar
> -Original Message- > From: Holger Brunck [mailto:holger.bru...@keymile.com] > Sent: 06 September 2012 23:47 > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Gerlando Falauto; Valentin Longchamp; Marek > Vasut > Subject: Re: [PATCH v3 3/4] kirkwood: implement kw_sdram_size_adjust > >

Re: [U-Boot] Recent commit to env_nand.c causing saveenv to hang

2012-09-07 Thread Prabhakar Lad
On Fri, Sep 7, 2012 at 9:35 PM, Stephen Warren wrote: > On 09/07/2012 06:17 AM, Prabhakar Lad wrote: >> Hi Stephen, >> >> I checked out the latest code and try flashing on DM355 for NAND boot mode, >> I saw that saveenv was causing a hang. A little debugging pointed me to >> this patch http://patc

Re: [U-Boot] [PATCH] Tegra: Change Tegra20 to Tegra in common code, prep for T30

2012-09-07 Thread Tom Warren
Stephen, On Thu, Sep 6, 2012 at 7:49 PM, Stephen Warren wrote: > On 09/06/2012 03:27 PM, Tom Warren wrote: >> Convert TEGRA20_ defines to either TEGRA_ or NV_PA_ where appropriate. >> Convert tegra20_ source file and function names to tegra_, also. >> >> Upcoming Tegra30 port will use common code

Re: [U-Boot] cuImage doesn't boot with u-boot 2009.11 version

2012-09-07 Thread Scott Wood
On 09/07/2012 11:07 AM, narayanasami vijayaraghavan wrote: > Hello Scott, Thanks for replying. > We have few more products based on different > ppc-processor/u-boot/linux, all are using cuImage. So, for better > maintenance and uniformity, I am trying cuImage with this new h/w > (P1020 & u-boot-

Re: [U-Boot] Recent commit to env_nand.c causing saveenv to hang

2012-09-07 Thread Stephen Warren
On 09/07/2012 06:17 AM, Prabhakar Lad wrote: > Hi Stephen, > > I checked out the latest code and try flashing on DM355 for NAND boot mode, > I saw that saveenv was causing a hang. A little debugging pointed me to > this patch http://patchwork.ozlabs.org/patch/174069/ reverting this > patch saveenv

Re: [U-Boot] [PATCH v4 2/3] ARM: add support for Network Space v2 Lite and Mini

2012-09-07 Thread Prafulla Wadaskar
> -Original Message- > From: Simon Guinot [mailto:simon.gui...@sequanux.org] > Sent: 07 September 2012 02:28 > To: Prafulla Wadaskar > Cc: Albert ARIBAUD; u-boot@lists.denx.de > Subject: Re: [PATCH v4 2/3] ARM: add support for Network Space v2 Lite > and Mini > > On Thu, Sep 06, 2012 at

[U-Boot] Kernel boot halts with "Verifying Checksum ... Bad Data CRC"

2012-09-07 Thread Ellis Andrew
Hi, I'm not sure if this is specifically related to u boot. I have compiled a linux kernel, which if I run on a system with flash memory with 256k sector size there are no problems, however if  I rebuild for a system using flash with 64k sector size the boot process halts with the following er

Re: [U-Boot] [NEXT PATCH v1 2/7] NAND: added NAND type to nand_ids

2012-09-07 Thread Stefano Babic
On 07/09/2012 11:12, Stefano Babic wrote: > On 07/09/2012 01:19, Scott Wood wrote: >> On 09/06/2012 03:04 AM, Stefano Babic wrote: >>> Signed-off-by: Stefano Babic >>> --- > > Hi Scott, > >>> drivers/mtd/nand/nand_ids.c |2 ++ >>> 1 file changed, 2 insertions(+) >>> >>> diff --git a/drivers

[U-Boot] [Patch v2] powerpc/mpc8xxx: Move HWCONFIG_BUFFER_SIZE into config.h

2012-09-07 Thread York Sun
Before proper environment is setup, we extract hwconfig and put it into a buffer with size HWCONFIG_BUFFER_SIZE. We need to enlarge the buffer to accommodate longer string. Since this macro is used in multiple files, we move it into arch/powerpc/include/asm/config.h. Signed-off-by: York Sun --- C

[U-Boot] [PATCH] powerpc mpc85xx: Synchronization Required for mmucsr0 spr

2012-09-07 Thread Joye Laurent
As explained in the PowerPC e500 Core Family Reference Manual (Synchronization Requirements for SPRs), an isync instruction is required after a mtspr mmucsr0 instruction. Signed-off-by: Laurent Joye --- arch/powerpc/cpu/mpc85xx/tlb.c |1 + 1 file changed, 1 insertion(+) diff --git a/arch/po

[U-Boot] [PATCH] powerpc mpc85xx: Do not protect TLB entry for debuggging in AS1 against invalidation

2012-09-07 Thread Joye Laurent
In case of booting from RAM (CONFIG_SYS_RAMBOOT), a TLB entry is created for IVPR + IVOR15 to map on valid OP code address. This TLB entry shall not be protected against invalidation, because a new TLB entry to access RAM in AS0 will be created by cpu_init_early_f. If this TLB entry is protected ag

[U-Boot] [PATCH] powerpc mpc85xx: Synchronization Required for mmucsr0 spr

2012-09-07 Thread Laurent Joye
As explained in the PowerPC e500 Core Family Reference Manual (Synchronization Requirements for SPRs), an isync instruction is required after a mtspr mmucsr0 instruction. Signed-off-by: Laurent Joye --- arch/powerpc/cpu/mpc85xx/tlb.c |1 + 1 file changed, 1 insertion(+) diff --git a/arch/po

[U-Boot] booting failed ( NAND read from offset 3c0000 failed -74 )

2012-09-07 Thread Manoj.J
Hi All, I have used latest U-boot and am using that on DM355, when i boot my board i get this on putty. [ NAND read from offset 3c failed -74 *** Warning - readenv() failed, using default environment ] Can anyone help on this up and how to over come it. ? Thank you boot log of latest u-

[U-Boot] Recent commit to env_nand.c causing saveenv to hang

2012-09-07 Thread Prabhakar Lad
Hi Stephen, I checked out the latest code and try flashing on DM355 for NAND boot mode, I saw that saveenv was causing a hang. A little debugging pointed me to this patch http://patchwork.ozlabs.org/patch/174069/ reverting this patch saveenv works fine. Has this patch being tested ? Or is that I a

Re: [U-Boot] common, hush: bug (or feature?) with exit

2012-09-07 Thread Heiko Schocher
Hello Holger, On 07.09.2012 13:10, Holger Brunck wrote: Hi Heiko, On 09/07/2012 11:51 AM, Heiko Schocher wrote: I try the following script in u-boot - setenv error 'if true; then echo ERROR exit; f

Re: [U-Boot] common, hush: bug (or feature?) with exit

2012-09-07 Thread Holger Brunck
Hi Heiko, On 09/07/2012 11:51 AM, Heiko Schocher wrote: > > I try the following script in u-boot > - > setenv error 'if true; then > echo ERROR > exit; > fi' > don't know if it helps but AFAIK you need

[U-Boot] [PATCH 2/2] ARM: at91sam9x5: enable MCI0 support for 9x5ek board.

2012-09-07 Thread Josh Wu
Signed-off-by: Josh Wu --- arch/arm/cpu/arm926ejs/at91/at91sam9x5_devices.c | 13 + board/atmel/at91sam9x5ek/at91sam9x5ek.c | 16 include/configs/at91sam9x5ek.h |8 3 files changed, 37 insertions(+) diff --git a/arch/arm/c

[U-Boot] [PATCH 1/2] mmc: at91: add multi block read/write support.

2012-09-07 Thread Josh Wu
Since the at91sam9263, the mmc hardware support multi blocks read/write. So this driver enable it. This patch also change delay time to max value, which can avoid the timeout error in rare case. Signed-off-by: Josh Wu --- drivers/mmc/gen_atmel_mci.c | 16 +--- include/atmel_mci.h

[U-Boot] common, hush: bug (or feature?) with exit

2012-09-07 Thread Heiko Schocher
Hello, I try the following script in u-boot - setenv error 'if true; then echo ERROR exit; fi' setenv foo echo "This should not be printed" setenv loadubi setenv updfs 'if true; then

Re: [U-Boot] [PATCH v4 1/2] Loop block device for sandbox

2012-09-07 Thread Marek Vasut
Dear Pavel Herrmann, > On Friday 07 of September 2012 11:26:48 Marek Vasut wrote: > > Dear Pavel Herrmann, > > > > > On Friday 07 of September 2012 01:29:55 Marek Vasut wrote: > > > > Dear Pavel Herrmann, > > > > > > > > > This driver uses files as block devices, can be used for testing > > > >

Re: [U-Boot] [PATCH v4 1/2] Loop block device for sandbox

2012-09-07 Thread Pavel Herrmann
On Friday 07 of September 2012 11:26:48 Marek Vasut wrote: > Dear Pavel Herrmann, > > > On Friday 07 of September 2012 01:29:55 Marek Vasut wrote: > > > Dear Pavel Herrmann, > > > > > > > This driver uses files as block devices, can be used for testing disk > > > > operations on sandbox. > > > >

Re: [U-Boot] [PATCH v4 2/3] ARM: add support for Network Space v2 Lite and Mini

2012-09-07 Thread Simon Guinot
On Thu, Sep 06, 2012 at 04:19:16PM -0700, Prafulla Wadaskar wrote: > > > > -Original Message- > > From: Simon Guinot [mailto:simon.gui...@sequanux.org] > > Sent: 06 September 2012 13:52 > > To: Prafulla Wadaskar; Albert ARIBAUD > > Cc: u-boot@lists.denx.de; Simon Guinot > > Subject: [PATC

Re: [U-Boot] [PATCH v4 1/2] Loop block device for sandbox

2012-09-07 Thread Marek Vasut
Dear Pavel Herrmann, > On Friday 07 of September 2012 01:29:55 Marek Vasut wrote: > > Dear Pavel Herrmann, > > > > > This driver uses files as block devices, can be used for testing disk > > > operations on sandbox. > > > A new command "sata_loop" is introduced to load files in runtime. > > > >

Re: [U-Boot] [PATCH v4 1/2] Loop block device for sandbox

2012-09-07 Thread Pavel Herrmann
On Friday 07 of September 2012 01:29:55 Marek Vasut wrote: > Dear Pavel Herrmann, > > > This driver uses files as block devices, can be used for testing disk > > operations on sandbox. > > A new command "sata_loop" is introduced to load files in runtime. > > WARNING: externs should be avoided in

Re: [U-Boot] [NEXT PATCH v1 2/7] NAND: added NAND type to nand_ids

2012-09-07 Thread Stefano Babic
On 07/09/2012 01:19, Scott Wood wrote: > On 09/06/2012 03:04 AM, Stefano Babic wrote: >> Signed-off-by: Stefano Babic >> --- Hi Scott, >> drivers/mtd/nand/nand_ids.c |2 ++ >> 1 file changed, 2 insertions(+) >> >> diff --git a/drivers/mtd/nand/nand_ids.c b/drivers/mtd/nand/nand_ids.c >> ind

Re: [U-Boot] [PATCH v3 5/6] da850/omap-l138: davinci_emac: Suppress auto negotiation if needed

2012-09-07 Thread Prabhakar Lad
Hi Bastian, Thanks for the patch. On Thu, Sep 6, 2012 at 11:37 AM, Bastian Ruppert wrote: > From this commit id: b78375a806ed04eb22b963255cfdef8df702de47 auto > negotiation is enabled in RMII mode. Some boards based on da850 need > to suppress this procedure. > > CC: Rajashekhara, Sudhakar > CC

Re: [U-Boot] [PATCH v2] ubifs: Fix ubifsload when using ZLIB

2012-09-07 Thread Andreas Bießmann
On 05.09.2012 17:05, Veli-Pekka Peltola wrote: > Using ZLIB compression with UBIFS fails if last data node is not a size of > UBIFS_BLOCK_SIZE (4096 bytes). > > Easiest way to test this is trying to read a file smaller than 4k: > => ubifsload 4100 /etc/fstab > Loading file '/etc/fstab' to addr