diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-04-23 14:54:57 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-04-23 15:08:39 +0200 |
commit | 46242d22e7850039385fd26105442cd0b23e6152 (patch) | |
tree | 7cb940d424e09faf62287c07cebae3a9b786cc7e /perl-install | |
parent | 135fdcc5db5dbb7a6169a60f2ef845c6da5d3524 (diff) | |
download | drakx-46242d22e7850039385fd26105442cd0b23e6152.tar drakx-46242d22e7850039385fd26105442cd0b23e6152.tar.gz drakx-46242d22e7850039385fd26105442cd0b23e6152.tar.bz2 drakx-46242d22e7850039385fd26105442cd0b23e6152.tar.xz drakx-46242d22e7850039385fd26105442cd0b23e6152.zip |
it's now possible to set labels on exfat
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/fs/format.pm | 1 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 37d065d9b..4b664e281 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- diskdrake: + o it's now possible to set labels on exfat - fix services::running_systemd() - service_harddrake: recognise noxconf boot command line option (disables creation of xorg.conf, allowing X server to configure itself) diff --git a/perl-install/fs/format.pm b/perl-install/fs/format.pm index 29817d3d2..9ca2ec754 100644 --- a/perl-install/fs/format.pm +++ b/perl-install/fs/format.pm @@ -93,6 +93,7 @@ my %edit_LABEL = ( # jfs => [ 'jfsutils', 'jfs_tune', '-L' ], # hfs dos => [ 'mtools', 'mlabel', '-i' ], + exfat => [ 'exfatprogs', 'label.exfat', '-s' ], vfat => [ 'mtools', 'mlabel', '-i' ], swap => [ 'util-linux', 'swaplabel', '-L' ], ntfs => [ 'ntfs-3g', 'ntfslabel' ], diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 7e532e017..d43fd2306 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- partitioning: + o it's now possible to set labels on exfat - select only once needed fs tools Version 18.26 - 20 March 2020 |