]> git.ipfire.org Git - people/ms/u-boot.git/blame - tools/updater/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-arm
[people/ms/u-boot.git] / tools / updater / Makefile
CommitLineData
c7de829c 1#
f9328639 2# (C) Copyright 2000-2006
c7de829c
WD
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
24LOAD_ADDR = 0x40000
25
26include $(TOPDIR)/config.mk
27
f9328639
MB
28PROG = $(obj)updater
29IMAGE = $(obj)updater.image
c7de829c 30
f9328639
MB
31COBJS = update.o flash.o flash_hw.o utils.o cmd_flash.o string.o ctype.o dummy.o
32COBJS_LINKS = stubs.o
33AOBJS = ppcstring.o
34AOBJS_LINKS = memio.o
35
36OBJS := $(addprefix $(obj),$(COBJS) $(COBJS_LINKS) $(AOBJS) $(AOBJS_LINKS))
37SRCS := $(COBJS:.o=.c) $(AOBJS:.o=.S) $(addprefix $(obj), $(COBJS_LINKS:.o:.c) $(AOBJS_LINKS:.o:.S))
c7de829c
WD
38
39CPPFLAGS += -I$(TOPDIR) -I$(TOPDIR)/board/MAI/AmigaOneG3SE
40CFLAGS += -I$(TOPDIR)/board/MAI/AmigaOneG3SE
f9328639
MB
41AFLAGS += -I$(TOPDIR)/board/MAI/AmigaOneG3SE
42
43DEPS = $(OBJTREE)/u-boot.bin $(OBJTREE)/tools/mkimage
44ifneq ($(DEPS),$(wildcard $(DEPS)))
45$(error "updater: Missing required objects, please run regular build first")
46endif
c7de829c 47
f9328639 48all: $(obj).depend $(PROG) $(IMAGE)
c7de829c
WD
49
50#########################################################################
c7de829c 51
f9328639 52$(obj)%.srec: %.o $(LIB)
c7de829c
WD
53 $(LD) -g -Ttext $(LOAD_ADDR) -o $(<:.o=) -e $(<:.o=) $< $(LIB)
54 $(OBJCOPY) -O srec $(<:.o=) $@
55
f9328639
MB
56$(obj)%.o: %.c
57 $(CC) $(CFLAGS) -c -o $@ $<
58
59$(obj)%.o: %.S
60 $(CC) $(AFLAGS) -c -o $@ $<
61
62$(obj)memio.o: $(obj)memio.S
63 $(CC) $(AFLAGS) -c -o $@ $<
c7de829c 64
f9328639
MB
65$(obj)memio.S:
66 rm -f $(obj)memio.c
67 ln -s $(SRCTREE)/board/MAI/AmigaOneG3SE/memio.S $(obj)memio.S
68
69$(obj)stubs.o: $(obj)stubs.c
70 $(CC) $(CFLAGS) -c -o $@ $<
71
72$(obj)stubs.c:
73 rm -f $(obj)stubs.c
74 ln -s $(SRCTREE)/examples/stubs.c $(obj)stubs.c
c7de829c
WD
75
76#########################################################################
77
f9328639
MB
78$(obj)updater: $(OBJS)
79 $(LD) -g -Ttext $(LOAD_ADDR) -o $(obj)updater -e _main $(OBJS)
80 $(OBJCOPY) -O binary $(obj)updater $(obj)updater.bin
c7de829c 81
f9328639
MB
82$(obj)updater.image: $(obj)updater $(OBJTREE)/u-boot.bin
83 cat >/tmp/tempimage $(obj)updater.bin junk $(OBJTREE)/u-boot.bin
84 $(OBJTREE)/tools/mkimage -A ppc -O u-boot -T standalone -C none -a $(LOAD_ADDR) \
85 -e `$(NM) $(obj)updater | grep _main | cut --bytes=0-8` \
86 -n "Firmware Updater" -d /tmp/tempimage $(obj)updater.image
c7de829c 87 rm /tmp/tempimage
f9328639 88 cp $(obj)updater.image /tftpboot
c7de829c 89
f9328639
MB
90(obj)updater.image2: $(obj)updater $(OBJTREE)/u-boot.bin
91 cat >/tmp/tempimage $(obj)updater.bin junk ../../create_image/image
92 $(OBJTREE)/tools/mkimage -A ppc -O u-boot -T standalone -C none -a $(LOAD_ADDR) \
93 -e `$(NM) $(obj)updater | grep _main | cut --bytes=0-8` \
94 -n "Firmware Updater" -d /tmp/tempimage $(obj)updater.image
c7de829c 95 rm /tmp/tempimage
f9328639
MB
96 cp $(obj)updater.image /tftpboot
97
98#########################################################################
c7de829c 99
f9328639
MB
100# defines $(obj).depend target
101include $(SRCTREE)/rules.mk
c7de829c 102
f9328639 103sinclude $(obj).depend
c7de829c
WD
104
105#########################################################################