From 1663f7f5147fdc7b3bc3754334f766d6b032fc51 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Mon, 16 Feb 2009 10:34:00 +0000 Subject: allow installing from ext3/ext4/reiser4 --- mdk-stage1/tools.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mdk-stage1/tools.c') 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) { -- cgit v1.2.1