aboutsummaryrefslogtreecommitdiff
path: root/src/bsp
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-08-18 18:21:13 -0700
committerChristian Cunningham <cc@localhost>2022-08-18 18:21:13 -0700
commit6f1e6acb1a9775eef4b0d8879c102df86e207687 (patch)
tree0ec9c8102b4ddb96c789eaebd8abba2b7ebaf63a /src/bsp
parent5494645e2607706655f8e3466f3ec858db303061 (diff)
Assembly stuff
Diffstat (limited to 'src/bsp')
-rw-r--r--src/bsp/raspberrypi/linker.ld6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/bsp/raspberrypi/linker.ld b/src/bsp/raspberrypi/linker.ld
index aa60bbb..93ee267 100644
--- a/src/bsp/raspberrypi/linker.ld
+++ b/src/bsp/raspberrypi/linker.ld
@@ -37,4 +37,10 @@ SECTIONS
. = ALIGN(4096);
__bss_end = .;
__end = .;
+
+ /DISCARD/ :
+ {
+ *(.ARM.exidx);
+ *(.ARM.extab.*);
+ }
}