diff options
author | Thierry Vignaud <tv@mageia.org> | 2013-04-07 08:57:45 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2013-04-07 08:57:45 +0000 |
commit | 58bbc1fb86132ac8ca16bef41fb0e8c91960846f (patch) | |
tree | a6b2c6193e4b50cd953e046c8df5b3bfb7abfad2 | |
parent | 45543ae209f6226945c74fa9a9704204893e9971 (diff) | |
download | drakx-58bbc1fb86132ac8ca16bef41fb0e8c91960846f.tar drakx-58bbc1fb86132ac8ca16bef41fb0e8c91960846f.tar.gz drakx-58bbc1fb86132ac8ca16bef41fb0e8c91960846f.tar.bz2 drakx-58bbc1fb86132ac8ca16bef41fb0e8c91960846f.tar.xz drakx-58bbc1fb86132ac8ca16bef41fb0e8c91960846f.zip |
allow to choose btrfs in normal mode (mga#65)
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/fs/type.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 3 |
3 files changed, 7 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index a61b74c2f..9756020f2 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- diskdrake: + o allow to choose btrfs in normal mode (mga#65) + Version 15.36 - 6 April 2013 - library (for draklive-install): diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index ff0355dd0..4cbf0c496 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -20,6 +20,7 @@ my (%type_name2pt_type, %type_name2fs_type, %fs_type2pt_type, %pt_type2fs_type, my @list_types = ( important => [ 0x82 => 'swap', 'Linux swap', + 0x83 => 'btrfs', 'Journalised FS: Btrfs', 0x83 => 'ext2', 'Linux native', 0x83 => 'ext3', 'Journalised FS: ext3', 0x83 => 'ext4', 'Journalised FS: ext4', @@ -120,7 +121,6 @@ if_(arch() !~ /ppc/, 0x80 => '', 'Old Minix', 0x81 => '', 'Minix / old Linux', 0x83 => 'nilfs2', 'Journalised FS: NILFS2', - 0x83 => 'btrfs', 'Journalised FS: Btrfs', 0x84 => '', 'OS/2 hidden C: drive', 0x86 => '', 'NTFS volume set (0x86)', 0x87 => '', 'NTFS volume set (0x87)', diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 1d25b878b..65f540b97 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,6 @@ +- partitionning: + o allow to choose btrfs in normal mode (mga#65) + Version 15.36 - 6 April 2013 - bind mount /run in chroot, thus fixing dracut runs (Dave Hodgins, mga#9213) |