Re: [U-Boot] [PATCH 2/3] fsl_pmic: add I2C interface support

2010-12-28 Thread Jason Liu
Hi, Stefano, 2010/12/27 Stefano Babic sba...@denx.de: On 12/22/2010 02:23 PM, Jason Liu wrote: This patch add I2C interface for fsl_pmic driver support +#ifdef CONFIG_FSL_PMIC_I2C +#include i2c.h +static int init_done; + +u32 pmic_reg(u32 reg, u32 val, u32 write) +{ +     unsigned char

Re: [U-Boot] [PATCH 1/3] mxc_gpio: add support for MX53 processor

2010-12-28 Thread Jason Liu
Hi, Stefano, 2010/12/27 Stefano Babic sba...@denx.de: On 12/22/2010 02:23 PM, Jason Liu wrote: This patch add mxc_gpio support for Freescale MX53 processor Signed-off-by: Jason Liu r64...@freescale.com ---  drivers/gpio/mxc_gpio.c |    9 +++--  1 files changed, 7 insertions(+), 2

[U-Boot] Updating a system

2010-12-28 Thread David Lynch Jr.
I need to setup a system so that it can boot a user web updateable kernel/rootfs or a failsafe version. The process has to be manageable by completely non-technical users and work from a single flash media - no plugging in an SD card or USB stick to recover. Before I re-invent the

Re: [U-Boot] [PATCH 3/3] imximage: Add MX53 boot image support

2010-12-28 Thread Jason Liu
Hi, Stefano, 2010/12/27 Stefano Babic sba...@denx.de: On 12/22/2010 02:23 PM, Jason Liu wrote: This patch add the MX53 boot image support This patch has been tested on Freescale MX53EVK board. Signed-off-by: Jason Liu r64...@freescale.com ---  board/freescale/mx53evk/config.mk    |   25

[U-Boot] [PATCH v2] Correct chip detect logic

2010-12-28 Thread Yanjun Yang
The lan91c96_detect_chip routine is not correct according to the manual. Signed-off-by: YanJun Yang yangyj...@gmail.com --- Changes for v2: - Avoid line wraps and ensure tabs - Don't define a new macro drivers/net/lan91c96.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff

Re: [U-Boot] [PATCH v2 1/3] MX5: Add initial support for MX53 processor

2010-12-28 Thread Jason Liu
Hi, Stefano, 2010/12/27 Stefano Babic sba...@denx.de: On 12/22/2010 02:23 PM, Jason Liu wrote: Add initial support for Freescale MX53 processor, - Add the iomux support and the pin definition, - Add the regs definition, clean up some unused def from mx51, - Add the low level init support,

Re: [U-Boot] [PATCH v2 3/3] MX5:MX53: add initial support for MX53EVK board

2010-12-28 Thread Stefano Babic
On 12/28/2010 08:45 AM, Jason Liu wrote: + /* Set VDDA to 1.25V */ + val = pmic_reg_read(REG_SW_2); + val = (val (~0x1F)) | 0x1A; I have already commented this. Please drop all fix constants and use already provided #define or add new ones if needed. Do you think that both

Re: [U-Boot] [PATCH 3/3] imximage: Add MX53 boot image support

2010-12-28 Thread Stefano Babic
On 12/28/2010 09:08 AM, Jason Liu wrote: +#ifdef CONFIG_MX51 NAK. This is wrong: mkimage is a tool running on host and must be possible to include it in a distro. It must be able (as it now does) to produce the correct image at runtime. For this reason there are no #ifdef in the actual code.

Re: [U-Boot] [PATCH v2 1/3] MX5: Add initial support for MX53 processor

2010-12-28 Thread Stefano Babic
On 12/28/2010 09:12 AM, Jason Liu wrote: A general remark. You posted two different patchset now to support the MX53 processor. As the patches are related, please combine all patches in a single patchset to avoid that only a few of them go to be applied and to simplify review. The patch

Re: [U-Boot] [PATCH 3/3] imximage: Add MX53 boot image support

2010-12-28 Thread Jason Liu
Hi, Stefano, 2010/12/28 Stefano Babic sba...@denx.de: On 12/28/2010 09:08 AM, Jason Liu wrote: +#ifdef CONFIG_MX51 NAK. This is wrong: mkimage is a tool running on host and must be possible to include it in a distro. It must be able (as it now does) to produce the correct image at runtime.

Re: [U-Boot] [PATCH v2 1/3] MX5: Add initial support for MX53 processor

2010-12-28 Thread Jason Liu
Hi, Stefano, 2010/12/28 Stefano Babic sba...@denx.de: On 12/28/2010 09:12 AM, Jason Liu wrote: A general remark. You posted two different patchset now to support the MX53 processor. As the patches are related, please combine all patches in a single patchset to avoid that only a few of them

Re: [U-Boot] Updating a system

2010-12-28 Thread Albert ARIBAUD
Hi David, Le 28/12/2010 08:54, David Lynch Jr. a écrit : I need to setup a system so that it can boot a user web updateable kernel/rootfs or a failsafe version. The process has to be manageable by completely non-technical users and work from a single flash media - no plugging in an SD

Re: [U-Boot] [PATCH 3/3] imximage: Add MX53 boot image support

2010-12-28 Thread Stefano Babic
On 12/28/2010 09:34 AM, Jason Liu wrote: You have sure in Freescale a better visibility how to group together this feature. Is the newer header typical for the MX53 or are there other processors using the same structure ? John has already pointed out that the MX28 is very similar, and, after

[U-Boot] [PATCH] .gitignore: ignore generated u-boot.imx

2010-12-28 Thread Stefano Babic
Signed-off-by: Stefano Babic sba...@denx.de --- .gitignore |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index e71f6ac..8ec3d06 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,7 @@ /System.map /u-boot /u-boot.hex +/u-boot.imx

Re: [U-Boot] [RFC PATCH 8/8] OMAP3: Add ift target to top level Makefile

2010-12-28 Thread Dirk Behme
On 28.12.2010 01:47, John Rigby wrote: Signed-off-by: John Rigbyjohn.ri...@linaro.org --- Makefile |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 9055028..baf11b3 100644 --- a/Makefile +++ b/Makefile @@ -289,8 +289,13 @@

[U-Boot] Dear Friends

2010-12-28 Thread Po-Yu Chuang
DIV P style=TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt; mso-pagination: widow-orphan class=MsoNormal align=leftSPAN style=FONT-FAMILY: Verdana; COLOR: #ff6600; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt lang=EN-US/SPANSPAN style=FONT-FAMILY: Verdana; COLOR: black;

[U-Boot] IXP42x patch series

2010-12-28 Thread Michael Schwingen
Hi, here is my IXP42x patch series, which brings my IXP boards back to life after relocation was added. Some comments: I added the XScale sub-architecture to the MAINTAINERS list to get a better overview which boards may still need work: [PATCH 01/13] add XScale sub architecture (IXP/PXA) to

[U-Boot] [PATCH 11/13] add dvlhost (dLAN 200 AV Wireless G) board

2010-12-28 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- MAINTAINERS|1 + board/dvlhost/Makefile | 50 + board/dvlhost/config.mk|5 + board/dvlhost/dvlhost.c| 118 + board/dvlhost/dvlhost_hw.h | 47 +

[U-Boot] [PATCH 02/13] add support for IXP42x Rev. B1 and newer

2010-12-28 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- arch/arm/cpu/ixp/npe/npe.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/arch/arm/cpu/ixp/npe/npe.c b/arch/arm/cpu/ixp/npe/npe.c index 2e68689..9d1090e 100644 --- a/arch/arm/cpu/ixp/npe/npe.c +++

[U-Boot] [PATCH 12/13] add support for function-sections

2010-12-28 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- config.mk|6 ++ include/configs/actux1.h |1 + include/configs/actux2.h |1 + include/configs/actux3.h |1 + include/configs/actux4.h |1 + 5 files changed, 10 insertions(+), 0 deletions(-) diff

[U-Boot] [PATCH 09/13] update/fix AcTux4 board

2010-12-28 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- board/actux4/actux4.c| 12 +++- board/actux4/config.mk |4 include/configs/actux4.h | 22 +- 3 files changed, 24 insertions(+), 14 deletions(-) delete mode 100644 board/actux4/config.mk

[U-Boot] [PATCH 05/13] fix depend target in npe directory

2010-12-28 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- arch/arm/cpu/ixp/npe/Makefile |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/ixp/npe/Makefile b/arch/arm/cpu/ixp/npe/Makefile index c756a1d..14ab3c7 100644 --- a/arch/arm/cpu/ixp/npe/Makefile +++

[U-Boot] [PATCH 10/13] update/fix some more IXP42x boards (only compile tested)

2010-12-28 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- board/ixdp425/config.mk|3 ++- board/prodrive/pdnb3/config.mk |2 +- boards.cfg |2 +- include/configs/ixdp425.h | 13 ++--- include/configs/ixdpg425.h |9 ++---

[U-Boot] [PATCH 08/13] update/fix AcTux3 board

2010-12-28 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- board/actux3/actux3.c| 27 +++ board/actux3/config.mk |2 -- board/actux3/u-boot.lds | 45 - include/configs/actux3.h | 23 +-- 4

[U-Boot] [PATCH 04/13] Fix IXP code to work after relocation was added: - jump to real flash location after reset before turning off flash mirror - fix timer system to use HZ == 1000, remove broken in

2010-12-28 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- arch/arm/cpu/ixp/cpu.c |5 -- arch/arm/cpu/ixp/start.S | 59 ++-- arch/arm/cpu/ixp/timer.c | 125 +++- arch/arm/include/asm/arch-ixp/ixp425.h |

[U-Boot] [PATCH 03/13] trigger hardware watchdog in IXP42x serial driver

2010-12-28 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- drivers/serial/serial_ixp.c |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/serial/serial_ixp.c b/drivers/serial/serial_ixp.c index dd26af4..5893fd2 100644 --- a/drivers/serial/serial_ixp.c +++

[U-Boot] [PATCH 13/13] add support for fixed-speed MII ports (no standard PHY registers)

2010-12-28 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- arch/arm/cpu/ixp/npe/npe.c | 18 +- include/configs/actux2.h |5 + include/configs/actux3.h |5 + 3 files changed, 27 insertions(+), 1 deletions(-) diff --git a/arch/arm/cpu/ixp/npe/npe.c

[U-Boot] [PATCH 07/13] update/fix AcTux2 board

2010-12-28 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- board/actux2/actux2.c| 26 ++ board/actux2/config.mk |2 -- board/actux2/u-boot.lds | 45 - include/configs/actux2.h | 21 - 4 files

[U-Boot] [PATCH 01/13] add XScale sub architecture (IXP/PXA) to board list

2010-12-28 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- MAINTAINERS | 46 +++--- 1 files changed, 23 insertions(+), 23 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index ba83f71..5fc3de1 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -552,8

[U-Boot] [PATCH 06/13] update/fix AcTux1 board

2010-12-28 Thread Michael Schwingen
Signed-off-by: Michael Schwingen mich...@schwingen.org --- board/actux1/actux1.c| 22 +++- board/actux1/config.mk |2 - board/actux1/u-boot.lds | 40 ++--- boards.cfg |5 +++- include/configs/actux1.h | 48

[U-Boot] [PATCH 0/2] USB-CDC: Minor usability fixes

2010-12-28 Thread Vitaly Kuzmichev
Here are two patches to make USB Ethernet gadget driver more usable. Vitaly Kuzmichev (2): USB-CDC: Do not rename netdev after its registration USB-CDC: Move MAC addresses setting into usb_eth_init drivers/usb/gadget/ether.c | 67 ++- 1 files

[U-Boot] [PATCH 1/2] USB-CDC: Do not rename netdev after its registration

2010-12-28 Thread Vitaly Kuzmichev
Calling eth_bind at usb_eth_init time causes renaming of the network device from 'usb_ether' to 'usb0'. Fixing this to keep the first name. Signed-off-by: Vitaly Kuzmichev vkuzmic...@mvista.com --- drivers/usb/gadget/ether.c |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff

[U-Boot] [PATCH 2/2] USB-CDC: Move MAC addresses setting into usb_eth_init

2010-12-28 Thread Vitaly Kuzmichev
This allows to change device and host MAC addresses without performing reset. Signed-off-by: Vitaly Kuzmichev vkuzmic...@mvista.com --- drivers/usb/gadget/ether.c | 62 ++- 1 files changed, 26 insertions(+), 36 deletions(-) diff --git

Re: [U-Boot] [PATCH] fsl_esdhc: Fix esdhc disabled problem on some platforms

2010-12-28 Thread Anton Vorontsov
On Tue, Dec 28, 2010 at 02:40:30PM +0800, Chenhui Zhao wrote: Some platform's esdhc pins don't share with other function. The eSDHC shouldn't be disabled, even if esdhc isn't defined in hwconfig env variable. Use CONFIG_FSL_ESDHC_PIN_MUX to fix this problem. The problem was introduced by

Re: [U-Boot] {Spam?} u-boot relocation

2010-12-28 Thread Simon Glass
Hi, (Is there documentation about this somewhere? - I couldn't find it). I assume your board is hanging during relocation. You could try putting this function back (but without the __ prefix) void dram_init_banksize(void) { gd-bd-bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;

Re: [U-Boot] [PATCH 08/15] powerpc/8xxx: Rework XES boards pci_init_board to use common FSL PCIe code

2010-12-28 Thread Peter Tyser
Any direction on how these should be applied for testing? snip I've pushed a 'dev' branch on u-boot-85xx.git on denx.de with the current set of patches applied. Thanks. Things are much tidier now. I had a few comments. Let me know if you'd like me to submit patches to address any

Re: [U-Boot] Updating a system

2010-12-28 Thread David Lynch Jr.
Sorry; Your sugestions are appreciated. I had not yet looked at some of the u-boot capabilities you described. But I am trying to find out if there is something approaching a standard scheme for handling this - rather than going off and doing something myself that is

[U-Boot] [PATCH] DM365: Fix Build Error

2010-12-28 Thread s-paulraj
From: Sandeep Paulraj s-paul...@ti.com After the merger of the next branch, the DM365 was broken. A function used only by DA8xx based SOCs was being incorrectly called. So fix it. Signed-off-by: Sandeep Paulraj s-paul...@ti.com --- board/davinci/common/misc.c |2 +- 1 files changed, 1

[U-Boot] [PATCH] DaVinci EMAC: Fix davinci_eth_gigabit_enable

2010-12-28 Thread s-paulraj
From: Sandeep Paulraj s-paul...@ti.com Enabling the gigabit was overwriting the previous configuration by setting up only GIGAFORCE and GIG bits of MAC control register. Modified to retain previous configuration while gigabit enabling. Signed-off-by: Prakash PM prakash...@ti.com Signed-off-by:

[U-Boot] [PATCH] DaVinci EMAC: Add name to Ethernet device

2010-12-28 Thread s-paulraj
From: Sandeep Paulraj s-paul...@ti.com Adds DaVinci-EMAC as the name of the device so that it gets printed as Using DaVinci-EMAC device during network access (dhcp, tftp) instead of empty name in Using statement.This name also gets reflected in 'ethact' env variable. Signed-off-by: Hemant

Re: [U-Boot] [RFC PATCH 0/8] Add nand_spl support for TI OMAP Beagle

2010-12-28 Thread Paulraj, Sandeep
This patch series adds the ability to boot a beagle board from nand without x-loader. A future addition will add mmc boot support. John Rigby (8): NAND: nand_spl/nand_boot.c: add 16-bit and readid support armv7: add nand_spl support OMAP3: and nand_spl support OMAP3: add

Re: [U-Boot] [PATCH 0/8] armv7: cache maintenance operations

2010-12-28 Thread Paulraj, Sandeep
Subject: [U-Boot] [PATCH 0/8] armv7: cache maintenance operations With D-cache and MMU enabled for ARM in u-boot it becomes imperative to support a minimal set of cache maintenance operations and necessary initializations before enabling MMU. This series of patches attempt to do the

Re: [U-Boot] [PATCH 1/2] USB-CDC: Do not rename netdev after its registration

2010-12-28 Thread Remy Bohmer
Hi, 2010/12/28 Vitaly Kuzmichev vkuzmic...@mvista.com: Calling eth_bind at usb_eth_init time causes renaming of the network device from 'usb_ether' to 'usb0'. Fixing this to keep the first name. Signed-off-by: Vitaly Kuzmichev vkuzmic...@mvista.com --- Applied to u-boot-usb Thanks Remy

Re: [U-Boot] [PATCH 2/2] USB-CDC: Move MAC addresses setting into usb_eth_init

2010-12-28 Thread Remy Bohmer
Hi, 2010/12/28 Vitaly Kuzmichev vkuzmic...@mvista.com: This allows to change device and host MAC addresses without performing reset. Signed-off-by: Vitaly Kuzmichev vkuzmic...@mvista.com ---  drivers/usb/gadget/ether.c |   62 ++-  1 files changed, 26

[U-Boot] [PATCH] DaVinci DM6467: Added ET1011C (LSI) PHY support

2010-12-28 Thread s-paulraj
From: Sandeep Paulraj s-paul...@ti.com Added a driver for handling ET1011C gigabit phy. which overrides get_link_speed function from default implementation. This enables output of 125 MHz reference clock on SYS_CLK pin. Signed-off-by: Prakash PM prakash...@ti.com Signed-off-by: Sandeep Paulraj

Re: [U-Boot] [PATCH] ARM: Update mach types

2010-12-28 Thread Albert ARIBAUD
Hi Sandeep, Le 28/12/2010 22:43, s-paul...@ti.com a écrit : From: Sandeep Paulrajs-paul...@ti.com This commit updates the mach-types for ARM I assume these come straight from the ARM linux kernel sources? Amicalement, -- Albert. ___ U-Boot mailing

Re: [U-Boot] [PATCH] ARM: Update mach types

2010-12-28 Thread Paulraj, Sandeep
Hi Sandeep, Le 28/12/2010 22:43, s-paul...@ti.com a écrit : From: Sandeep Paulrajs-paul...@ti.com This commit updates the mach-types for ARM I assume these come straight from the ARM linux kernel sources? Amicalement, These are straight from the latest in Linus's tree.

[U-Boot] [PATCH] DaVinci DM6467: Enhance board Support

2010-12-28 Thread s-paulraj
From: Sandeep Paulraj s-paul...@ti.com Support for DM6467 was incomplete and the build failed as well. Patches were sent to the list but have not been added. This enhances the DM6467 support. Some more patches will need to be sent to bring it in line with what is available in internal TI trees

Re: [U-Boot] [PATCH] ARM: Update mach types

2010-12-28 Thread Albert ARIBAUD
Le 28/12/2010 23:17, Paulraj, Sandeep a écrit : Hi Sandeep, Le 28/12/2010 22:43, s-paul...@ti.com a écrit : From: Sandeep Paulrajs-paul...@ti.com This commit updates the mach-types for ARM I assume these come straight from the ARM linux kernel sources? Amicalement, These are

[U-Boot] Please pull u-boot-ti/master

2010-12-28 Thread s-paulraj
Albert, Please pull u-boot-ti/master This pull request consists of an update to the ARM mach-types. Also added some fixes and minor enhancements to DaVinci support. Most of the patches are either in an internal TI tree or have been sent to the list but never made it upstream. Regards, Sandeep

[U-Boot] [PATCH] fsl_pci: Update PCIe boot ouput

2010-12-28 Thread Peter Tyser
This change does the following: - Adds printing of negotiated link width. This information can be useful when debugging PCIe issues. - Makes it optional for boards to implement board_serdes_name(). Previously boards that did not implement it would print unsightly output such as PCIE1:

Re: [U-Boot] Please pull u-boot-ti/master

2010-12-28 Thread Albert ARIBAUD
Hi Sandeep, Le 29/12/2010 00:39, s-paul...@ti.com a écrit : Albert, Please pull u-boot-ti/master This pull request consists of an update to the ARM mach-types. Also added some fixes and minor enhancements to DaVinci support. Most of the patches are either in an internal TI tree or have been

Re: [U-Boot] Please pull u-boot-ti/master

2010-12-28 Thread Paulraj, Sandeep
Hi Sandeep, Le 29/12/2010 00:39, s-paul...@ti.com a écrit : Albert, Please pull u-boot-ti/master This pull request consists of an update to the ARM mach-types. Also added some fixes and minor enhancements to DaVinci support. Most of the patches are either in an internal TI tree

[U-Boot] [PATCH] Replace FLASH strings with Flash or flash

2010-12-28 Thread Peter Tyser
There's no compelling reason to have the output on bootup or the flinfo command print flash in uppercase, so use the proper case where appropriate. Signed-off-by: Peter Tyser pty...@xes-inc.com --- arch/arm/lib/board.c|2 +- arch/m68k/lib/board.c |2 +-

Re: [U-Boot] Please pull u-boot-ti/master

2010-12-28 Thread Albert ARIBAUD
Le 29/12/2010 00:39, s-paul...@ti.com a écrit : Albert, Please pull u-boot-ti/master This pull request consists of an update to the ARM mach-types. Also added some fixes and minor enhancements to DaVinci support. Most of the patches are either in an internal TI tree or have been sent to the

Re: [U-Boot] [RFC PATCH 6/8] omap3_beagle: add nand_spl support

2010-12-28 Thread John Rigby
On Tue, Dec 28, 2010 at 12:49 AM, Dirk Behme dirk.be...@googlemail.com wrote: On 28.12.2010 07:50, Aneesh V wrote: Hello John, On Tuesday 28 December 2010 06:17 AM, John Rigby wrote:  snip +LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds +LDFLAGS     = -Bstatic -T

Re: [U-Boot] [RFC PATCH 0/8] Add nand_spl support for TI OMAP Beagle

2010-12-28 Thread John Rigby
On Mon, Dec 27, 2010 at 11:17 PM, Aneesh V ane...@ti.com wrote: Hello John, On Tuesday 28 December 2010 06:17 AM, John Rigby wrote: This patch series adds the ability to boot a beagle board from nand without x-loader.  A future addition will add mmc boot support. I had been working on

Re: [U-Boot] [RFC PATCH 6/8] omap3_beagle: add nand_spl support

2010-12-28 Thread John Rigby
On Mon, Dec 27, 2010 at 11:50 PM, Aneesh V ane...@ti.com wrote: Hello John, On Tuesday 28 December 2010 06:17 AM, John Rigby wrote: snip +LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds +LDFLAGS      = -Bstatic -T $(nandobj)u-boot.lds -Ttext $(CONFIG_SYS_NAND_SPL_TEXT_BASE)

Re: [U-Boot] [PATCH 12/13] add support for function-sections

2010-12-28 Thread Mike Frysinger
On Tuesday, December 28, 2010 07:43:30 Michael Schwingen wrote: Signed-off-by: Michael Schwingen mich...@schwingen.org --- config.mk|6 ++ include/configs/actux1.h |1 + include/configs/actux2.h |1 + include/configs/actux3.h |1 +

Re: [U-Boot] [PATCH 13/13] add support for fixed-speed MII ports (no standard PHY registers)

2010-12-28 Thread Mike Frysinger
On Tuesday, December 28, 2010 07:43:31 Michael Schwingen wrote: arch/arm/cpu/ixp/npe/npe.c | 18 +- include/configs/actux2.h |5 + include/configs/actux3.h |5 + considering this patch is for IXP npe only, your patch summary should have a qualifier like

Re: [U-Boot] [PATCH 04/13] Fix IXP code to work after relocation was added: - jump to real flash location after reset before turning off flash mirror - fix timer system to use HZ == 1000, remove broke

2010-12-28 Thread Mike Frysinger
your patch summary is way too long -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] libgenwrap.c: fix build error

2010-12-28 Thread Mike Frysinger
On Friday, December 24, 2010 13:27:25 Mike Frysinger wrote: On Thursday, December 23, 2010 13:53:16 Wolfgang Denk wrote: Commit 882b7d7 do_reset: unify duplicate prototypes introduced build problems like this: libgenwrap.c:85: error: conflicting types for 'do_reset'

Re: [U-Boot] [RFC PATCH 6/8] omap3_beagle: add nand_spl support

2010-12-28 Thread Aneesh V
On Wednesday 29 December 2010 05:56 AM, John Rigby wrote: On Mon, Dec 27, 2010 at 11:50 PM, Aneesh Vane...@ti.com wrote: Hello John, On Tuesday 28 December 2010 06:17 AM, John Rigby wrote: snip +LDSCRIPT= $(TOPDIR)/nand_spl/board/$(BOARDDIR)/u-boot.lds +LDFLAGS = -Bstatic -T

[U-Boot] Eine Rose zum Neujahr 2011

2010-12-28 Thread Newsletter Service
( http://geschenk.1shop.de ) Originelle Geschenkideen Frohes neues Jahr 2011 ! In wenigen Tagen ist es soweit : Das neue Jahr 2011 beginnt. Wussten Sie, dass man in vielen Ländern eine Rose zum neuen Jahr schenkt ? Diese schöne Idee möchten wir auch in Deutschland aufleben lassen, aber statt