mirror of https://github.com/thesofproject/sof.git
lmdk: Fix linker script
Specifying 0 address for .module section results in few GB binary file. Instead, put .module section near .text or .rodata. Signed-off-by: Serhiy Katsyuba <serhiy.katsyuba@intel.com>
This commit is contained in:
parent
de05d6d955
commit
7bd1953e63
|
@ -25,7 +25,7 @@ SECTIONS {
|
|||
} >HPSRAM_seg : rodata_phdr
|
||||
|
||||
/* Module manifest is here */
|
||||
.module 0 : {
|
||||
.module : {
|
||||
KEEP(*(.module))
|
||||
}
|
||||
} >HPSRAM_seg : rodata_phdr
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue