diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-02-07 17:35:12 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-02-07 17:35:12 +0530 |
commit | 130080094d41620e1dbbe2a8a7c7e89c4ada7110 (patch) | |
tree | fd04e3ecaf3b9f2c67bbc65e3934ea8b8530a6f3 | |
parent | cca4e987ec30229a77a7cd4bf27c9d6670ad79db (diff) |
linker: Add symtab, shstrtab and strtab
-rw-r--r-- | kernel/boot/linker.ld | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/kernel/boot/linker.ld b/kernel/boot/linker.ld index 1ea6694..dd6359e 100644 --- a/kernel/boot/linker.ld +++ b/kernel/boot/linker.ld @@ -83,5 +83,21 @@ SECTIONS *(.eh_frame) } + .symtab : ALIGN(4K) + { + *(.symtab) + } + + .shstrtab : ALIGN(4K) + { + *(.shstrtab) + } + + .strtab : ALIGN(4K) + { + *(.strtab) + } + + kernel_end = .; } |