mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-22 20:38:03 +00:00
Merge changes from topic "Id18b0341353ffc00e44e2d3c643ccdd05cc20c4f" into integration
* changes: fix(rk3399): fix unquoted .incbin for clang fix(rk3399): mark INCBIN-generated sections as SHF_ALLOC
This commit is contained in:
commit
de5943f94c
1 changed files with 4 additions and 4 deletions
|
@ -6,16 +6,16 @@
|
||||||
|
|
||||||
/* convoluted way to make sure that the define is pasted just the right way */
|
/* convoluted way to make sure that the define is pasted just the right way */
|
||||||
.macro INCBIN file sym sec
|
.macro INCBIN file sym sec
|
||||||
.section \sec
|
.section \sec, "a"
|
||||||
.global \sym
|
.global \sym
|
||||||
.type \sym, @object
|
.type \sym, @object
|
||||||
.align 4
|
.align 4
|
||||||
\sym :
|
\sym :
|
||||||
.incbin \file
|
.incbin "\file"
|
||||||
.size \sym , .-\sym
|
.size \sym , .-\sym
|
||||||
.global \sym\()_end
|
.global \sym\()_end
|
||||||
\sym\()_end :
|
\sym\()_end :
|
||||||
.endm
|
.endm
|
||||||
|
|
||||||
INCBIN ""RK3399M0FW"", "rk3399m0_bin", ".sram.incbin"
|
INCBIN RK3399M0FW, "rk3399m0_bin", ".sram.incbin"
|
||||||
INCBIN ""RK3399M0PMUFW"", "rk3399m0pmu_bin", ".pmusram.incbin"
|
INCBIN RK3399M0PMUFW, "rk3399m0pmu_bin", ".pmusram.incbin"
|
||||||
|
|
Loading…
Add table
Reference in a new issue