From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mike Frysinger Date: Sat, 15 Mar 2008 22:33:43 -0400 Subject: [U-Boot-Users] Pull request u-boot-blackfin.git In-Reply-To: <> References: <> Message-ID: <1205634823-27186-1-git-send-email-vapier@gentoo.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The following changes since commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0: Wolfgang Denk (1): tools/setlocalversion: use a git-describe-ish format are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git master Mike Frysinger (6): Blackfin: move bootldr command to common code Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU Blackfin: update MAINTAINERS list Blackfin: new cplbinfo command for viewing cplb tables Blackfin: add proper ELF markings to some assembly functions Blackfin: BF537-stamp: drop board-specific flash driver for CFI MAINTAINERS | 15 ++ blackfin_config.mk | 6 +- board/bf533-ezkit/bf533-ezkit.c | 7 - board/bf533-stamp/bf533-stamp.c | 7 - board/bf537-stamp/Makefile | 2 +- board/bf537-stamp/bf537-stamp.c | 56 ----- board/bf537-stamp/flash-defines.h | 123 ----------- board/bf537-stamp/flash.c | 403 ------------------------------------- common/Makefile | 2 + common/cmd_bootldr.c | 64 ++++++ common/cmd_cplbinfo.c | 59 ++++++ include/configs/bf533-ezkit.h | 9 +- include/configs/bf533-stamp.h | 25 +-- include/configs/bf537-stamp.h | 43 ++--- include/configs/bf561-ezkit.h | 6 +- lib_blackfin/board.c | 3 +- lib_blackfin/memcmp.S | 3 + lib_blackfin/memcpy.S | 3 + lib_blackfin/memmove.S | 3 + lib_blackfin/memset.S | 3 + 20 files changed, 187 insertions(+), 655 deletions(-) delete mode 100644 board/bf537-stamp/flash-defines.h delete mode 100644 board/bf537-stamp/flash.c create mode 100644 common/cmd_bootldr.c create mode 100644 common/cmd_cplbinfo.c