aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-06-02 10:54:17 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-06-02 16:30:20 +0200
commitd2d4fa3330a09f421b8658c077166cc493532b9e (patch)
tree985c1cc9564e98d3d640008d95680cd2b8894310 /arch/x86_64
parentad2319188269331f4873adbeb44380d63e8e83c5 (diff)
downloadkernel-d2d4fa3330a09f421b8658c077166cc493532b9e.tar.xz
kernel-d2d4fa3330a09f421b8658c077166cc493532b9e.zip
kernel/vfs: extract fs type registry
Diffstat (limited to 'arch/x86_64')
-rw-r--r--arch/x86_64/scripts/kernel.ld7
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/x86_64/scripts/kernel.ld b/arch/x86_64/scripts/kernel.ld
index a1d8a65..dbb0f8f 100644
--- a/arch/x86_64/scripts/kernel.ld
+++ b/arch/x86_64/scripts/kernel.ld
@@ -74,9 +74,10 @@ SECTIONS
*(.rodata*)
. = ALIGN(8);
- PROVIDE(__start_vfs_type_descriptors = .);
- KEEP(*(vfs_type_descriptors));
- PROVIDE(__stop_vfs_type_descriptors = .);
+
+ PROVIDE(__start_fs_types = .);
+ KEEP(*(fs_types));
+ PROVIDE(__stop_fs_types = .);
} :kernel_rodata
.kernel_data ALIGN(4K) : AT (ADDR (.kernel_data) - TEACHOS_VMA)