diff options
author | Tom Rini <trini@konsulko.com> | 2017-03-14 11:08:10 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-05 13:52:01 -0400 |
commit | ea3310e8aafad1da72d9a5e60568d725cbdefdbd (patch) | |
tree | 869faa824f09ce4d40f2ce503a607ceb28b5ce91 /board/br4 | |
parent | c3b7cfe15ec1db047182d4ec55a3ce05f19bdf38 (diff) | |
download | u-boot-ea3310e8aafad1da72d9a5e60568d725cbdefdbd.tar.gz |
Blackfin: Remove
The architecture is currently unmaintained, remove.
Cc: Benjamin Matthews <mben12@gmail.com>
Cc: Chong Huang <chuang@ucrobotics.com>
Cc: Dimitar Penev <dpn@switchfin.org>
Cc: Haitao Zhang <hzhang@ucrobotics.com>
Cc: I-SYST Micromodule <support@i-syst.com>
Cc: M.Hasewinkel (MHA) <info@ssv-embedded.de>
Cc: Marek Vasut <marex@denx.de>
Cc: Martin Strubel <strubel@section5.ch>
Cc: Peter Meerwald <devel@bct-electronic.com>
Cc: Sonic Zhang <sonic.adi@gmail.com>
Cc: Valentin Yakovenkov <yakovenkov@niistt.ru>
Cc: Wojtek Skulski <info@skutek.com>
Cc: Wojtek Skulski <skulski@pas.rochester.edu>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/br4')
-rw-r--r-- | board/br4/Kconfig | 9 | ||||
-rw-r--r-- | board/br4/MAINTAINERS | 6 | ||||
-rw-r--r-- | board/br4/Makefile | 14 | ||||
-rw-r--r-- | board/br4/br4.c | 30 |
4 files changed, 0 insertions, 59 deletions
diff --git a/board/br4/Kconfig b/board/br4/Kconfig deleted file mode 100644 index a10a06053a..0000000000 --- a/board/br4/Kconfig +++ /dev/null @@ -1,9 +0,0 @@ -if TARGET_BR4 - -config SYS_BOARD - default "br4" - -config SYS_CONFIG_NAME - default "br4" - -endif diff --git a/board/br4/MAINTAINERS b/board/br4/MAINTAINERS deleted file mode 100644 index 4085da5452..0000000000 --- a/board/br4/MAINTAINERS +++ /dev/null @@ -1,6 +0,0 @@ -BR4 BOARD -M: Dimitar Penev <dpn@switchfin.org> -S: Maintained -F: board/br4/ -F: include/configs/br4.h -F: configs/br4_defconfig diff --git a/board/br4/Makefile b/board/br4/Makefile deleted file mode 100644 index c6c03aba09..0000000000 --- a/board/br4/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -# -# U-Boot - Makefile -# -# Copyright (c) Switchfin Org. <dpn@switchfin.org> -# -# Copyright (c) 2005-2007 Analog Device Inc. -# -# (C) Copyright 2000-2006 -# Wolfgang Denk, DENX Software Engineering, wd@denx.de. -# -# SPDX-License-Identifier: GPL-2.0+ -# - -obj-y := br4.o diff --git a/board/br4/br4.c b/board/br4/br4.c deleted file mode 100644 index 6f3f170a32..0000000000 --- a/board/br4/br4.c +++ /dev/null @@ -1,30 +0,0 @@ -/* - * U-Boot - main board file - * - * Copyright (c) Switchfin Org. <dpn@switchfin.org> - * - * Copyright (c) 2005-2008 Analog Devices Inc. - * - * (C) Copyright 2000-2004 - * Wolfgang Denk, DENX Software Engineering, wd@denx.de. - * - * Licensed under the GPL-2 or later. - */ - -#include <common.h> -#include <net.h> -#include <netdev.h> - -int checkboard(void) -{ - printf("Board: Switchvoice BR4 Appliance\n"); - printf(" Support: http://www.switchvoice.com/\n"); - return 0; -} - -#ifdef CONFIG_BFIN_MAC -int board_eth_init(bd_t *bis) -{ - return bfin_EMAC_initialize(bis); -} -#endif |