In message <20101017182418.de8ef1355...@gemini.denx.de> you wrote: > The following changes since commit e1b4c57096b87b4ada56df4154d9acee6a59141f: > > Merge branch 'master' of git://git.denx.de/u-boot-arm (2010-10-13 20:59:47 > +0200) > > are available in the git repository at: > > git://git.denx.de/u-boot-arm.git master > > Ben Gardiner (7): > davinci_nand, trivial : use symbolic ECC start command > da850evm : enable NAND even when not in NAND boot mode > da850evm: setup the NAND flash timings > da850evm: setup NAND support under CONFIG_USE_NAND > da850evm: add mtdpart and ubi commands with NAND support > da850evm: basic MII EMAC support > da850evm: fix linux bootparam address > > Enric Balletbo i Serra (3): > OMAP3: SDRC: Introduce Numonyx DDR type > OMAP3: Add support for the IGEP v2 board. > OMAP3: Add support for the OMAP3 IGEP module. > > Loic Minier (1): > mx51evk: add u-boot.imx to ALL target > > Stefano Babic (6): > FPGA: add support for downloading Lattice bitstream > MX31: Adding missing iomux pin to MX.31 registers > MX31: Add support to update FPGA bitstream > MX31: add support for setting pin pads > MX31: Add support for MXC EHCI controller > MX31: Add USB Host support to the QONG board > > Steve Sakoman (8): > env_mmc: Fix crashing bug encountered after enabling ARM relocation > ARMV7: OMAP: Use default vendor/product ID for USB gadget > ARMV7: OMAP4: Use generic mmc driver on Beagle > ARMV7: OMAP4: Use generic mmc driver on Overo > ARMV7: OMAP3: Implement relocation for Overo > ARMV7: OMAP3: Enable cache support on Overo > ARMV7: OMAP3: Fix bug in get_sdr_cs_offset() > ARMV7: OMAP4: Implement relocation for Panda and OMAP4430SDP > > Sukumar Ghorai (5): > MMC: Fix for capacity calculation on eMMC > ARMV7: OMAP: Add new mmc driver compatible with CONFIG_GENERIC_MMC > ARMV7: OMAP4: Use generic mmc driver on Panda > ARMV7: OMAP4: Use generic mmc driver on SDP4430 > ARMV7: OMAP4: Enable saveenv to eMMC for SDP4430 > > Wolfgang Denk (1): > Merge branch 'master' of git://git.denx.de/u-boot-imx > > MAINTAINERS | 5 + > MAKEALL | 2 + > arch/arm/cpu/arm1136/mx31/generic.c | 17 + > arch/arm/cpu/armv7/omap3/sdrc.c | 2 +- > arch/arm/cpu/armv7/omap4/board.c | 5 + > arch/arm/include/asm/arch-mx31/mx31-regs.h | 411 +++ > arch/arm/include/asm/arch-omap3/mem.h | 43 + > arch/arm/include/asm/arch-omap3/mmc_host_def.h | 10 + > arch/arm/include/asm/arch-omap4/mmc_host_def.h | 10 + > arch/arm/lib/board.c | 10 +- > board/davedenx/qong/Makefile | 2 +- > board/davedenx/qong/fpga.c | 95 + > board/davedenx/qong/qong.c | 44 + > board/davedenx/qong/qong_fpga.h | 3 +- > board/davinci/da8xxevm/da850evm.c | 89 + > board/freescale/mx51evk/config.mk | 1 + > board/isee/igep0020/Makefile | 49 + > board/isee/igep0020/config.mk | 33 + > board/isee/igep0020/igep0020.c | 129 + > board/isee/igep0020/igep0020.h | 156 ++ > board/isee/igep0030/Makefile | 49 + > board/isee/igep0030/config.mk | 34 + > board/isee/igep0030/igep0030.c | 71 + > board/isee/igep0030/igep0030.h | 147 ++ > board/overo/config.mk | 2 +- > board/overo/overo.c | 9 + > board/ti/beagle/beagle.c | 9 + > board/ti/panda/config.mk | 4 +- > board/ti/panda/panda.c | 9 + > board/ti/sdp4430/config.mk | 3 +- > board/ti/sdp4430/sdp.c | 10 + > boards.cfg | 2 + > common/env_mmc.c | 17 +- > drivers/fpga/Makefile | 1 + > drivers/fpga/fpga.c | 11 + > drivers/fpga/ivm_core.c | 3167 > ++++++++++++++++++++++++ > drivers/fpga/lattice.c | 399 +++ > drivers/mmc/Makefile | 1 + > drivers/mmc/mmc.c | 11 + > drivers/mmc/omap_hsmmc.c | 415 ++++ > drivers/mtd/nand/davinci_nand.c | 3 +- > drivers/usb/host/Makefile | 1 + > drivers/usb/host/ehci-mxc.c | 130 + > drivers/video/mx3fb.c | 31 - > include/configs/da850evm.h | 54 +- > include/configs/igep0020.h | 228 ++ > include/configs/igep0030.h | 215 ++ > include/configs/omap3_beagle.h | 15 +- > include/configs/omap3_overo.h | 14 +- > include/configs/omap4_panda.h | 23 +- > include/configs/omap4_sdp4430.h | 35 +- > include/configs/qong.h | 21 +- > include/fpga.h | 1 + > include/lattice.h | 319 +++ > 54 files changed, 6472 insertions(+), 105 deletions(-) > create mode 100644 board/davedenx/qong/fpga.c > create mode 100644 board/isee/igep0020/Makefile > create mode 100644 board/isee/igep0020/config.mk > create mode 100644 board/isee/igep0020/igep0020.c > create mode 100644 board/isee/igep0020/igep0020.h > create mode 100644 board/isee/igep0030/Makefile > create mode 100644 board/isee/igep0030/config.mk > create mode 100644 board/isee/igep0030/igep0030.c > create mode 100644 board/isee/igep0030/igep0030.h > create mode 100755 drivers/fpga/ivm_core.c > create mode 100644 drivers/fpga/lattice.c > create mode 100644 drivers/mmc/omap_hsmmc.c > create mode 100644 drivers/usb/host/ehci-mxc.c > create mode 100644 include/configs/igep0020.h > create mode 100644 include/configs/igep0030.h > create mode 100755 include/lattice.h
Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: w...@denx.de Computers are not intelligent. They only think they are. _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot