]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
installer: Don't try to load the NTFS module
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 25 Nov 2025 15:54:56 +0000 (15:54 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 25 Nov 2025 15:54:56 +0000 (15:54 +0000)
For some reason, this could not be packaged and therefore was not
loaded. Since nobody has reported any problems, we can simply drop this
here.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/installer/dracut-module/module-setup.sh
src/installer/main.c

index 8a8de87d705d430f1b9b97493a8df96aae2d3e4c..c463e499c3daff0d73a398eb4363a73e9b2c6ccf 100755 (executable)
@@ -31,7 +31,7 @@ install() {
 
     # Filesystem support
     inst_multiple parted mkswap mke2fs mkfs.xfs mkfs.vfat mkfs.btrfs
-    instmods ext4 iso9660 vfat xfs ntfs3 btrfs
+    instmods ext4 iso9660 vfat xfs btrfs
 
     # Extraction
     inst_multiple tar gzip zstd
index f5f5672bfce7a51650259c9d2c0b91cd8beb37b0..f8800a657586afbd8cbea5be2e54aaec2caea415 100644 (file)
@@ -386,7 +386,6 @@ int main(int argc, char *argv[]) {
 
        // Load common modules
        mysystem(logfile, "/sbin/modprobe vfat");  // USB key
-       mysystem(logfile, "/sbin/modprobe ntfs3"); // USB key
        hw_stop_all_raid_arrays(logfile);
 
        if (!config.unattended) {