
Hi all,
I'm planning to merge the next two patches before the merge window closes. This includes support for the ATNGW100 board (long overdue; it's been waiting for the CFI flash changes that were merged recently) and a bug fix that somehow got left out in the previous merge request.
Please review. If nothing comes up, I'll send a merge request early next week.
Also, please let me know if I've missed any patches.
Haavard Skinnemoen (2): AVR32: Initialize ipaddr, loadaddr and bootfile at startup AVR32: ATNGW100 board support
MAINTAINERS | 11 ++- MAKEALL | 1 + Makefile | 3 + board/atmel/atngw100/Makefile | 40 +++++++++ board/atmel/atngw100/atngw100.c | 73 ++++++++++++++++ board/atmel/atngw100/config.mk | 3 + board/atmel/atngw100/eth.c | 36 ++++++++ board/atmel/atngw100/u-boot.lds | 80 +++++++++++++++++ include/configs/atngw100.h | 182 +++++++++++++++++++++++++++++++++++++++ lib_avr32/board.c | 10 ++ net/eth.c | 4 + 11 files changed, 438 insertions(+), 5 deletions(-) create mode 100644 board/atmel/atngw100/Makefile create mode 100644 board/atmel/atngw100/atngw100.c create mode 100644 board/atmel/atngw100/config.mk create mode 100644 board/atmel/atngw100/eth.c create mode 100644 board/atmel/atngw100/u-boot.lds create mode 100644 include/configs/atngw100.h