[U-Boot] [PATCH 2/2] LaCie/common: Fix cloudbox ethernet leds

2013-06-25 Thread Frederic Leroy
From: Frédéric Leroy The cloudbox device have a different ethernet phy setup than other ns2 devices. We get initialization value from the GPL LaCie source Signed-off-by: Frédéric Leroy --- board/LaCie/common/common.c | 8 1 file changed, 8 insertions(+) diff --git a/board/LaCie/commo

[U-Boot] [PATCH 1/2] arm: add support for LaCie CloudBox

2013-06-25 Thread Frederic Leroy
mode 100644 board/LaCie/cloudbox/kwbimage.cfg diff --git a/board/LaCie/cloudbox/Makefile b/board/LaCie/cloudbox/Makefile new file mode 100644 index 000..d656951 --- /dev/null +++ b/board/LaCie/cloudbox/Makefile @@ -0,0 +1,46 @@ +# +# Copyright (C) 2013 Frederic Leroy +# +# Based on Kirkwood

[U-Boot] [PATCH 0/2] add support for LaCie CloudBox

2013-06-25 Thread Frederic Leroy
These patches add support for the network storage LaCie CloudBox. The device shares one sata hardrive via a gigabit ethernet port. It is based on a Marvell Kirkwood 6702 soc. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listi

[U-Boot] [PATCH] Fix ext2/ext4 filesystem accesses beyond 2TiB

2013-06-24 Thread Frederic Leroy
From: Frédéric Leroy With CONFIG_SYS_64BIT_LBA, lbaint_t gets defined as a 64-bit type, which is required to represent block numbers for storage devices that exceed 2TiB (the block size usually is 512B), e.g. recent hard drives We now use lbaint_t for partition offset to reflect the lbaint_t cha

[U-Boot] [PATCH] Fix ext2/ext4 filesystem accesses beyond 2TiB

2013-06-24 Thread Frederic Leroy
From: Frédéric Leroy With CONFIG_SYS_64BIT_LBA, lbaint_t gets defined as a 64-bit type, which is required to represent block numbers for storage devices that exceed 2TiB (the block size usually is 512B), e.g. recent hard drives We now use lbaint_t for partition offset to reflect the lbaint_t cha

[U-Boot] [PATCH] LaCie kirkwood boards: allow disk > 2TB

2013-06-10 Thread Frederic Leroy
From: Frédéric Leroy For big disk support, we need LBA addressing on 64 bits --- include/configs/lacie_kw.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/lacie_kw.h b/include/configs/lacie_kw.h index 09b5798..847afcd 100644 --- a/include/configs/lacie_kw.h +++ b/include/con