summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/tools.c
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mageia.org>2012-04-07 23:48:18 +0000
committerPascal Terjan <pterjan@mageia.org>2012-04-07 23:48:18 +0000
commitb9a0e80f6d56c177544d93096f402bcea4b58466 (patch)
treef4a5d1050260a5dcfb52f21d89ecfdc6ed36dbc0 /mdk-stage1/tools.c
parentee4e039af0f3973daf348f9c10449a43bab8cd29 (diff)
downloaddrakx-backup-do-not-use-b9a0e80f6d56c177544d93096f402bcea4b58466.tar
drakx-backup-do-not-use-b9a0e80f6d56c177544d93096f402bcea4b58466.tar.gz
drakx-backup-do-not-use-b9a0e80f6d56c177544d93096f402bcea4b58466.tar.bz2
drakx-backup-do-not-use-b9a0e80f6d56c177544d93096f402bcea4b58466.tar.xz
drakx-backup-do-not-use-b9a0e80f6d56c177544d93096f402bcea4b58466.zip
Try mounting as btrfs too
Diffstat (limited to 'mdk-stage1/tools.c')
-rw-r--r--mdk-stage1/tools.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mdk-stage1/tools.c b/mdk-stage1/tools.c
index 08fab5559..a95fd79e8 100644
--- a/mdk-stage1/tools.c
+++ b/mdk-stage1/tools.c
@@ -273,6 +273,7 @@ int try_mount(char * dev, char * location)
snprintf(device_fullname, sizeof(device_fullname), "/dev/%s", dev);
if (my_mount(device_fullname, location, "ext4", 0) == -1 &&
+ my_mount(device_fullname, location, "btrfs", 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 &&