Skip to content

Commit 748992d

Browse files
committed
Linker Script: fix a region issue that causes mdb fail to reset
Previously the linker script specify both lregion and vregion for .data section, which would prevent mdb to reload the region during reset of hsdk and emsdp (Because these boards use part of ram to store .text). Signed-off-by: Yuguo Zou <yuguo.zou@synopsys.com>
1 parent bcc3716 commit 748992d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

board/linker_template_mw.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ SECTIONS {
7878
*(.tls*)
7979
_e_data = .;
8080
}
81-
} > REGION_RAM AT > REGION_ROM
81+
} > REGION_RAM
8282

8383
GROUP (NOLOAD) : {
8484
.bss ALIGN(8): {

0 commit comments

Comments
 (0)