diff options
author | Wolfgang Denk <wd@denx.de> | 2011-12-11 21:58:19 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-12-12 14:26:48 +0100 |
commit | 3f3110d78be1f9f13bfc8e5c64e279f50f2c7c43 (patch) | |
tree | f2c74323a6dfd96e3b2b075f88e83379dba12c22 /board/tb0229/Makefile | |
parent | 6bef783310ed12bbbe309e8baf1689afc43ab93e (diff) | |
download | u-boot-3f3110d78be1f9f13bfc8e5c64e279f50f2c7c43.tar.gz |
MIPS: remove broken "tb0229" board
The "tb0229" board has long been unmaintained, and is broken.
Remove it.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/tb0229/Makefile')
-rw-r--r-- | board/tb0229/Makefile | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/board/tb0229/Makefile b/board/tb0229/Makefile deleted file mode 100644 index 76f1664fac..0000000000 --- a/board/tb0229/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -# -# (C) Masami Komiya <mkomiya@sonare.it> 2004 -# -# (C) Copyright 2003-2006 -# Wolfgang Denk, DENX Software Engineering, wd@denx.de. -# -# See file CREDITS for list of people who contributed to this -# project. -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of -# the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, -# MA 02111-1307 USA -# - -include $(TOPDIR)/config.mk - -LIB = $(obj)lib$(BOARD).o - -COBJS = $(BOARD).o flash.o vr4131-pci.o -SOBJS = lowlevel_init.o - -SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) -OBJS := $(addprefix $(obj),$(COBJS)) -SOBJS := $(addprefix $(obj),$(SOBJS)) - -$(LIB): $(obj).depend $(OBJS) $(SOBJS) - $(call cmd_link_o_target, $(OBJS) $(SOBJS)) - -######################################################################### - -# defines $(obj).depend target -include $(SRCTREE)/rules.mk - -sinclude $(obj).depend - -######################################################################### |