summaryrefslogtreecommitdiff
path: root/utils/atj2137/adfuload/test_binary/backlight_c/test_bl.lds
diff options
context:
space:
mode:
Diffstat (limited to 'utils/atj2137/adfuload/test_binary/backlight_c/test_bl.lds')
-rw-r--r--utils/atj2137/adfuload/test_binary/backlight_c/test_bl.lds4
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/atj2137/adfuload/test_binary/backlight_c/test_bl.lds b/utils/atj2137/adfuload/test_binary/backlight_c/test_bl.lds
index 744cad5175..870b708fa3 100644
--- a/utils/atj2137/adfuload/test_binary/backlight_c/test_bl.lds
+++ b/utils/atj2137/adfuload/test_binary/backlight_c/test_bl.lds
@@ -5,7 +5,7 @@ SECTIONS
5{ 5{
6 6
7 7
8.text 0xa0001000 : 8.text 0x80000000 :
9 { 9 {
10 relocstart = .; 10 relocstart = .;
11 *(.init.text*) 11 *(.init.text*)
@@ -21,6 +21,7 @@ SECTIONS
21 21
22.bss : 22.bss :
23 { 23 {
24 . = ALIGN(4);
24 bssbegin = .; 25 bssbegin = .;
25 *(.sbss*) 26 *(.sbss*)
26 *(.bss*) 27 *(.bss*)
@@ -31,6 +32,7 @@ SECTIONS
31 32
32.stack (NOLOAD) : 33.stack (NOLOAD) :
33 { 34 {
35 . = ALIGN(4);
34 stackbegin = .; 36 stackbegin = .;
35 . += 0x2000; 37 . += 0x2000;
36 stackend = .; 38 stackend = .;