mirror of https://github.com/thesofproject/sof.git
13 lines
207 B
Plaintext
13 lines
207 B
Plaintext
|
|
||
|
PHDRS {
|
||
|
guard_phdr PT_LOAD;
|
||
|
}
|
||
|
|
||
|
SECTIONS {
|
||
|
.guard : ALIGN(4096) {
|
||
|
_guard_section_start = ABSOLUTE(.);
|
||
|
*(.*)
|
||
|
_guard_section_end = ABSOLUTE(.);
|
||
|
} >HPSRAM_seg : guard_phdr
|
||
|
}
|