summaryrefslogtreecommitdiffstats
path: root/tools/updater/Makefile
blob: e9684cb40971c7ed2ae2b6ac0f485eedcf67b996 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#
# (C) Copyright 2000-2006
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
#
# 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., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307 USA
#

LOAD_ADDR = 0x40000

include $(TOPDIR)/config.mk

PROG		= $(obj)updater
IMAGE		= $(obj)updater.image

COBJS		= update.o flash.o flash_hw.o utils.o cmd_flash.o string.o ctype.o dummy.o
COBJS_LINKS	= stubs.o
AOBJS		= ppcstring.o
AOBJS_LINKS	= memio.o

OBJS	:= $(addprefix $(obj),$(COBJS) $(COBJS_LINKS) $(AOBJS) $(AOBJS_LINKS))
SRCS	:= $(COBJS:.o=.c) $(AOBJS:.o=.S) $(addprefix $(obj), $(COBJS_LINKS:.o:.c) $(AOBJS_LINKS:.o:.S))

CPPFLAGS += -I$(TOPDIR) -I$(TOPDIR)/board/MAI/AmigaOneG3SE
CFLAGS   += -I$(TOPDIR)/board/MAI/AmigaOneG3SE
AFLAGS   += -I$(TOPDIR)/board/MAI/AmigaOneG3SE

DEPS = $(OBJTREE)/u-boot.bin $(OBJTREE)/tools/mkimage
ifneq ($(DEPS),$(wildcard $(DEPS)))
$(error "updater: Missing required objects, please run regular build first")
endif

all:	$(obj).depend $(PROG) $(IMAGE)

#########################################################################

$(obj)%.srec:	%.o $(LIB)
	$(LD) -g -Ttext $(LOAD_ADDR) -o $(<:.o=) -e $(<:.o=) $< $(LIB)
	$(OBJCOPY) -O srec $(<:.o=) $@

$(obj)%.o: %.c
	$(CC) $(CFLAGS) -c -o $@ $<

$(obj)%.o: %.S
	$(CC) $(AFLAGS) -c -o $@ $<

$(obj)memio.o: $(obj)memio.S
	$(CC) $(AFLAGS) -c -o $@ $<

$(obj)memio.S:
	rm -f $(obj)memio.c
	ln -s $(SRCTREE)/board/MAI/AmigaOneG3SE/memio.S $(obj)memio.S

$(obj)stubs.o: $(obj)stubs.c
	$(CC) $(CFLAGS) -c -o $@ $<

$(obj)stubs.c:
	rm -f $(obj)stubs.c
	ln -s $(SRCTREE)/examples/stubs.c $(obj)stubs.c

#########################################################################

$(obj)updater: $(OBJS)
	$(LD) -g -Ttext $(LOAD_ADDR) -o $(obj)updater -e _main $(OBJS)
	$(OBJCOPY) -O binary $(obj)updater $(obj)updater.bin

$(obj)updater.image: $(obj)updater $(OBJTREE)/u-boot.bin
	cat >/tmp/tempimage $(obj)updater.bin junk $(OBJTREE)/u-boot.bin
	$(OBJTREE)/tools/mkimage -A ppc -O u-boot -T standalone -C none -a $(LOAD_ADDR) \
	-e `$(NM) $(obj)updater | grep _main | cut --bytes=0-8` \
	-n "Firmware Updater" -d /tmp/tempimage $(obj)updater.image
	rm /tmp/tempimage
	cp $(obj)updater.image /tftpboot

(obj)updater.image2: $(obj)updater $(OBJTREE)/u-boot.bin
	cat >/tmp/tempimage $(obj)updater.bin junk ../../create_image/image
	$(OBJTREE)/tools/mkimage -A ppc -O u-boot -T standalone -C none -a $(LOAD_ADDR) \
	-e `$(NM) $(obj)updater | grep _main | cut --bytes=0-8` \
	-n "Firmware Updater" -d /tmp/tempimage $(obj)updater.image
	rm /tmp/tempimage
	cp $(obj)updater.image /tftpboot

#########################################################################

# defines $(obj).depend target
include $(SRCTREE)/rules.mk

sinclude $(obj).depend

#########################################################################
OpenPOWER on IntegriCloud