diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2020-11-12 09:01:25 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2020-11-12 09:01:25 +0100 |
commit | a634eb27a9ee2309a0ddb45cac25829ece5adc05 (patch) | |
tree | f68fb9dc72a89fcd9fa1f29a93c37d164c1a261f /package/afboot-stm32 | |
parent | 424e08c39314556a1930204e1262118066f62fa6 (diff) |
afboot-stm32: fix problem with fdpic toolchain
Diffstat (limited to 'package/afboot-stm32')
-rw-r--r-- | package/afboot-stm32/Makefile | 2 | ||||
-rw-r--r-- | package/afboot-stm32/patches/patch-Makefile | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/package/afboot-stm32/Makefile b/package/afboot-stm32/Makefile index 127b9c21a..49a01a9c0 100644 --- a/package/afboot-stm32/Makefile +++ b/package/afboot-stm32/Makefile @@ -4,7 +4,7 @@ include $(ADK_TOPDIR)/rules.mk PKG_NAME:= afboot-stm32 -PKG_VERSION:= 8e9e03159ce47629d40dbed4c50c1879b69bb197 +PKG_VERSION:= 3566acd582e5536fb60864281788a30f5527df2d PKG_RELEASE:= 1 PKG_DESCR:= bootloader for stm32 devices PKG_SECTION:= base/boot diff --git a/package/afboot-stm32/patches/patch-Makefile b/package/afboot-stm32/patches/patch-Makefile new file mode 100644 index 000000000..6a7087c84 --- /dev/null +++ b/package/afboot-stm32/patches/patch-Makefile @@ -0,0 +1,10 @@ +--- afboot-stm32-3566acd582e5536fb60864281788a30f5527df2d.orig/Makefile 2020-11-11 22:52:18.000000000 +0100 ++++ afboot-stm32-3566acd582e5536fb60864281788a30f5527df2d/Makefile 2020-11-11 22:56:16.737522477 +0100 +@@ -13,6 +13,7 @@ DTB_ADDR?=0x08004000 + CFLAGS := -mthumb -mcpu=cortex-m4 + CFLAGS += -ffunction-sections -fdata-sections + CFLAGS += -Os -std=gnu99 -Wall ++CFLAGS += -fno-builtin -mno-fdpic + LINKERFLAGS := -nostartfiles --gc-sections + + obj-y += gpio.o mpu.o qspi.o start_kernel.o |