aboutsummaryrefslogtreecommitdiffstats
path: root/link.ld
diff options
context:
space:
mode:
Diffstat (limited to 'link.ld')
-rw-r--r--link.ld20
1 files changed, 10 insertions, 10 deletions
diff --git a/link.ld b/link.ld
index 7e61bf3..074caf7 100644
--- a/link.ld
+++ b/link.ld
@@ -34,12 +34,12 @@ SECTIONS
*(.rodata)
}
- .init_array :
- {
- __init_array_start = .;
- *(.init_array)
- __init_array_end = .;
- }
+ .init_array :
+ {
+ __init_array_start = .;
+ *(.init_array)
+ __init_array_end = .;
+ }
/* Read-write data (initialized) */
.data BLOCK(4K) : ALIGN(4K)
@@ -58,9 +58,9 @@ SECTIONS
a segment with the same name. Simply add stuff here as needed. */
.note :
- {
- *(.note)
- *(.note*)
- }
+ {
+ *(.note)
+ *(.note*)
+ }
}