summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/mount.c
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2004-06-10 08:27:35 +0000
committerOlivier Blin <oblin@mandriva.org>2004-06-10 08:27:35 +0000
commitf10a9e1aeb6115154dfc3986a56c3e4d11bc133a (patch)
tree8aa05793dcd5b3932dc4f088951c60cecb1a4391 /mdk-stage1/mount.c
parentb7b49ef7423519c15a92c2f7c0b333c99a2872bb (diff)
downloaddrakx-backup-do-not-use-f10a9e1aeb6115154dfc3986a56c3e4d11bc133a.tar
drakx-backup-do-not-use-f10a9e1aeb6115154dfc3986a56c3e4d11bc133a.tar.gz
drakx-backup-do-not-use-f10a9e1aeb6115154dfc3986a56c3e4d11bc133a.tar.bz2
drakx-backup-do-not-use-f10a9e1aeb6115154dfc3986a56c3e4d11bc133a.tar.xz
drakx-backup-do-not-use-f10a9e1aeb6115154dfc3986a56c3e4d11bc133a.zip
ntfs support in install from disk (on nplanel request, but to actually work, it would need the BOOT kernels to include the ntfs module)
Diffstat (limited to 'mdk-stage1/mount.c')
-rw-r--r--mdk-stage1/mount.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/mdk-stage1/mount.c b/mdk-stage1/mount.c
index ca2a083de..9d48f3665 100644
--- a/mdk-stage1/mount.c
+++ b/mdk-stage1/mount.c
@@ -196,6 +196,10 @@ int my_mount(char *dev, char *location, char *fs, int force_rw)
opts = "check=relaxed";
}
+ if (!strcmp(fs, "ntfs")) {
+ my_insmod("ntfs", ANY_DRIVER_TYPE, NULL, 1);
+ }
+
if (!strcmp(fs, "reiserfs"))
my_insmod("reiserfs", ANY_DRIVER_TYPE, NULL, 1);