[U-Boot] [PATCH v4] env: Allow accessing non-mtd devices

2013-02-11 Thread Lubomir Rintel
In certain cases, memory device is present as flat file or block device (via mmc or mtdblock layer). Do not attempt MTD operations against it. Signed-off-by: Lubomir Rintel lkund...@v3.sk --- Changes for v2: - Coding Style cleanup - Clarified an error message Changes for v3: - Used

Re: [U-Boot] [PATCH 1/4] x86: Remove eNET boards

2013-02-11 Thread Graeme Russ
Hi Simon, On Sat, Feb 9, 2013 at 3:42 AM, Simon Glass s...@chromium.org wrote: These are no longer used and should be removed. Signed-off-by: Simon Glass s...@chromium.org --- board/eNET/Makefile | 52 board/eNET/eNET.c | 284 -

Re: [U-Boot] [PATCH 3/4] x86: Remove all real mode code

2013-02-11 Thread Graeme Russ
Hi Simon, On Sat, Feb 9, 2013 at 3:42 AM, Simon Glass s...@chromium.org wrote: This code is pretty old and we want to support only 32-bit systems now. Signed-off-by: Simon Glass s...@chromium.org --- README | 5 - arch/x86/config.mk | 1 -

Re: [U-Boot] [PATCH 2/4] x86: Remove sc520 cpu

2013-02-11 Thread Graeme Russ
Hi Simon, On Sat, Feb 9, 2013 at 3:42 AM, Simon Glass s...@chromium.org wrote: This x86 CPU variant is no longer required as the boards that use it have been removed. Signed-off-by: Simon Glass s...@chromium.org --- arch/x86/cpu/sc520/Makefile | 58

Re: [U-Boot] [PATCH 4/4] x86: Remove 16-bit reset code

2013-02-11 Thread Graeme Russ
Hi Simon, On Sat, Feb 9, 2013 at 3:42 AM, Simon Glass s...@chromium.org wrote: This code is not needed now, since we boot U-Boot from Coreboot on x86. Signed-off-by: Simon Glass s...@chromium.org --- Makefile | 4 -- README | 4 --

[U-Boot] u-boot target coreboot: error: impossible constraint in 'asm'

2013-02-11 Thread Altunbas Sabri (DC-IA/EAH2)
Hi, I get following error if I compile without optimization (-Os ). I want to compile without optimization because I can debug better with my jtag debugger. gcc -g-ffunction-sections -fvisibility=hidden -D__KERNEL__ -DCONFIG_SYS_TEXT_BASE=0x01008000

Re: [U-Boot] [PATCH] mmc:sdhci:fix: Change default interrupts enabled at SDHCI initialization

2013-02-11 Thread Lukasz Majewski
Dear All, Any feedback about this patch? It has been on the list for quite long time. Dear All, Any feedback about this patch? This patch changes sdhci_init()'s behavior to NOT enable all interrupt sources by default. Moreover interrupt signaling has been disabled. This

Re: [U-Boot] [PATCH v3 00/10] Add Marvell Dove and SolidRun CuBox

2013-02-11 Thread Sebastian Hesselbarth
On 02/11/2013 04:39 AM, Prafulla Wadaskar wrote: -Original Message- From: Sebastian Hesselbarth [mailto:sebastian.hesselba...@gmail.com] Sent: 17 January 2013 00:55 To: Sebastian Hesselbarth Cc: u-boot@lists.denx.de; Rabeeh Khoury; Albert Aribaud; Prafulla Wadaskar; Andy Fleming; Joe

Re: [U-Boot] [PATCH v3 00/10] Add Marvell Dove and SolidRun CuBox

2013-02-11 Thread Luka Perkov
On Mon, Feb 11, 2013 at 10:43:00AM +0100, Sebastian Hesselbarth wrote: u-boot has kwboot for kirkwood since ages, but the general functionality to boot through UART boot mode also applies to above SoCs. I took kwbimage to reflect that kwboot should be used for booting this image. IMHO

Re: [U-Boot] [PATCH] Allow u-boot to be silent without forcing Linux to be

2013-02-11 Thread Stefan Roese
Hi Joe, On 02/08/2013 09:17 PM, Joe Hershberger wrote: That's a bit presumptuous of you, u-boot! Signed-off-by: Joe Hershberger joe.hershber...@ni.com --- common/cmd_bootm.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/cmd_bootm.c

Re: [U-Boot] [PATCH 0/5] Add support for using an UBI volume for environment

2013-02-11 Thread Stefan Roese
Hi Joe, On 02/08/2013 09:07 PM, Joe Hershberger wrote: NAND is not good at handling absolute addresses to sectors for storing particular data. The current implementation of the NAND env support works around this in several ways such as storing a pointer to the sector in the OOB of the first

Re: [U-Boot] [PATCH 1/5] ubi: Expose a few simple functions from the cmd_ubi

2013-02-11 Thread Stefan Roese
On 02/08/2013 09:07 PM, Joe Hershberger wrote: Part, Read, and Write functionality that will be used by env_ubi. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Some minor nitpicking comments below. --- common/cmd_ubi.c| 146

Re: [U-Boot] [PATCH v1 6/7] MIPS: u-boot.lds: add relocation specific sections

2013-02-11 Thread Gabor Juhos
2013.02.09. 21:33 keltezéssel, daniel.schwierz...@gmail.com írta: From: Gabor Juhos juh...@openwrt.org This section contain the table needed for dynamic relocation. Also provide symbols for the relocation code to access the table. Discard all sections which are not needed in the final

Re: [U-Boot] [PATCH 2/5] ubi: ubifs: Turn off verbose prints

2013-02-11 Thread Stefan Roese
On 02/08/2013 09:07 PM, Joe Hershberger wrote: The prints are out of control. SILENCE! Signed-off-by: Joe Hershberger joe.hershber...@ni.com --- common/cmd_ubi.c | 3 +++ drivers/mtd/mtdpart.c | 14 -- drivers/mtd/ubi/ubi.h | 3 ++- fs/ubifs/ubifs.h | 2 +- 4

Re: [U-Boot] [PATCH 3/5] mtd: Make mtdparts work with pre-reloc env

2013-02-11 Thread Stefan Roese
On 02/08/2013 09:07 PM, Joe Hershberger wrote: The env in UBI needs to look up the mtd partition as part of relocation, which happens before relocation. Make the mtdparts code capable of working on the default env to start with. The code tries to set values in the env as well, but again,

Re: [U-Boot] [PATCH 4/5] env: Add support for UBI environment

2013-02-11 Thread Stefan Roese
On 02/08/2013 09:07 PM, Joe Hershberger wrote: UBI is a better place for the environment on NAND devices because it handles wear-leveling and bad blocks. Gluebi is needed in Linux to access the env as an MTD partition. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Looks good:

Re: [U-Boot] [PATCH 5/5] env: Add redundant env support to UBI env

2013-02-11 Thread Stefan Roese
On 02/08/2013 09:07 PM, Joe Hershberger wrote: Allow the user to specify two UBI volumes to use for the environment Signed-off-by: Joe Hershberger joe.hershber...@ni.com Some minor comments below. --- README| 6 +++ common/env_ubi.c | 115

[U-Boot] [PATCH v2 01/10] mxs: Rename CONFIG_SPL_MX28_PSWITCH_WAIT to CONFIG_SPL_MXS_PSWITCH_WAIT

2013-02-11 Thread Otavio Salvador
The power switch option is compatible with i.MX23 and i.MX28 so the configration option needs to reflect it. We choose 'CONFIG_SPL_MXS_PSWITCH_WAIT' for the option name. Signed-off-by: Otavio Salvador ota...@ossystems.com.br Acked-by: Marek Vasut ma...@denx.de --- Changes in v2: None

[U-Boot] [PATCH v2 0/10] mx23/mxs pending patches

2013-02-11 Thread Otavio Salvador
This patchset includes the pending patches we have in our tree. It fixes issues for mx23evk and mx23_olinuxino boards. The DRAM control register change has been kept specific to mx23evk as it breaks mx23_olinuxino (as it than reads only 16MB) Changes in v2: - Extend code comment to explicit say

[U-Boot] [PATCH v2 02/10] mx23: Document the tRAS lockout setting in memory initialization

2013-02-11 Thread Otavio Salvador
Add a comment about the tRAS lockout setting of HW_DRAM_CTL08 to enable the 'Fast Auto Pre-Charge' found in the memory chip. The setting is applied after memory initialization and it is worth document it. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Changes in v2: - Extend code

[U-Boot] [PATCH v2 03/10] mx23evk: Adjust DRAM control register to use full 128MB of RAM

2013-02-11 Thread Otavio Salvador
Adjust HW_DRAM_CTL14 to enable the chip selects to allow usage of full 128MB of RAM. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Changes in v2: None board/freescale/mx23evk/spl_boot.c | 10 ++ 1 file changed, 10 insertions(+) diff --git

[U-Boot] [PATCH v2 04/10] led: Use STATUS_LED_ON and STATUS_LED_OFF when calling __led_set

2013-02-11 Thread Otavio Salvador
This fixes the gpio_led driver which needs to compare againt a STATUS_LED_ON to enable a led. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Changes in v2: None common/cmd_led.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/common/cmd_led.c

[U-Boot] [PATCH v2 05/10] mxs: Fix iomux.h to not break build during assembly stage

2013-02-11 Thread Otavio Salvador
This fixes the build failure when included in mx23_olinuxino.h board config; the addition of asm/types.h is due u32 being otherwise undefined. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Changes in v2: None arch/arm/include/asm/arch-mxs/iomux.h | 5 + 1 file changed, 5

[U-Boot] [PATCH v2 06/10] mx23_olinuxino: Add support for status LED

2013-02-11 Thread Otavio Salvador
This allow user to know if the bootloader is running, even without a serial console. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Changes in v2: - Use MUX pin name - Requested by Marek board/olimex/mx23_olinuxino/mx23_olinuxino.c | 7 +++

[U-Boot] [PATCH v2 07/10] usb: mxs: Disable USB Port 1 for i.MX23

2013-02-11 Thread Otavio Salvador
The i.MX23 just one USB port so disable the second controller probe when building for i.MX23. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Changes in v2: - Avoid wrong clock setting in MX23 drivers/usb/host/ehci-mxs.c | 12 1 file changed, 12 insertions(+) diff --git

[U-Boot] [PATCH v2 08/10] mx23evk: Enable USB support

2013-02-11 Thread Otavio Salvador
This enabled USB support for the mx23evk board. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Changes in v2: None include/configs/mx23evk.h | 10 ++ 1 file changed, 10 insertions(+) diff --git a/include/configs/mx23evk.h b/include/configs/mx23evk.h index c44a8b8..8db6283

[U-Boot] [PATCH v2 09/10] mx23_olinuxino: Enable USB support

2013-02-11 Thread Otavio Salvador
This enabled USB support for the mx23_olinuxino board. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Changes in v2: - Add changes for allow use of the USB hub board/olimex/mx23_olinuxino/mx23_olinuxino.c | 6 ++ board/olimex/mx23_olinuxino/spl_boot.c | 4

[U-Boot] [PATCH v2 10/10] mx23_olinuxino: Add ethernet support

2013-02-11 Thread Otavio Salvador
This adds support to the LAN9512 chip included in the board and extend the environment to easy netboot use. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Changes in v2: - Remove extra newline include/configs/mx23_olinuxino.h | 39 --- 1 file

Re: [U-Boot] [PATCH v1 6/7] MIPS: u-boot.lds: add relocation specific sections

2013-02-11 Thread Daniel Schwierzeck
2013/2/11 Gabor Juhos juh...@openwrt.org: 2013.02.09. 21:33 keltezéssel, daniel.schwierz...@gmail.com írta: From: Gabor Juhos juh...@openwrt.org This section contain the table needed for dynamic relocation. Also provide symbols for the relocation code to access the table. Discard all

Re: [U-Boot] [PATCH] mmc:sdhci:fix: Change default interrupts enabled at SDHCI initialization

2013-02-11 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/11/2013 03:50 AM, Lukasz Majewski wrote: Dear All, Any feedback about this patch? It has been on the list for quite long time. This is one of the patches that I really want Andy to chime in on. - -- Tom -BEGIN PGP

Re: [U-Boot] [PATCH v1 6/7] MIPS: u-boot.lds: add relocation specific sections

2013-02-11 Thread Gabor Juhos
that's weird. Actually I checked after each patch if the *_end symbols match the U-Boot binary size. Now I checked again with different toolchains (gcc-4.[5,6,7], binutils-2.[21.53,22] and I have again that binutils issue. But all toolchains have one in common (tested with qemu_mips):

Re: [U-Boot] [PATCH v1 6/7] MIPS: u-boot.lds: add relocation specific sections

2013-02-11 Thread Daniel Schwierzeck
2013/2/11 Gabor Juhos juh...@openwrt.org: that's weird. Actually I checked after each patch if the *_end symbols match the U-Boot binary size. Now I checked again with different toolchains (gcc-4.[5,6,7], binutils-2.[21.53,22] and I have again that binutils issue. But all toolchains have one

[U-Boot] [PATCH v2] build: imx: Fix 'u-boot.imx' build without full OBJTREE reference

2013-02-11 Thread Otavio Salvador
When calling 'make u-boot.imx' the build were failing as it were expecting the full path for the file; this regression has been included by commit 71a988a (imximage.cfg: run files through C preprocessor). The direct references for u-boot.imx were replaced by $(obj) as config.mk handles the proper

[U-Boot] [PATCH v2 6/7] MIPS: u-boot.lds: add relocation specific sections

2013-02-11 Thread Daniel Schwierzeck
From: Gabor Juhos juh...@openwrt.org This section contain the table needed for dynamic relocation. Also provide symbols for the relocation code to access the table. Discard all sections which are not needed in the final ELF binary and U-Boot image. Section .dynsym cannot be discarded or GNU ld

Re: [U-Boot] [PATCH v2 6/7] MIPS: u-boot.lds: add relocation specific sections

2013-02-11 Thread Gabor Juhos
2013.02.11. 15:32 keltezéssel, Daniel Schwierzeck írta: From: Gabor Juhos juh...@openwrt.org This section contain the table needed for dynamic relocation. Also provide symbols for the relocation code to access the table. Discard all sections which are not needed in the final ELF binary

[U-Boot] patches review

2013-02-11 Thread Angelo Dureghello
Dear All, i never had an answer on these 2 patches, related to the introduction of AMCORE board: http://patchwork.ozlabs.org/patch/215904/ http://patchwork.ozlabs.org/patch/214686/ Many thanks Regards, Angelo Dureghello ___ U-Boot mailing list

[U-Boot] [PATCH] Allow OMAP2 boards to setup GPMC chipselects.

2013-02-11 Thread Mark Jackson
Expose the enable_gpmc_cs_config() function so OMAP2 boards can register GPMC chipselects. Signed-off-by: Mark Jackson m...@newflow.co.uk --- arch/arm/include/asm/arch-am33xx/sys_proto.h |2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/include/asm/arch-am33xx/sys_proto.h

[U-Boot] [PATCH v2 0/2] Tegra: MMC: Add DT support for MMC to T20 boards

2013-02-11 Thread Tom Warren
This patchset adds device-tree support to the Tegra MMC driver. All device config is done via properties in the DT files instead of hard-coded config options/function arguments. I've tested this on my Seaboard and everything works fine, including card detect. For the other T20 boards, I've used

[U-Boot] [PATCH v2 1/2] Tegra: fdt: Add/enhance sdhci (mmc) nodes for all T20 DT files

2013-02-11 Thread Tom Warren
Linux dts files were used for those boards that didn't already have sdhci info populated. Tamonten has their own dtsi file with common sdhci nodes (sourced from Linux). Signed-off-by: Tom Warren twar...@nvidia.com --- v2: - cleanup comments in dts files/match w/kernel files - add sdhci aliases in

[U-Boot] [PATCH v2 2/2] Tegra: MMC: Add DT support to MMC driver for all T20 boards

2013-02-11 Thread Tom Warren
tegra_mmc_init() now parses the DT info for bus width, WP/CD GPIOs, etc. Tested on Seaboard, fully functional. Tamonten boards (medcom-wide, plutux, and tec) use a different/new dtsi file w/common settings. Signed-off-by: Tom Warren twar...@nvidia.com --- v2: - all boards now call tegra_mmc_init

Re: [U-Boot] [PATCH v2 1/2] Tegra: fdt: Add/enhance sdhci (mmc) nodes for all T20 DT files

2013-02-11 Thread Lucas Stach
Hi Tom, Am Montag, den 11.02.2013, 10:17 -0700 schrieb Tom Warren: Linux dts files were used for those boards that didn't already have sdhci info populated. Tamonten has their own dtsi file with common sdhci nodes (sourced from Linux). Signed-off-by: Tom Warren twar...@nvidia.com --- v2:

Re: [U-Boot] [PATCH v2 2/2] Tegra: MMC: Add DT support to MMC driver for all T20 boards

2013-02-11 Thread Lucas Stach
Am Montag, den 11.02.2013, 10:17 -0700 schrieb Tom Warren: tegra_mmc_init() now parses the DT info for bus width, WP/CD GPIOs, etc. Tested on Seaboard, fully functional. Tamonten boards (medcom-wide, plutux, and tec) use a different/new dtsi file w/common settings. Signed-off-by: Tom

Re: [U-Boot] [PATCH v2 1/2] Tegra: fdt: Add/enhance sdhci (mmc) nodes for all T20 DT files

2013-02-11 Thread Tom Warren
Lucas, On Mon, Feb 11, 2013 at 10:28 AM, Lucas Stach d...@lynxeye.de wrote: Hi Tom, Am Montag, den 11.02.2013, 10:17 -0700 schrieb Tom Warren: Linux dts files were used for those boards that didn't already have sdhci info populated. Tamonten has their own dtsi file with common sdhci nodes

Re: [U-Boot] [PATCH v2 2/2] Tegra: MMC: Add DT support to MMC driver for all T20 boards

2013-02-11 Thread Tom Warren
Lucas, On Mon, Feb 11, 2013 at 10:33 AM, Lucas Stach d...@lynxeye.de wrote: Am Montag, den 11.02.2013, 10:17 -0700 schrieb Tom Warren: tegra_mmc_init() now parses the DT info for bus width, WP/CD GPIOs, etc. Tested on Seaboard, fully functional. Tamonten boards (medcom-wide, plutux, and tec)

Re: [U-Boot] [PATCH v2 1/2] Tegra: fdt: Add/enhance sdhci (mmc) nodes for all T20 DT files

2013-02-11 Thread Lucas Stach
Am Montag, den 11.02.2013, 10:56 -0700 schrieb Tom Warren: Lucas, On Mon, Feb 11, 2013 at 10:28 AM, Lucas Stach d...@lynxeye.de wrote: Hi Tom, Am Montag, den 11.02.2013, 10:17 -0700 schrieb Tom Warren: Linux dts files were used for those boards that didn't already have sdhci info

Re: [U-Boot] [PATCH v2 1/2] Tegra: fdt: Add/enhance sdhci (mmc) nodes for all T20 DT files

2013-02-11 Thread Thierry Reding
On Mon, Feb 11, 2013 at 10:56:33AM -0700, Tom Warren wrote: Lucas, On Mon, Feb 11, 2013 at 10:28 AM, Lucas Stach d...@lynxeye.de wrote: Hi Tom, Am Montag, den 11.02.2013, 10:17 -0700 schrieb Tom Warren: Linux dts files were used for those boards that didn't already have sdhci info

Re: [U-Boot] [PATCH v2 1/2] Tegra: fdt: Add/enhance sdhci (mmc) nodes for all T20 DT files

2013-02-11 Thread Tom Warren
Thierry/Lucas, On Mon, Feb 11, 2013 at 12:11 PM, Thierry Reding thierry.red...@avionic-design.de wrote: On Mon, Feb 11, 2013 at 10:56:33AM -0700, Tom Warren wrote: Lucas, On Mon, Feb 11, 2013 at 10:28 AM, Lucas Stach d...@lynxeye.de wrote: Hi Tom, Am Montag, den 11.02.2013, 10:17 -0700

Re: [U-Boot] [PATCH] kirkwood_nand: allow usage of NAND_ECC_SOFT_BCH

2013-02-11 Thread Scott Wood
On 02/10/2013 09:39:08 PM, Prafulla Wadaskar wrote: -Original Message- From: Holger Brunck [mailto:holger.bru...@keymile.com] Sent: 16 January 2013 14:04 To: u-boot@lists.denx.de Cc: Gerlando Falauto; Holger Brunck; Valentin Longchamp; Prafulla Wadaskar Subject: [PATCH]

Re: [U-Boot] [U-boot]-gdwarf option

2013-02-11 Thread Scott Wood
On 02/07/2013 02:01:05 AM, tiger...@viatech.com.cn wrote: Hi, experts: I have a JTAG debugger. Its manual suggested user should add -gdwarf-2 option in the arm gcc compiler. Because it could produce debugging information. But I searched the whole uboot source package, could not find -gdwarf-2

Re: [U-Boot] [PATCH 1/2] Tegra: fdt: Add/enhance sdhci (mmc) nodes for all T20 DT files

2013-02-11 Thread Scott Wood
On 02/05/2013 10:56:59 PM, Simon Glass wrote: Hi, On Tue, Feb 5, 2013 at 12:49 PM, Stephen Warren swar...@wwwdotorg.org wrote: Right now, I believe your/Simon's policy on DT is to only include in the U-Boot .dts files what's actually needed for U-Boot. I've asked that this be done on a

Re: [U-Boot] [PATCH v5 01/23] ppc: Add initial memory barrier macros

2013-02-11 Thread Scott Wood
On 02/08/2013 09:11:57 AM, Simon Glass wrote: These are available on other architectures, so add them on ppc. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: None arch/powerpc/include/asm/io.h | 8 1 file

Re: [U-Boot] [Pull] u-boot-fdt/master

2013-02-11 Thread Tom Rini
On Fri, Feb 08, 2013 at 10:41:41PM -0500, Jerry Van Baren wrote: Dear Tom, Please pull u-boot-fdt. Thanks, gvb The following changes since commit d62ef5619c9249772247d6af3b8e65207ae0c871: sf: stmicro: Add support for N25Q256A (2013-02-06 10:10:00 -0500) are available in the git

Re: [U-Boot] [PATCH] Add README for the Falcon mode

2013-02-11 Thread Otavio Salvador
On Mon, Nov 12, 2012 at 8:59 AM, Stefano Babic sba...@denx.de wrote: Simple howto to add support to a board for booting the kernel from SPL (Falcon mode). Signed-off-by: Stefano Babic sba...@denx.de Could this be updated and resend? This is an interesting feature which lacks documentation

Re: [U-Boot] Patches for this merge window

2013-02-11 Thread Tom Rini
[take 2 for me, gmail defaults to reply not reply-all] On Sun, Feb 10, 2013 at 11:48 PM, Simon Glass s...@google.com wrote: Hi Tom, I see quite a lot of non-x86 patches in my todo list - does that mean that I should pick them up if I am happy with them, or just assign them back to you once

[U-Boot] Fwd: pull request for u-boot-tegra/master into ARM/master

2013-02-11 Thread Tom Warren
Dropped the list from the PR. Sorry 'bout that. -- Forwarded message -- From: Tom Warren twarren.nvi...@gmail.com Date: Mon, Feb 11, 2013 at 11:05 AM Subject: pull request for u-boot-tegra/master into ARM/master To: Albert ARIBAUD albert.u.b...@aribaud.net Cc: Tom Warren

[U-Boot] u-Boot oxnas-810 usb support...

2013-02-11 Thread Frank v.d. Jagt
Hello all, I'm trying to setup usb support in u-Boot for eTrayz (an oxnas-810 device) so it will be able to boot from usb see http://forum.xtreamer.net/forum/386-etrayz-mods-general-discussion Device is currently running u-Boot 1.1.2 (no usb) from flash. I'm looking for u-Boot configuration

Re: [U-Boot] [PATCH v3 00/10] Add Marvell Dove and SolidRun CuBox

2013-02-11 Thread Prafulla Wadaskar
-Original Message- From: Luka Perkov [mailto:l...@openwrt.org] Sent: 11 February 2013 02:08 To: Sebastian Hesselbarth Cc: Prafulla Wadaskar; u-boot@lists.denx.de; Rabeeh Khoury; Albert Aribaud; Andy Fleming; Joe Hershberger; Daniel Stodden Subject: Re: [PATCH v3 00/10] Add Marvell

Re: [U-Boot] [PATCH 0/5] Add support for using an UBI volume for environment

2013-02-11 Thread Scott Wood
On 02/08/2013 02:07:21 PM, Joe Hershberger wrote: NAND is not good at handling absolute addresses to sectors for storing particular data. The current implementation of the NAND env support works around this in several ways such as storing a pointer to the sector in the OOB of the first sector

Re: [U-Boot] [PATCH v2] build: imx: Fix 'u-boot.imx' build without full OBJTREE reference

2013-02-11 Thread Marek Vasut
Dear Otavio Salvador, When calling 'make u-boot.imx' the build were failing as it were expecting the full path for the file; this regression has been included by commit 71a988a (imximage.cfg: run files through C preprocessor). The direct references for u-boot.imx were replaced by $(obj) as

Re: [U-Boot] [PATCH v2 1/2] Tegra: fdt: Add/enhance sdhci (mmc) nodes for all T20 DT files

2013-02-11 Thread Thierry Reding
On Mon, Feb 11, 2013 at 12:21:59PM -0700, Tom Warren wrote: Thierry/Lucas, On Mon, Feb 11, 2013 at 12:11 PM, Thierry Reding thierry.red...@avionic-design.de wrote: On Mon, Feb 11, 2013 at 10:56:33AM -0700, Tom Warren wrote: Lucas, On Mon, Feb 11, 2013 at 10:28 AM, Lucas Stach

Re: [U-Boot] Pull request for ARM zynq

2013-02-11 Thread Michal Simek
Hi Albert and Tom, can you please look at my pull request? Thanks, Michal 2012/9/13 Michal Simek mon...@monstr.eu: Hi Albert, CC: Joe and Tom a month ago I have sent 4 Xilinx ARM zynq patches to mailing list (v2) (reminder yesterday) and I haven't got any reaction from anybody. The first