summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/tools.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdk-stage1/tools.c')
-rw-r--r--mdk-stage1/tools.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mdk-stage1/tools.c b/mdk-stage1/tools.c
index ff19063f1..9b05918b6 100644
--- a/mdk-stage1/tools.c
+++ b/mdk-stage1/tools.c
@@ -272,10 +272,11 @@ int try_mount(char * dev, char * location)
char device_fullname[50];
snprintf(device_fullname, sizeof(device_fullname), "/dev/%s", dev);
- if (my_mount(device_fullname, location, "ext2", 0) == -1 &&
+ if (my_mount(device_fullname, location, "ext4", 0) == -1 &&
my_mount(device_fullname, location, "vfat", 0) == -1 &&
my_mount(device_fullname, location, "ntfs", 0) == -1 &&
my_mount(device_fullname, location, "reiserfs", 0) == -1 &&
+ my_mount(device_fullname, location, "reiser4", 0) == -1 &&
my_mount(device_fullname, location, "jfs", 0) == -1 &&
my_mount(device_fullname, location, "xfs", 0) == -1 &&
my_mount(device_fullname, location, "iso9660", 0) == -1) {