summaryrefslogtreecommitdiffstats
path: root/kernel/linker.ld
diff options
context:
space:
mode:
authorAlexey Gavrilov <rebovas@yahoo.com>2023-08-20 20:13:59 +0700
committerAlexey Gavrilov <rebovas@yahoo.com>2023-08-20 20:13:59 +0700
commit47844a0db257264e7f8c5c38e07745601c884a7e (patch)
tree60642b3e3876c3d1e48bc19ee2026a5ec39e4e65 /kernel/linker.ld
parentb82ccebd3a0cce28177b5fac046139e2de7737fa (diff)
Edit README, Makefile, ld conf
Diffstat (limited to 'kernel/linker.ld')
-rw-r--r--kernel/linker.ld6
1 files changed, 5 insertions, 1 deletions
diff --git a/kernel/linker.ld b/kernel/linker.ld
index e490e6a..d5ee742 100644
--- a/kernel/linker.ld
+++ b/kernel/linker.ld
@@ -4,10 +4,14 @@ SECTIONS
{
. = 1M;
+ .multiboot :
+ {
+ *(.multiboot)
+ }
.text BLOCK(4K) : ALIGN(4K)
{
- *.(.multiboot)
*(.text)
+ *(.eh_frame)
}
.rodata BLOCK(4K) : ALIGN(4k)