aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/x86_64/scripts/kernel.ld6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86_64/scripts/kernel.ld b/arch/x86_64/scripts/kernel.ld
index 388c46e..a1d8a65 100644
--- a/arch/x86_64/scripts/kernel.ld
+++ b/arch/x86_64/scripts/kernel.ld
@@ -74,9 +74,9 @@ SECTIONS
*(.rodata*)
. = ALIGN(8);
- PROVIDE(__vfs_type_descriptors_begin = .);
- KEEP(*(.vfs_type_descriptors*));
- PROVIDE(__vfs_type_descriptors_end = .);
+ PROVIDE(__start_vfs_type_descriptors = .);
+ KEEP(*(vfs_type_descriptors));
+ PROVIDE(__stop_vfs_type_descriptors = .);
} :kernel_rodata
.kernel_data ALIGN(4K) : AT (ADDR (.kernel_data) - TEACHOS_VMA)