diff options
author | Stefano Babic <sbabic@denx.de> | 2012-02-22 00:24:40 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-05-15 08:31:31 +0200 |
commit | 79656d27b3e2eb4c9ceb273cc1efd33e51a9951a (patch) | |
tree | 2268768109baf6920af22dbc1b86e70ce8f2e3ab /board/esg/ima3-mx53/Makefile | |
parent | 9f472e6540f5632ce27b779d841a006d1c1b3d55 (diff) | |
download | u-boot-imx-79656d27b3e2eb4c9ceb273cc1efd33e51a9951a.zip u-boot-imx-79656d27b3e2eb4c9ceb273cc1efd33e51a9951a.tar.gz u-boot-imx-79656d27b3e2eb4c9ceb273cc1efd33e51a9951a.tar.bz2 |
MX53: Add support to ESG ima3 board
The ESG ima3-mx53 board is based on the Freescale
i.MX53 SOC. It boots from NOR (128 MB) and
supports Ethernet (FEC), SATA.
Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'board/esg/ima3-mx53/Makefile')
-rw-r--r-- | board/esg/ima3-mx53/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/board/esg/ima3-mx53/Makefile b/board/esg/ima3-mx53/Makefile new file mode 100644 index 0000000..f3b13bc --- /dev/null +++ b/board/esg/ima3-mx53/Makefile @@ -0,0 +1,41 @@ +# +# Copyright (C) 2012, Stefano Babic <sbabic@denx.de> +# +# Based on ti/evm/Makefile +# +# 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 := ima3-mx53.o + +SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS)) + +$(LIB): $(obj).depend $(OBJS) + $(call cmd_link_o_target, $(OBJS)) + +######################################################################### + +# defines $(obj).depend target +include $(SRCTREE)/rules.mk + +sinclude $(obj).depend + +######################################################################### |