2010-02-21 08:12:52 +08:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
# at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
# the license.
|
|
|
|
#-----------------------------------------------------------------------------
|
2019-08-08 22:57:33 +08:00
|
|
|
# Makefile for bootrom, see ../common_arm/Makefile.common for common settings
|
2010-02-21 08:12:52 +08:00
|
|
|
#-----------------------------------------------------------------------------
|
2010-02-21 05:24:25 +08:00
|
|
|
|
|
|
|
# DO NOT use thumb mode in the phase 1 bootloader since that generates a section with glue code
|
2019-03-10 18:35:03 +08:00
|
|
|
ARMSRC =
|
2019-04-25 07:53:00 +08:00
|
|
|
THUMBSRC = usb_cdc.c \
|
2019-10-15 20:21:26 +08:00
|
|
|
clocks.c \
|
2019-08-08 22:57:33 +08:00
|
|
|
bootrom.c
|
2017-10-18 05:09:32 +08:00
|
|
|
|
2010-02-21 05:24:25 +08:00
|
|
|
ASMSRC = ram-reset.s flash-reset.s
|
2018-07-28 20:25:12 +08:00
|
|
|
VERSIONSRC = version.c
|
2010-02-21 05:24:25 +08:00
|
|
|
|
|
|
|
## There is a strange bug with the linker: Sometimes it will not emit the glue to call
|
|
|
|
## BootROM from ARM mode. The symbol is emitted, but the section will be filled with
|
|
|
|
## zeroes. As a temporary workaround, do not use thumb for the phase 2 bootloader
|
|
|
|
## -- Henryk Plötz <henryk@ploetzli.ch> 2009-09-01
|
2013-02-28 23:11:52 +08:00
|
|
|
# ARMSRC := $(ARMSRC) $(THUMBSRC)
|
2019-03-10 18:35:03 +08:00
|
|
|
# THUMBSRC :=
|
2010-02-21 05:24:25 +08:00
|
|
|
|
|
|
|
# stdint.h provided locally until GCC 4.5 becomes C99 compliant
|
2017-02-20 06:24:19 +08:00
|
|
|
APP_CFLAGS = -I. -fno-strict-aliasing -ffunction-sections -fdata-sections
|
2010-02-21 05:24:25 +08:00
|
|
|
|
2019-01-06 03:59:00 +08:00
|
|
|
# stack-protect , no-pie reduces size on Gentoo Hardened 8.2 gcc
|
|
|
|
APP_CFLAGS += -fno-stack-protector -fno-pie
|
|
|
|
|
|
|
|
|
2010-02-21 05:24:25 +08:00
|
|
|
# Do not move this inclusion before the definition of {THUMB,ASM,ARM}SRC
|
2019-08-08 22:57:33 +08:00
|
|
|
include ../common_arm/Makefile.common
|
2010-02-21 05:24:25 +08:00
|
|
|
|
2019-08-31 03:55:13 +08:00
|
|
|
INSTALLFW = $(OBJDIR)/bootrom.elf
|
|
|
|
|
2010-05-09 20:17:42 +08:00
|
|
|
OBJS = $(OBJDIR)/bootrom.s19
|
|
|
|
|
2018-07-28 20:25:12 +08:00
|
|
|
# version.c should be remade on every compilation
|
|
|
|
version.c: default_version.c
|
2019-06-02 06:25:25 +08:00
|
|
|
$(info [=] GEN $@)
|
2019-08-31 03:55:13 +08:00
|
|
|
$(Q)sh ../tools/mkversion.sh > $@ || perl ../tools/mkversion.pl > $@ || $(CP) $^ $@
|
2018-07-28 20:25:12 +08:00
|
|
|
|
2010-05-09 20:17:42 +08:00
|
|
|
all: $(OBJS)
|
|
|
|
|
|
|
|
tarbin: $(OBJS)
|
2019-06-02 06:25:25 +08:00
|
|
|
$(info [=] GEN $@)
|
|
|
|
$(Q)$(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(OBJS:%=bootrom/%) $(OBJS:%.s19=bootrom/%.elf)
|
2010-02-21 05:24:25 +08:00
|
|
|
|
|
|
|
$(OBJDIR)/bootrom.elf: $(VERSIONOBJ) $(ASMOBJ) $(ARMOBJ) $(THUMBOBJ)
|
2019-06-02 06:25:25 +08:00
|
|
|
$(info [=] LD $@)
|
|
|
|
$(Q)$(CC) $(LDFLAGS) -Wl,-T,ldscript-flash,-Map,$(patsubst %.elf,%.map,$@) -o $@ $^ $(LIBS)
|
2010-02-21 05:24:25 +08:00
|
|
|
|
|
|
|
clean:
|
2019-08-31 03:55:13 +08:00
|
|
|
$(Q)$(RM) $(OBJDIR)$(PATHSEP)*.o
|
|
|
|
$(Q)$(RM) $(OBJDIR)$(PATHSEP)*.elf
|
|
|
|
$(Q)$(RM) $(OBJDIR)$(PATHSEP)*.s19
|
|
|
|
$(Q)$(RM) $(OBJDIR)$(PATHSEP)*.map
|
|
|
|
$(Q)$(RM) $(OBJDIR)$(PATHSEP)*.d
|
|
|
|
$(Q)$(RM) version.c
|
2010-02-21 05:24:25 +08:00
|
|
|
|
2019-08-31 03:44:40 +08:00
|
|
|
install: all
|
2019-08-31 03:55:13 +08:00
|
|
|
$(info [@] Installing bootrom to $(DESTDIR)$(PREFIX)...)
|
2019-09-06 05:20:46 +08:00
|
|
|
$(Q)$(MKDIR) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLFWRELPATH)
|
|
|
|
$(Q)$(CP) $(INSTALLFW) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLFWRELPATH)
|
2019-08-31 03:44:40 +08:00
|
|
|
|
|
|
|
uninstall:
|
2019-08-31 03:55:13 +08:00
|
|
|
$(info [@] Uninstalling bootrom from $(DESTDIR)$(PREFIX)...)
|
2019-09-06 05:20:46 +08:00
|
|
|
$(Q)$(RM) $(foreach fw,$(INSTALLFW),$(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLFWRELPATH)$(PATHSEP)$(notdir $(fw)))
|
2019-08-31 03:44:40 +08:00
|
|
|
|
|
|
|
.PHONY: all clean help install
|
2010-02-21 05:24:25 +08:00
|
|
|
help:
|
|
|
|
@echo Multi-OS Makefile, you are running on $(DETECTED_OS)
|
|
|
|
@echo Possible targets:
|
|
|
|
@echo + all - Make $(OBJDIR)/bootrom.s19, the main bootrom
|
|
|
|
@echo + clean - Clean $(OBJDIR)
|