From 9d906bf0bd46e539cd691f0fa1ea1cc838cf98c4 Mon Sep 17 00:00:00 2001 From: "Robert P. J. Day" Date: Mon, 28 Mar 2016 09:20:40 -0400 Subject: post: Remove references to scrapped "netta" board. Given that README.scrapyard shows scrapping of netta boards: netta2 powerpc mpc8xx c51c1c9a 2014-07-07 netta powerpc mpc8xx c51c1c9a 2014-07-07 delete netta example from POST tests. Signed-off-by: Robert P. J. Day --- post/Makefile | 2 +- post/board/netta/Makefile | 8 -------- post/board/netta/codec.c | 29 ----------------------------- post/board/netta/dsp.c | 29 ----------------------------- 4 files changed, 1 insertion(+), 67 deletions(-) delete mode 100644 post/board/netta/Makefile delete mode 100644 post/board/netta/codec.c delete mode 100644 post/board/netta/dsp.c (limited to 'post') diff --git a/post/Makefile b/post/Makefile index 92024e196a..78ede8c629 100644 --- a/post/Makefile +++ b/post/Makefile @@ -13,6 +13,6 @@ obj-$(CONFIG_PPC) += lib_powerpc/ obj-$(CONFIG_MPC83xx) += cpu/mpc83xx/ obj-$(CONFIG_8xx) += cpu/mpc8xx/ obj-$(CONFIG_4xx) += cpu/ppc4xx/ -ifneq ($(filter lwmon5 netta pdm360ng,$(BOARD)),) +ifneq ($(filter lwmon5 pdm360ng,$(BOARD)),) obj-y += board/$(BOARD)/ endif diff --git a/post/board/netta/Makefile b/post/board/netta/Makefile deleted file mode 100644 index 8fc1945b07..0000000000 --- a/post/board/netta/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -# -# (C) Copyright 2002-2006 -# Wolfgang Denk, DENX Software Engineering, wd@denx.de. -# -# SPDX-License-Identifier: GPL-2.0+ -# - -obj-y += codec.o dsp.o diff --git a/post/board/netta/codec.c b/post/board/netta/codec.c deleted file mode 100644 index 7ff890a9cb..0000000000 --- a/post/board/netta/codec.c +++ /dev/null @@ -1,29 +0,0 @@ -/* - * (C) Copyright 2004 - * Pantelis Antoniou, Intracom S.A. , panto@intracom.gr - * - * SPDX-License-Identifier: GPL-2.0+ - */ - -#include - -/* - * CODEC test - * - * This test verifies the connection and performs a memory test - * on any connected codec(s). The meat of the work is done - * in the board specific function. - */ - -#include - -#if CONFIG_POST & CONFIG_SYS_POST_CODEC - -extern int board_post_codec(int flags); - -int codec_post_test (int flags) -{ - return board_post_codec(flags); -} - -#endif /* CONFIG_POST & CONFIG_SYS_POST_CODEC */ diff --git a/post/board/netta/dsp.c b/post/board/netta/dsp.c deleted file mode 100644 index f88c379a69..0000000000 --- a/post/board/netta/dsp.c +++ /dev/null @@ -1,29 +0,0 @@ -/* - * (C) Copyright 2004 - * Pantelis Antoniou, Intracom S.A. , panto@intracom.gr - * - * SPDX-License-Identifier: GPL-2.0+ - */ - -#include - -/* - * DSP test - * - * This test verifies the connection and performs a memory test - * on any connected DSP(s). The meat of the work is done - * in the board specific function. - */ - -#include - -#if CONFIG_POST & CONFIG_SYS_POST_DSP - -extern int board_post_dsp(int flags); - -int dsp_post_test (int flags) -{ - return board_post_dsp(flags); -} - -#endif /* CONFIG_POST & CONFIG_SYS_POST_DSP */ -- cgit v1.2.1