aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/scripts
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-08-23 18:10:10 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-08-26 11:16:17 +0200
commit84aac7e26dae2b4364d2f1145d4b2b40f1e37585 (patch)
tree92fbe61467f3c06234acb654c7033d3f4b977d53 /arch/x86_64/scripts
parentb253637e5eed149f6e8ad7465cf97dda8bf8483a (diff)
downloadkernel-84aac7e26dae2b4364d2f1145d4b2b40f1e37585.tar.xz
kernel-84aac7e26dae2b4364d2f1145d4b2b40f1e37585.zip
kernel/fs: rework filesystem probing
Diffstat (limited to 'arch/x86_64/scripts')
-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 f621c3f1..e6ae3425 100644
--- a/arch/x86_64/scripts/kernel.ld
+++ b/arch/x86_64/scripts/kernel.ld
@@ -76,9 +76,9 @@ SECTIONS
. = ALIGN(8);
/* Filesystem driver factories */
- PROVIDE(__start_fs_types = .);
- KEEP(*(fs_types));
- PROVIDE(__stop_fs_types = .);
+ PROVIDE(__start_filesystem_drivers = .);
+ KEEP(*(filesystem_drivers));
+ PROVIDE(__stop_filesystem_drivers = .);
/* Kernel driver factories */
PROVIDE(__start_kernel_drivers = .);