2 # (C) Copyright 2000-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 # See file CREDITS for list of people who contributed to this
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.
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.
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,
26 include $(TOPDIR
)/config.mk
29 IMAGE
= $(obj
)updater.image
31 COBJS
= update.o flash.o flash_hw.o utils.o cmd_flash.o string.o ctype.o dummy.o
36 OBJS
:= $(addprefix $(obj
),$(COBJS
) $(COBJS_LINKS
) $(AOBJS
) $(AOBJS_LINKS
))
37 SRCS
:= $(COBJS
:.o
=.c
) $(AOBJS
:.o
=.S
) $(addprefix $(obj
), $(COBJS_LINKS
:.o
:.c
) $(AOBJS_LINKS
:.o
:.S
))
39 CPPFLAGS
+= -I
$(TOPDIR
) -I
$(TOPDIR
)/board
/MAI
/AmigaOneG3SE
40 CFLAGS
+= -I
$(TOPDIR
)/board
/MAI
/AmigaOneG3SE
41 AFLAGS
+= -I
$(TOPDIR
)/board
/MAI
/AmigaOneG3SE
43 DEPS
= $(OBJTREE
)/u-boot.bin
$(OBJTREE
)/tools
/mkimage
44 ifneq ($(DEPS
),$(wildcard $(DEPS
)))
45 $(error
"updater: Missing required objects, please run regular build first")
48 all: $(obj
).depend
$(PROG
) $(IMAGE
)
50 #########################################################################
52 $(obj
)%.srec
: %.o
$(LIB
)
53 $(LD
) -g
-Ttext
$(LOAD_ADDR
) -o
$(<:.o
=) -e
$(<:.o
=) $< $(LIB
)
54 $(OBJCOPY
) -O srec
$(<:.o
=) $@
57 $(CC
) $(CFLAGS
) -c
-o
$@
$<
60 $(CC
) $(AFLAGS
) -c
-o
$@
$<
62 $(obj
)memio.o
: $(obj
)memio.S
63 $(CC
) $(AFLAGS
) -c
-o
$@
$<
67 ln
-s
$(SRCTREE
)/board
/MAI
/AmigaOneG3SE
/memio.S
$(obj
)memio.S
69 $(obj
)stubs.o
: $(obj
)stubs.c
70 $(CC
) $(CFLAGS
) -c
-o
$@
$<
74 ln
-s
$(SRCTREE
)/examples
/stubs.c
$(obj
)stubs.c
76 #########################################################################
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
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
88 cp
$(obj
)updater.image
/tftpboot
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
96 cp
$(obj
)updater.image
/tftpboot
98 #########################################################################
100 # defines $(obj).depend target
101 include $(SRCTREE
)/rules.mk
103 sinclude
$(obj
).depend
105 #########################################################################