summaryrefslogtreecommitdiff
path: root/backend/modules/partitions
diff options
context:
space:
mode:
authorJoerg Schirottke <master@kanotix.com>2014-06-25 00:44:28 +0200
committerHolger Paradies <retabell@gmx.de>2014-09-10 23:11:25 +0200
commit703ab2a890d3b7ae3122c0fd04ef4777237f7bbd (patch)
treeed72b9dcaf0e3b8a1df32440fde797026a695fe8 /backend/modules/partitions
parentc2363714af5fb68650451f8e6d55b76a20950419 (diff)
downloadacritoxinstaller-703ab2a890d3b7ae3122c0fd04ef4777237f7bbd.zip
acritoxinstaller-703ab2a890d3b7ae3122c0fd04ef4777237f7bbd.tar.gz
btrfs fixes and lzo support
Diffstat (limited to 'backend/modules/partitions')
-rw-r--r--backend/modules/partitions4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/modules/partitions b/backend/modules/partitions
index eac5e6f..4ea9b55 100644
--- a/backend/modules/partitions
+++ b/backend/modules/partitions
@@ -299,7 +299,7 @@ function send_possible_root_partitions()
function send_possible_root_filesystems()
{
send data possible_root_filesystems
- for fs in ext4 ext3 reiserfs btrfs xfs jfs; do echo $fs; done
+ for fs in ext4 ext3 reiserfs btrfs btrfs-lzo xfs jfs; do echo $fs; done
}
# Synopsis: get_filesystem <device>
@@ -332,7 +332,7 @@ function get_filesystem_type()
filesystem="$(get_filesystem "$1")"
fi
case $filesystem in
- ext4|ext3|ext2|reiserfs|xfs|minix|hfs|efs|reiser4|jfs|btrfs) echo Linux;;
+ ext4|ext3|ext2|reiserfs|xfs|minix|hfs|efs|reiser4|jfs|btrfs*) echo Linux;;
iso9660) echo CD-ROM;;
vfat) echo DOS;;
ntfs) echo Windows;;