From: Michael Tremer Date: Tue, 25 Nov 2025 15:54:56 +0000 (+0000) Subject: installer: Don't try to load the NTFS module X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=10941ff49e536f00ecb9947a71df50e754ca3039;p=ipfire-2.x.git installer: Don't try to load the NTFS module 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 --- diff --git a/src/installer/dracut-module/module-setup.sh b/src/installer/dracut-module/module-setup.sh index 8a8de87d7..c463e499c 100755 --- a/src/installer/dracut-module/module-setup.sh +++ b/src/installer/dracut-module/module-setup.sh @@ -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 diff --git a/src/installer/main.c b/src/installer/main.c index f5f5672bf..f8800a657 100644 --- a/src/installer/main.c +++ b/src/installer/main.c @@ -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) {