risc-v/mpfs: Mark the page table section as NOLOAD

Otherwise the linker will allocate an output section for it, which actually
uses kernel ROM memory for nothing
This commit is contained in:
Ville Juven 2022-12-08 14:19:28 +02:00 committed by Xiang Xiao
parent ca16e9bbd5
commit 9b0e1659ea
2 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ SECTIONS
} > ksram
/* Page tables here, align to 4K boundary */
.pgtables : ALIGN(0x1000) {
.pgtables (NOLOAD) : ALIGN(0x1000) {
*(.pgtables)
. = ALIGN(32);
_ebss = ABSOLUTE(.);

View File

@ -97,7 +97,7 @@ SECTIONS
/* Page tables here, align to 4K boundary */
.pgtables : ALIGN(0x1000) {
.pgtables (NOLOAD) : ALIGN(0x1000) {
*(.pgtables)
. = ALIGN(4);
} > ksram