diff options
author | Suriyan Ramasami <suriyan.r@gmail.com> | 2013-04-11 07:17:25 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-05-23 11:59:17 +0200 |
commit | 0ad6c34c3ed7d8e0595f8647dd7175eff18a8474 (patch) | |
tree | fd6de8f028e09b090e60585f8fba0e8ccf060f05 /board/Seagate/goflexhome/Makefile | |
parent | d21c3afab7152030adbe4c280acdb26a492fc162 (diff) | |
download | u-boot-imx-0ad6c34c3ed7d8e0595f8647dd7175eff18a8474.zip u-boot-imx-0ad6c34c3ed7d8e0595f8647dd7175eff18a8474.tar.gz u-boot-imx-0ad6c34c3ed7d8e0595f8647dd7175eff18a8474.tar.bz2 |
ARM: Add Seagate GoFlex Home support
Add Seagate GoFlex Home support
Start with dockstar configuration
define support for RTC, DATE, SATA and EXT4FS
Signed-off-by: Suriyan Ramasami <suriyan.r@gmail.com>
Diffstat (limited to 'board/Seagate/goflexhome/Makefile')
-rw-r--r-- | board/Seagate/goflexhome/Makefile | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/board/Seagate/goflexhome/Makefile b/board/Seagate/goflexhome/Makefile new file mode 100644 index 0000000..9948fe2 --- /dev/null +++ b/board/Seagate/goflexhome/Makefile @@ -0,0 +1,51 @@ +# +# Copyright (C) 2013 Suriyan Ramasami <suriyan.r@gmail.com> +# +# Based on dockstar/Makefile originally written by +# Copyright (C) 2010 Eric C. Cooper <ecc@cmu.edu> +# +# Based on sheevaplug/Makefile originally written by +# Prafulla Wadaskar <prafulla@marvell.com> +# (C) Copyright 2009 +# Marvell Semiconductor <www.marvell.com> +# +# 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., 51 Franklin Street, Fifth Floor, Boston, +# MA 02110-1301 USA +# + +include $(TOPDIR)/config.mk + +LIB = $(obj)lib$(BOARD).o + +COBJS := goflexhome.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 + +######################################################################### |