mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00

platform.mk is updated to have compilation rules for DTB, stm32image tool, and the concatenation of the 3 binaries. A new linker script and an assembly file are added to manage this. Signed-off-by: Yann Gautier <yann.gautier@st.com> Signed-off-by: Mathieu Belou <mathieu.belou@st.com> Signed-off-by: Lionel Debieve <lionel.debieve@st.com>
16 lines
286 B
ArmAsm
16 lines
286 B
ArmAsm
/*
|
|
* Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifdef BL32_BIN_PATH
|
|
.section .bl32_image
|
|
.incbin BL32_BIN_PATH
|
|
#endif
|
|
|
|
.section .bl2_image
|
|
.incbin BL2_BIN_PATH
|
|
|
|
.section .dtb_image
|
|
.incbin DTB_BIN_PATH
|