2 # (C) Copyright 2004-2006, Texas Instruments, <www.ti.com>
3 # Jian Zhang <jzhang@ti.com>
5 # (C) Copyright 2000-2004
6 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 # See file CREDITS for list of people who contributed to this
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation; either version 2 of
14 # the License, or (at your option) any later version.
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write to the Free Software
23 # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 HOSTARCH
:= $(shell uname
-m | \
35 HOSTOS
:= $(shell uname
-s | tr A-Z a-z | \
36 sed
-e
's/\(cygwin\).*/cygwin/')
40 # Deal with colliding definitions from tcsh etc.
43 #########################################################################
45 TOPDIR
:= $(shell if
[ "$$PWD" != "" ]; then echo
$$PWD; else pwd
; fi
)
48 ifeq (include/config.mk
,$(wildcard include/config.mk
))
49 # load ARCH, BOARD, and CPU configuration
50 include include/config.mk
51 export ARCH CPU BOARD VENDOR
52 # load other configuration
53 include $(TOPDIR
)/config.mk
56 CROSS_COMPILE
= arm-none-linux-gnueabi-
57 #CROSS_COMPILE = arm-linux-
61 #########################################################################
62 # X-LOAD objects....order is important (i.e. start must be first)
64 OBJS
= cpu
/$(CPU
)/start.o
67 LIBS
+= board
/$(BOARDDIR
)/lib
$(BOARD
).a
68 LIBS
+= cpu
/$(CPU
)/lib
$(CPU
).a
69 LIBS
+= lib
/lib
$(ARCH
).a
70 LIBS
+= fs
/fat
/libfat.a
71 LIBS
+= disk
/libdisk.a
72 LIBS
+= drivers
/libdrivers.a
76 PLATFORM_LIBS
+= -L
$(shell dirname
`$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
79 #########################################################################
80 #########################################################################
82 ALL
= x-load.bin System.map
88 $(OBJCOPY
) ${OBJCFLAGS} -O binary
$< $@
90 x-load
: $(OBJS
) $(LIBS
) $(LDSCRIPT
)
91 UNDEF_SYM
=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
92 $(LD
) $(LDFLAGS
) $$UNDEF_SYM $(OBJS
) \
93 --start-group
$(LIBS
) --end-group
$(PLATFORM_LIBS
) \
94 -Map x-load.map
-o x-load
97 $(MAKE
) -C
`dirname $@`
102 grep
-v
'\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
108 #########################################################################
110 all install x-load x-load.srec oneboot depend dep
:
111 @echo
"System not configured - see README" >&2
115 #########################################################################
118 rm -f
include/config.h
include/config.mk
120 #========================================================================
122 #========================================================================
123 #########################################################################
124 ## OMAP1 (ARM92xT) Systems
125 #########################################################################
127 omap1710h3_config
: unconfig
128 @.
/mkconfig
$(@
:_config
=) arm arm926ejs omap1710h3
130 #########################################################################
131 ## OMAP2 (ARM1136) Systems
132 #########################################################################
134 omap2420h4_config
: unconfig
135 @.
/mkconfig
$(@
:_config
=) arm arm1136 omap2420h4
137 omap2430sdp_config
: unconfig
138 @.
/mkconfig
$(@
:_config
=) arm arm1136 omap2430sdp
140 #########################################################################
141 ## OMAP3 (ARM-CortexA8) Systems
142 #########################################################################
143 omap3430sdp_config
: unconfig
144 @.
/mkconfig
$(@
:_config
=) arm omap3 omap3430sdp
146 omap3430labrador_config
: unconfig
147 @.
/mkconfig
$(@
:_config
=) arm omap3 omap3430labrador
149 omap3evm_config
: unconfig
150 @.
/mkconfig
$(@
:_config
=) arm omap3 omap3evm
152 overo_config
: unconfig
153 @.
/mkconfig
$(@
:_config
=) arm omap3 overo
155 omap3530beagle_config
: unconfig
157 @.
/mkconfig
$(@
:_config
=) arm omap3 omap3530beagle
159 #########################################################################
163 \
( -name
'core' -o
-name
'*.bak' -o
-name
'*~' \
164 -o
-name
'*.o' -o
-name
'*.a' \
) -print \
169 \
( -name .depend
-o
-name
'*.srec' -o
-name
'*.bin' \
) \
172 rm -f
$(OBJS
) *.bak
tags TAGS
174 rm -f x-load x-load.map
$(ALL
)
175 rm -f
include/asm
/proc
include/asm
/arch
178 distclean: clobber unconfig
181 F
=`basename $(TOPDIR)` ; cd ..
; \
182 gtar
--force-local
-zcvf
`date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
184 #########################################################################