In message <[EMAIL PROTECTED]> you wrote: > Please pull at91 > > The following changes since commit 2c8d41969b47eb0b973912830c58689b2ba0e50a: > Wolfgang Denk (1): > Merge branch 'master' of git://git.denx.de/u-boot-testing > > are available in the git repository at: > > git://git.denx.de/u-boot-at91.git for-1.3.4
Please note that your pull request should refer to the "master" branch!!! > Jean-Christophe PLAGNIOL-VILLARD (2): > Merging Stelian Pop AT91 patches > MAKEALL: add at91 list > > Patrice Vilchez (1): > [AT91SAM9] Fix NAND FLASH timings > > Stelian Pop (26): > Fix @ -> <at> substitution > Update origin and copyright information in arch-at91sam9 header files > Add copyright information in Atmel boards partition.c > Add proper copyright notices in Atmel boards Makefiles > Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms > AT91CAP9ADK: Handle 8 or 16 bit NAND > AT91CAP9ADK: Normalize SPI timings > AT91CAP9ADK: Normalize BOOTARGS > AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND > AT91SAM9260EK: Handle 8 or 16 bit NAND > AT91SAM9260EK: Normalize SPI timings > AT91SAM9260EK: Normalize BOOTARGS > AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND > AT91SAM9261EK support > AT91SAM9263EK support > AT91SAM9RLEK support > Add ATMEL LCD driver > AT91CAP9ADK: hook up the ATMEL LCD driver > AT91SAM9261EK: hook up the ATMEL LCD driver > AT91SAM9263EK: hook up the ATMEL LCD driver > AT91SAM9RLEK: hook up the ATMEL LCD driver > Use custom logo for Atmel boards > Support AT91CAP9 revC CPUs > AT91: Cleanup unused config header file definitions. > Cleanup nand_info[] declaration. > Fix boot from NOR due to incorrect reset delay. > > CHANGELOG | 12 +- > MAINTAINERS | 3 + > MAKEALL | 23 ++- > Makefile | 9 + > README | 4 + > board/atmel/at91cap9adk/Makefile | 4 + > board/atmel/at91cap9adk/at91cap9adk.c | 107 +++++++- > board/atmel/at91cap9adk/nand.c | 3 + > board/atmel/at91sam9260ek/Makefile | 4 + > board/atmel/at91sam9260ek/at91sam9260ek.c | 15 +- > board/atmel/at91sam9260ek/nand.c | 3 + > board/atmel/at91sam9260ek/u-boot.lds | 57 ---- > board/atmel/at91sam9261ek/Makefile | 57 ++++ > board/atmel/at91sam9261ek/at91sam9261ek.c | 258 ++++++++++++++++ > board/atmel/at91sam9261ek/config.mk | 1 + > board/atmel/at91sam9261ek/led.c | 78 +++++ > board/atmel/at91sam9261ek/nand.c | 79 +++++ > board/atmel/at91sam9261ek/partition.c | 40 +++ > board/atmel/at91sam9263ek/Makefile | 57 ++++ > board/atmel/at91sam9263ek/at91sam9263ek.c | 310 > ++++++++++++++++++++ > board/atmel/at91sam9263ek/config.mk | 1 + > board/atmel/at91sam9263ek/led.c | 78 +++++ > board/atmel/at91sam9263ek/nand.c | 79 +++++ > board/atmel/at91sam9263ek/partition.c | 39 +++ > board/atmel/at91sam9rlek/Makefile | 57 ++++ > board/atmel/at91sam9rlek/at91sam9rlek.c | 215 ++++++++++++++ > board/atmel/at91sam9rlek/config.mk | 1 + > board/atmel/at91sam9rlek/led.c | 77 +++++ > board/atmel/at91sam9rlek/nand.c | 79 +++++ > board/atmel/at91sam9rlek/partition.c | 39 +++ > common/cmd_nand.c | 2 - > common/env_nand.c | 3 - > common/lcd.c | 78 +++++- > cpu/arm926ejs/at91sam9/config.mk | 1 + > .../arm926ejs/at91sam9}/u-boot.lds | 0 > cpu/arm926ejs/at91sam9/usb.c | 8 + > drivers/net/dm9000x.c | 2 + > drivers/net/macb.c | 6 +- > drivers/video/Makefile | 1 + > drivers/video/atmel_lcdfb.c | 160 ++++++++++ > fs/jffs2/jffs2_1pass.c | 3 - > include/asm-arm/arch-at91sam9/at91_pmc.h | 5 + > include/asm-arm/arch-at91sam9/at91cap9.h | 14 +- > include/asm-arm/arch-at91sam9/at91sam9261.h | 105 +++++++ > include/asm-arm/arch-at91sam9/at91sam9261_matrix.h | 64 ++++ > include/asm-arm/arch-at91sam9/at91sam9263.h | 127 ++++++++ > include/asm-arm/arch-at91sam9/at91sam9263_matrix.h | 129 ++++++++ > include/asm-arm/arch-at91sam9/at91sam9rl.h | 115 ++++++++ > include/asm-arm/arch-at91sam9/at91sam9rl_matrix.h | 96 ++++++ > include/asm-arm/arch-at91sam9/clk.h | 6 + > include/asm-arm/arch-at91sam9/hardware.h | 9 + > include/atmel_lcdc.h | 177 +++++++++++ > include/configs/at91cap9adk.h | 37 ++- > include/configs/at91sam9260ek.h | 25 ++- > include/configs/at91sam9261ek.h | 202 +++++++++++++ > include/configs/at91sam9263ek.h | 206 +++++++++++++ > include/configs/at91sam9rlek.h | 175 +++++++++++ > include/lcd.h | 30 ++- > lib_arm/board.c | 39 ++- > net/eth.c | 3 +- > tools/Makefile | 4 + > tools/logos/atmel.bmp | Bin 0 -> 26334 bytes > 62 files changed, 3509 insertions(+), 112 deletions(-) > delete mode 100644 board/atmel/at91sam9260ek/u-boot.lds > create mode 100644 board/atmel/at91sam9261ek/Makefile > create mode 100644 board/atmel/at91sam9261ek/at91sam9261ek.c > create mode 100644 board/atmel/at91sam9261ek/config.mk > create mode 100644 board/atmel/at91sam9261ek/led.c > create mode 100644 board/atmel/at91sam9261ek/nand.c > create mode 100644 board/atmel/at91sam9261ek/partition.c > create mode 100644 board/atmel/at91sam9263ek/Makefile > create mode 100644 board/atmel/at91sam9263ek/at91sam9263ek.c > create mode 100644 board/atmel/at91sam9263ek/config.mk > create mode 100644 board/atmel/at91sam9263ek/led.c > create mode 100644 board/atmel/at91sam9263ek/nand.c > create mode 100644 board/atmel/at91sam9263ek/partition.c > create mode 100644 board/atmel/at91sam9rlek/Makefile > create mode 100644 board/atmel/at91sam9rlek/at91sam9rlek.c > create mode 100644 board/atmel/at91sam9rlek/config.mk > create mode 100644 board/atmel/at91sam9rlek/led.c > create mode 100644 board/atmel/at91sam9rlek/nand.c > create mode 100644 board/atmel/at91sam9rlek/partition.c > rename {board/atmel/at91cap9adk => cpu/arm926ejs/at91sam9}/u-boot.lds (100%) > create mode 100644 drivers/video/atmel_lcdfb.c > create mode 100644 include/asm-arm/arch-at91sam9/at91sam9261.h > create mode 100644 include/asm-arm/arch-at91sam9/at91sam9261_matrix.h > create mode 100644 include/asm-arm/arch-at91sam9/at91sam9263.h > create mode 100644 include/asm-arm/arch-at91sam9/at91sam9263_matrix.h > create mode 100644 include/asm-arm/arch-at91sam9/at91sam9rl.h > create mode 100644 include/asm-arm/arch-at91sam9/at91sam9rl_matrix.h > create mode 100644 include/atmel_lcdc.h > create mode 100644 include/configs/at91sam9261ek.h > create mode 100644 include/configs/at91sam9263ek.h > create mode 100644 include/configs/at91sam9rlek.h > create mode 100644 tools/logos/atmel.bmp Done, 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: [EMAIL PROTECTED] Life is a game. Money is how we keep score. - Ted Turner ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ U-Boot-Users mailing list U-Boot-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/u-boot-users