diff options
author | Simon Guinot <simon.guinot@sequanux.org> | 2011-11-21 13:55:47 (GMT) |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-12-06 22:59:30 (GMT) |
commit | 77ea071fefbda70ed21a6f0e7bd34ec215e70d39 (patch) | |
tree | 72bd114929a758873cdeaf075db880e9d5018ee0 /board/LaCie/net2big_v2/Makefile | |
parent | 5628fb75d10764c377bd7eef9dfb4476f2398ff7 (diff) | |
download | u-boot-fsl-qoriq-77ea071fefbda70ed21a6f0e7bd34ec215e70d39.tar.xz |
ARM: remove duplicated code for LaCie boards
This patch groups together all the common functions for LaCie boards:
Ethernet PHY and MAC address initializations.
Moreover the configurations for LaCie Kirkwood boards are merged into
a single file: include/configs/lacie_kw.h
Signed-off-by: Simon Guinot <simon.guinot@sequanux.org>
Diffstat (limited to 'board/LaCie/net2big_v2/Makefile')
-rw-r--r-- | board/LaCie/net2big_v2/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/board/LaCie/net2big_v2/Makefile b/board/LaCie/net2big_v2/Makefile index 4bacef4..fbae48e 100644 --- a/board/LaCie/net2big_v2/Makefile +++ b/board/LaCie/net2big_v2/Makefile @@ -21,10 +21,13 @@ # include $(TOPDIR)/config.mk +ifneq ($(OBJTREE),$(SRCTREE)) +$(shell mkdir -p $(obj)../common) +endif LIB = $(obj)lib$(BOARD).o -COBJS := net2big_v2.o +COBJS := $(BOARD).o ../common/common.o SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) |