summaryrefslogtreecommitdiff
path: root/target/arm/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2022-09-22 14:03:07 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2022-09-22 14:03:07 +0200
commitba48db8275730fbc512c0872ae426970a09b5619 (patch)
treef64154d20f3faada75a3b9ef2baeeff012dac76a /target/arm/Makefile
parent56ede91e9f8f8211a6fc62cd5f56d95a76fec9a7 (diff)
add support for STM32F746G-DISCO device
Tested with toolbox / simpleinit as userland. FDPIC/FLAT support both successfully tested. No LCD or Ethernet support.
Diffstat (limited to 'target/arm/Makefile')
-rw-r--r--target/arm/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/target/arm/Makefile b/target/arm/Makefile
index d92e10d6a..4f7ffc009 100644
--- a/target/arm/Makefile
+++ b/target/arm/Makefile
@@ -148,9 +148,9 @@ endif
endif
ifeq ($(ADK_TARGET_FS),genimage)
targethelp:
- @echo "The disk image is: $(FW_DIR)/disk.img"
+ @echo "The disk image is: $(FW_DIR)/sdcard.img"
@echo "Use following command to install it on SD card:"
- @echo 'sudo dd if=$(FW_DIR)/disk.img of=/dev/sdX bs=2048k'
+ @echo 'sudo dd if=$(FW_DIR)/sdcard.img of=/dev/sdX bs=2048k'
endif
kernel-strip:
@@ -220,6 +220,9 @@ endif
ifeq ($(ADK_TARGET_SYSTEM_ST_STM32F769),y)
${KERNEL_MAKE} dtbs $(MAKE_TRACE)
endif
+ifeq ($(ADK_TARGET_SYSTEM_ST_STM32F746G),y)
+ ${KERNEL_MAKE} dtbs $(MAKE_TRACE)
+endif
for x in $(LINUX_DIR)/arch/arm/boot/dts/*.dtb; do \
[[ -e "$$x" ]] && cp $(LINUX_DIR)/arch/arm/boot/dts/*.dtb $(FW_DIR); \
break; \