From mboxrd@z Thu Jan 1 00:00:00 1970 From: Holger Brunck Date: Tue, 3 May 2011 10:56:50 +0200 Subject: [U-Boot] [PATCH v2 0/7] km82xx mainlining Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de This series is the second effort of merging the Keymile boards support back into mainline. This serie is a smaller serie based on the first patch serie: http://lists.denx.de/pipermail/u-boot/2011-April/090013.html The first large serie was split up to three independent series, which is easier to review and apply for the custodians. This serie adds the km82xx specific parts of the serie. All changes here are only km relevant and should not affect other boards. Holger Brunck (6): km/common: remove hdlc_enet implementation powerpc/km82xx: cleanup coding style for mgcoge.c powerpc/km82xx: rename mgcoge files to km82xx powerpc/km82xx: add mgcoge3ne and remove mgcoge2ne support powerpc/km82xx: adapt CONFIG_SYSSYPCR to manual poweprc/km82xx: add board specific environment variable Huber, Andreas (1): powerpc/km82xx: rework DIP switch detection MAINTAINERS | 2 +- board/keymile/common/common.c | 9 +- board/keymile/common/common.h | 84 ++++- board/keymile/common/keymile_hdlc_enet.c | 620 -------------------------- board/keymile/{mgcoge => km82xx}/Makefile | 3 +- board/keymile/km82xx/km82xx.c | 371 +++++++++++++++ board/keymile/mgcoge/mgcoge.c | 346 -------------- board/keymile/mgcoge/mgcoge_hdlc_enet.c | 276 ------------ boards.cfg | 4 +- include/configs/km82xx-common.h | 29 +-- include/configs/mgcoge.h | 32 ++- include/configs/{mgcoge2ne.h => mgcoge3ne.h} | 49 ++- 12 files changed, 528 insertions(+), 1297 deletions(-) delete mode 100644 board/keymile/common/keymile_hdlc_enet.c rename board/keymile/{mgcoge => km82xx}/Makefile (94%) create mode 100644 board/keymile/km82xx/km82xx.c delete mode 100644 board/keymile/mgcoge/mgcoge.c delete mode 100644 board/keymile/mgcoge/mgcoge_hdlc_enet.c rename include/configs/{mgcoge2ne.h => mgcoge3ne.h} (60%)