diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-10-21 10:10:32 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-11-08 09:38:24 -0500 |
commit | 6dca9450a2808df57340f00178ad7313b64cb2fe (patch) | |
tree | 52e74b0182fe3329398b5f534a70c38adf62f001 /board/ep88x/Makefile | |
parent | 4168ba76615268344a96c1a1312d6a98a1d66b2a (diff) | |
download | u-boot-imx-6dca9450a2808df57340f00178ad7313b64cb2fe.zip u-boot-imx-6dca9450a2808df57340f00178ad7313b64cb2fe.tar.gz u-boot-imx-6dca9450a2808df57340f00178ad7313b64cb2fe.tar.bz2 |
EP88x: remove remainders of dead board
Commit 1b0757e deleted the EP88x entry from boards.cfg file.
But it missed to remove include/configs/EP88x.h and board/ep88x/.
This commit removes them and adds EP88x to README.scrapyard.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/ep88x/Makefile')
-rw-r--r-- | board/ep88x/Makefile | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/board/ep88x/Makefile b/board/ep88x/Makefile deleted file mode 100644 index 07fa3f3..0000000 --- a/board/ep88x/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# -# (C) Copyright 2006 -# Wolfgang Denk, DENX Software Engineering, wd@denx.de. -# -# Copyright (C) 2004 Arabella Software Ltd. -# Yuli Barcohen <yuli@arabellasw.com> -# -# SPDX-License-Identifier: GPL-2.0+ -# - -include $(TOPDIR)/config.mk - -LIB = $(obj)lib$(BOARD).o - -COBJS := $(BOARD).o - -SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) -OBJS := $(addprefix $(obj),$(COBJS)) -SOBJS := $(addprefix $(obj),$(SOBJS)) - -$(LIB): $(obj).depend $(OBJS) - $(call cmd_link_o_target, $(OBJS)) - -######################################################################### - -# defines $(obj).depend target -include $(SRCTREE)/rules.mk - -sinclude $(obj).depend - -######################################################################### |