summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/tools.c
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2005-12-02 18:01:00 +0000
committerOlivier Blin <oblin@mandriva.org>2005-12-02 18:01:00 +0000
commit81f7cbbdc28fe9bb5b291e4bb82aa96b00e27d12 (patch)
treef74ba21eb4122269ae53f371d0ed9e54d76242a2 /mdk-stage1/tools.c
parentce655000bdd2bb37c0213c97adae657a71c8d856 (diff)
downloaddrakx-81f7cbbdc28fe9bb5b291e4bb82aa96b00e27d12.tar
drakx-81f7cbbdc28fe9bb5b291e4bb82aa96b00e27d12.tar.gz
drakx-81f7cbbdc28fe9bb5b291e4bb82aa96b00e27d12.tar.bz2
drakx-81f7cbbdc28fe9bb5b291e4bb82aa96b00e27d12.tar.xz
drakx-81f7cbbdc28fe9bb5b291e4bb82aa96b00e27d12.zip
support jfs and xfs
Diffstat (limited to 'mdk-stage1/tools.c')
-rw-r--r--mdk-stage1/tools.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mdk-stage1/tools.c b/mdk-stage1/tools.c
index 55db7b158..36185bcfb 100644
--- a/mdk-stage1/tools.c
+++ b/mdk-stage1/tools.c
@@ -458,6 +458,8 @@ int try_mount(char * dev, char * location)
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, "jfs", 0) == -1 &&
+ my_mount(device_fullname, location, "xfs", 0) == -1 &&
my_mount(device_fullname, location, "iso9660", 0) == -1) {
return 1;
}