Skip to content

Commit 2defcb7

Browse files
authored
Merge pull request #2094 from jesven/fix_zynq7000_ld
fix bss start address in ld file
2 parents d5b130d + 95c9205 commit 2defcb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bsp/zynq7000/zynq7000.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ SECTIONS
9292
__data_end = .;
9393

9494
. = ALIGN(4);
95-
__bss_start = 0;
95+
__bss_start = __data_end;
9696
.bss :
9797
{
9898
*(.bss)

0 commit comments

Comments
 (0)