diff options
Diffstat (limited to 'board/pr1')
-rw-r--r-- | board/pr1/Kconfig | 9 | ||||
-rw-r--r-- | board/pr1/MAINTAINERS | 6 | ||||
-rw-r--r-- | board/pr1/Makefile | 14 | ||||
-rw-r--r-- | board/pr1/pr1.c | 30 |
4 files changed, 0 insertions, 59 deletions
diff --git a/board/pr1/Kconfig b/board/pr1/Kconfig deleted file mode 100644 index fb04648716..0000000000 --- a/board/pr1/Kconfig +++ /dev/null @@ -1,9 +0,0 @@ -if TARGET_PR1 - -config SYS_BOARD - default "pr1" - -config SYS_CONFIG_NAME - default "pr1" - -endif diff --git a/board/pr1/MAINTAINERS b/board/pr1/MAINTAINERS deleted file mode 100644 index 23fdbc7a76..0000000000 --- a/board/pr1/MAINTAINERS +++ /dev/null @@ -1,6 +0,0 @@ -PR1 BOARD -M: Dimitar Penev <dpn@switchfin.org> -S: Maintained -F: board/pr1/ -F: include/configs/pr1.h -F: configs/pr1_defconfig diff --git a/board/pr1/Makefile b/board/pr1/Makefile deleted file mode 100644 index 8caa3601f4..0000000000 --- a/board/pr1/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 := pr1.o diff --git a/board/pr1/pr1.c b/board/pr1/pr1.c deleted file mode 100644 index 3fffabdefb..0000000000 --- a/board/pr1/pr1.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 PR1 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 |