diff options
Diffstat (limited to 'defs')
| -rw-r--r-- | defs/x86_64-hm-linker.ld | 4 | ||||
| -rw-r--r-- | defs/x86_64-linker.ld | 4 |
2 files changed, 4 insertions, 4 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) diff --git a/defs/x86_64-linker.ld b/defs/x86_64-linker.ld index 6be14cb..f22f5ad 100644 --- a/defs/x86_64-linker.ld +++ b/defs/x86_64-linker.ld @@ -71,10 +71,10 @@ SECTIONS .bss : { - PROVIDE (___BSS_PM_START__ = .); + PROVIDE (___BSS_START__ = .); *(".bss") *(".bss.*") - PROVIDE (___BSS_PM_END__ = .); + PROVIDE (___BSS_END__ = .); } /* global page table for 64-bit long mode */ |
