summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2020-03-18 17:27:10 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2020-03-20 17:13:50 +0100
commitb152ff51997fd8df4ebd44bfdbe2e08ff98a9b3a (patch)
treea029ff151200f946a29d058434e1c1d260f99836 /perl-install/diskdrake
parent67da4ef5c862576e046ab4d813de17628adfa6c4 (diff)
downloaddrakx-b152ff51997fd8df4ebd44bfdbe2e08ff98a9b3a.tar
drakx-b152ff51997fd8df4ebd44bfdbe2e08ff98a9b3a.tar.gz
drakx-b152ff51997fd8df4ebd44bfdbe2e08ff98a9b3a.tar.bz2
drakx-b152ff51997fd8df4ebd44bfdbe2e08ff98a9b3a.tar.xz
drakx-b152ff51997fd8df4ebd44bfdbe2e08ff98a9b3a.zip
add minimal support for exFAT
colorize it the same way as FAT or NTFS
Diffstat (limited to 'perl-install/diskdrake')
-rw-r--r--perl-install/diskdrake/hd_gtk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm
index 601ed95b0..f61801d53 100644
--- a/perl-install/diskdrake/hd_gtk.pm
+++ b/perl-install/diskdrake/hd_gtk.pm
@@ -391,7 +391,7 @@ sub create_buttons4partitions {
if (isLUKS($entry) || isRawLUKS($entry)) {
$w->set_image(gtknew("Image", file => "security-strong"));
}
- my @colorized_fs_types = qw(ext3 ext4 xfs swap vfat ntfs ntfs-3g);
+ my @colorized_fs_types = qw(ext3 ext4 xfs swap vfat ntfs ntfs-3g exfat);
$w->set_name("PART_" . (isEmpty($entry) ? 'empty' :
$entry->{fs_type} && member($entry->{fs_type}, @colorized_fs_types) ? $entry->{fs_type} :
'other'));