2010-02-21 00:12:52 +00:00
|
|
|
#-----------------------------------------------------------------------------
|
2022-01-06 02:19:46 +01:00
|
|
|
# Copyright (C) Jonathan Westhues, Mar 2006
|
|
|
|
|
# Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
|
|
|
|
#
|
|
|
|
|
# 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 3 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.
|
|
|
|
|
#
|
|
|
|
|
# See LICENSE.txt for the text of the license.
|
2010-02-21 00:12:52 +00:00
|
|
|
#-----------------------------------------------------------------------------
|
2019-08-08 16:57:33 +02:00
|
|
|
# Makefile for bootrom, see ../common_arm/Makefile.common for common settings
|
2010-02-21 00:12:52 +00:00
|
|
|
#-----------------------------------------------------------------------------
|
2010-02-20 21:24:25 +00:00
|
|
|
|
|
|
|
|
# DO NOT use thumb mode in the phase 1 bootloader since that generates a section with glue code
|
2019-03-10 11:35:03 +01:00
|
|
|
ARMSRC =
|
2019-04-25 01:53:00 +02:00
|
|
|
THUMBSRC = usb_cdc.c \
|
2019-10-15 14:21:26 +02:00
|
|
|
clocks.c \
|
2019-08-08 16:57:33 +02:00
|
|
|
bootrom.c
|
2017-10-17 23:09:32 +02:00
|
|
|
|
2010-02-20 21:24:25 +00:00
|
|
|
ASMSRC = ram-reset.s flash-reset.s
|
2021-05-21 00:15:20 +02:00
|
|
|
VERSIONSRC = version_pm3.c
|
2010-02-20 21:24:25 +00: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 15:11:52 +00:00
|
|
|
# ARMSRC := $(ARMSRC) $(THUMBSRC)
|
2019-03-10 11:35:03 +01:00
|
|
|
# THUMBSRC :=
|
2010-02-20 21:24:25 +00:00
|
|
|
|
|
|
|
|
# stdint.h provided locally until GCC 4.5 becomes C99 compliant
|
2026-04-28 12:26:09 +02:00
|
|
|
APP_CFLAGS = -I. -DAS_BOOTROM
|
2010-02-20 21:24:25 +00:00
|
|
|
|
2026-04-28 12:26:09 +02:00
|
|
|
# no-common makes sure uninitialized vars don't end up in COMMON area
|
|
|
|
|
APP_CFLAGS += -fno-common
|
2019-01-05 20:59:00 +01:00
|
|
|
|
2023-02-17 16:59:00 -08:00
|
|
|
ifneq (,$(findstring WITH_FLASH,$(PLATFORM_DEFS)))
|
|
|
|
|
APP_CFLAGS += -DWITH_FLASH
|
|
|
|
|
APP_CFLAGS += -I../common_arm
|
|
|
|
|
THUMBSRC += flashmem.c ticks.c
|
|
|
|
|
endif
|
|
|
|
|
|
2019-01-05 20:59:00 +01:00
|
|
|
|
2010-02-20 21:24:25 +00:00
|
|
|
# Do not move this inclusion before the definition of {THUMB,ASM,ARM}SRC
|
2019-08-08 16:57:33 +02:00
|
|
|
include ../common_arm/Makefile.common
|
2010-02-20 21:24:25 +00:00
|
|
|
|
2019-08-30 21:55:13 +02:00
|
|
|
INSTALLFW = $(OBJDIR)/bootrom.elf
|
|
|
|
|
|
2010-05-09 12:17:42 +00:00
|
|
|
OBJS = $(OBJDIR)/bootrom.s19
|
|
|
|
|
|
2023-08-03 00:42:08 +02:00
|
|
|
# version_pm3.c should be checked on every compilation
|
2023-01-09 00:57:28 +10:00
|
|
|
version_pm3.c: default_version_pm3.c .FORCE
|
2023-08-03 00:42:08 +02:00
|
|
|
$(info [=] CHECK $@)
|
2026-04-14 10:19:30 +02:00
|
|
|
$(Q)$(SH) ../tools/mkversion.sh $@ || $(CP) $< $@
|
2018-07-28 14:25:12 +02:00
|
|
|
|
2020-05-11 10:21:32 +02:00
|
|
|
all: showinfo $(OBJS)
|
|
|
|
|
|
|
|
|
|
showinfo:
|
2021-09-21 13:50:01 +02:00
|
|
|
$(info compiler version: $(shell $(CROSS_CC) --version|head -n 1))
|
2010-05-09 12:17:42 +00:00
|
|
|
|
|
|
|
|
tarbin: $(OBJS)
|
2020-07-13 15:41:39 +02:00
|
|
|
$(info [=] GEN $@)
|
|
|
|
|
$(Q)$(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(OBJS:%=bootrom/%) $(OBJS:%.s19=bootrom/%.elf)
|
2010-02-20 21:24:25 +00:00
|
|
|
|
|
|
|
|
$(OBJDIR)/bootrom.elf: $(VERSIONOBJ) $(ASMOBJ) $(ARMOBJ) $(THUMBOBJ)
|
2020-07-13 15:41:39 +02:00
|
|
|
$(info [=] LD $@)
|
2026-04-28 12:15:20 +02:00
|
|
|
# Using -T instead of -Wl,-T is needed to prevent the linker from using the default ldscript when using picolibc instead of newlib
|
|
|
|
|
$(Q)$(CROSS_LD) $(CROSS_LDFLAGS) -T ldscript-flash -Wl,-Map,$(patsubst %.elf,%.map,$@) -o $@ $^ $(LIBS)
|
2010-02-20 21:24:25 +00:00
|
|
|
|
|
|
|
|
clean:
|
2020-07-13 15:41:39 +02: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
|
2021-05-21 00:15:20 +02:00
|
|
|
$(Q)$(RM) version_pm3.c version.c
|
2010-02-20 21:24:25 +00:00
|
|
|
|
2019-08-30 21:44:40 +02:00
|
|
|
install: all
|
2020-07-13 15:41:39 +02:00
|
|
|
$(info [@] Installing bootrom to $(DESTDIR)$(PREFIX)...)
|
2022-05-03 19:04:01 +02:00
|
|
|
$(Q)$(INSTALLSUDO) $(MKDIR) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLFWRELPATH)
|
|
|
|
|
$(Q)$(INSTALLSUDO) $(CP) $(INSTALLFW) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLFWRELPATH)
|
2019-08-30 21:44:40 +02:00
|
|
|
|
|
|
|
|
uninstall:
|
2020-07-13 15:41:39 +02:00
|
|
|
$(info [@] Uninstalling bootrom from $(DESTDIR)$(PREFIX)...)
|
2022-05-03 19:04:01 +02:00
|
|
|
$(Q)$(INSTALLSUDO) $(RM) $(foreach fw,$(INSTALLFW),$(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLFWRELPATH)$(PATHSEP)$(notdir $(fw)))
|
2019-08-30 21:44:40 +02:00
|
|
|
|
2023-01-09 00:57:28 +10:00
|
|
|
.PHONY: all clean help install showinfo .FORCE
|
2010-02-20 21:24:25 +00:00
|
|
|
help:
|
2020-07-13 15:41:39 +02:00
|
|
|
@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)
|