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:
Serhiy Katsyuba 2024-07-18 16:37:28 +02:00 committed by Liam Girdwood
parent de05d6d955
commit 7bd1953e63
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ SECTIONS {
} >HPSRAM_seg : rodata_phdr
/* Module manifest is here */
.module 0 : {
.module : {
KEEP(*(.module))
}
} >HPSRAM_seg : rodata_phdr
}