From 8ffb546708149e582a2fb92efbff948de88ed800 Mon Sep 17 00:00:00 2001 From: Thomas Backlund Date: Mon, 6 Apr 2015 19:58:47 +0259 Subject: allow btrfs for / without separate /boot with grub2 (mga#15374) --- perl-install/NEWS | 2 ++ perl-install/bootloader.pm | 2 +- perl-install/install/NEWS | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index dd331c57d..7cfc637c5 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- bootloader: + o allow btrfs for / without separate /boot with grub2 (mga#15374) - partitioning wizard: o do not offer to select RAID as it result in a crash (mga#5800) diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index afd4d78ec..914217add 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -2055,7 +2055,7 @@ sub install { if (my $part = fs::get::device2part($bootloader->{boot}, [ fs::get::fstab($all_hds) ])) { die N("You cannot install the bootloader on a %s partition\n", $part->{fs_type}) - if member($part->{fs_type}, qw(btrfs xfs)); + if member($part->{fs_type}, qw(xfs)); } $bootloader->{keytable} = keytable($bootloader->{keytable}); action($bootloader, 'install', $all_hds); diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 28019289f..2a18978c6 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,6 +1,7 @@ - bootloader: o add 'noiswmd' to kernel command line to manage isw_ bios fakeraids with dmraid for now (instead of mdadm) + o allow btrfs for / without separate /boot with grub2 (mga#15374) - partitioning wizard: o do not offer to select RAID as it result in a crash (mga#5800) -- cgit v1.2.1 From cf10dd9c1a2711173c6942ac529821a98c496871 Mon Sep 17 00:00:00 2001 From: Marja van Waes Date: Mon, 6 Apr 2015 20:04:58 +0200 Subject: update Dutch translation --- perl-install/standalone/po/nl.po | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'perl-install') diff --git a/perl-install/standalone/po/nl.po b/perl-install/standalone/po/nl.po index d8f194c3b..9777fa0b9 100644 --- a/perl-install/standalone/po/nl.po +++ b/perl-install/standalone/po/nl.po @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: libDrakX-standalone\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-04-05 21:35+0200\n" -"PO-Revision-Date: 2015-01-11 16:12+0100\n" +"PO-Revision-Date: 2015-04-06 20:02+0200\n" "Last-Translator: Marja van Waes \n" "Language-Team: Nederlands \n" "Language: nl\n" @@ -1615,9 +1615,9 @@ msgid "Formatting encrypted home partition" msgstr "Formatteren van versleutelde home-partitie" #: finish-install:264 -#, fuzzy, c-format +#, c-format msgid "Finishing install" -msgstr "Installatieprogramma voor lettertypen" +msgstr "Installatie voltooien" #: finish-install:264 #, c-format @@ -1625,6 +1625,8 @@ msgid "" "This system will be rebooted\n" "for the changes to take effect!" msgstr "" +"Dit systeem zal herstarten\n" +"om de veranderingen door te voeren!" #: harddrake2:30 #, c-format -- cgit v1.2.1 From 978fcd163529573487bd3a0ab607821ee9cf66a6 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 6 Apr 2015 22:30:15 +0200 Subject: simplify after latest commit --- perl-install/bootloader.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 914217add..425036ba5 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -2055,7 +2055,7 @@ sub install { if (my $part = fs::get::device2part($bootloader->{boot}, [ fs::get::fstab($all_hds) ])) { die N("You cannot install the bootloader on a %s partition\n", $part->{fs_type}) - if member($part->{fs_type}, qw(xfs)); + if $part->{fs_type} eq 'xfs'; } $bootloader->{keytable} = keytable($bootloader->{keytable}); action($bootloader, 'install', $all_hds); -- cgit v1.2.1