summaryrefslogtreecommitdiff
path: root/firmware/boot.lds
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/boot.lds')
-rw-r--r--firmware/boot.lds4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/boot.lds b/firmware/boot.lds
index d785fdcc2e..eb6e355302 100644
--- a/firmware/boot.lds
+++ b/firmware/boot.lds
@@ -82,10 +82,10 @@ SECTIONS
82 82
83 . = (DRAMORIG+16*1024*1024); 83 . = (DRAMORIG+16*1024*1024);
84 .bss : { 84 .bss : {
85 _bssstart = .; 85 _edata = .;
86 *(.bss); 86 *(.bss);
87 *(.ibss); 87 *(.ibss);
88 _bssend = . ; 88 _end = .;
89 } 89 }
90} 90}
91#else 91#else