upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
755 B
35 lines
755 B
12 years ago
|
#
|
||
|
# Palm Treo680 Support
|
||
|
#
|
||
|
# Copyright (C) 2013 Mike Dunn <mikedunn@newsguy.com>
|
||
|
#
|
||
|
# This file is released under the terms of GPL v2 and any later version.
|
||
|
# See the file COPYING in the root directory of the source tree for details.
|
||
|
|
||
|
include $(TOPDIR)/config.mk
|
||
|
|
||
|
LIB = $(obj)lib$(BOARD).o
|
||
|
|
||
|
COBJS := palmtreo680.o
|
||
|
|
||
|
SRCS := $(COBJS:.o=.c)
|
||
|
OBJS := $(addprefix $(obj),$(COBJS))
|
||
|
|
||
|
$(LIB): $(obj).depend $(OBJS)
|
||
|
$(call cmd_link_o_target, $(OBJS))
|
||
|
|
||
|
clean:
|
||
|
rm -f $(OBJS)
|
||
|
|
||
|
distclean: clean
|
||
|
rm -f $(LIB) core *.bak $(obj).depend
|
||
|
|
||
|
#########################################################################
|
||
|
|
||
|
# defines $(obj).depend target
|
||
|
include $(SRCTREE)/rules.mk
|
||
|
|
||
|
sinclude $(obj).depend
|
||
|
|
||
|
#########################################################################
|