diff options
| author | Tianhao Wang <shrik3@mailbox.org> | 2024-06-04 19:32:32 +0200 |
|---|---|---|
| committer | Tianhao Wang <shrik3@mailbox.org> | 2024-06-11 15:17:12 +0200 |
| commit | 23ec0f61a7a115753148e3688e81567867f65c70 (patch) | |
| tree | b73e69bde0f887df1ea0885363c51a63d3ea8424 /defs/x86_64-hm-linker.ld | |
| parent | 6ddb7ff5e4edd749051fe624f018c33cf776c749 (diff) | |
chore: add v2p and p2v conversion wrt. id mapping
Also renamed a few symbols to avoid confusion.
Diffstat (limited to 'defs/x86_64-hm-linker.ld')
| -rw-r--r-- | defs/x86_64-hm-linker.ld | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/defs/x86_64-hm-linker.ld b/defs/x86_64-hm-linker.ld index 0c97b55..563940e 100644 --- a/defs/x86_64-hm-linker.ld +++ b/defs/x86_64-hm-linker.ld @@ -93,10 +93,10 @@ SECTIONS .bss : AT(ADDR(.bss) - KERNEL_OFFSET) { - PROVIDE (___BSS_PM_START__ = .); + PROVIDE (___BSS_START__ = .); *(".bss") *(".bss.*") - PROVIDE (___BSS_PM_END__ = .); + PROVIDE (___BSS_END__ = .); } .rodata : AT(ADDR(.rodata) - KERNEL_OFFSET) |
