[yast-commit] r59893 - in /trunk/storage: package/yast2-storage.changes storage/src/include/custom_part_check_generated.ycp
Author: aschnell Date: Wed Dec 2 15:25:40 2009 New Revision: 59893 URL: http://svn.opensuse.org/viewcvs/yast?rev=59893&view=rev Log: - added warning for btrfs uses for booting Modified: trunk/storage/package/yast2-storage.changes trunk/storage/storage/src/include/custom_part_check_generated.ycp Modified: trunk/storage/package/yast2-storage.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/package/yast2-storage.changes?rev=59893&r1=59892&r2=59893&view=diff ============================================================================== --- trunk/storage/package/yast2-storage.changes (original) +++ trunk/storage/package/yast2-storage.changes Wed Dec 2 15:25:40 2009 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Dec 02 15:22:20 CET 2009 - aschnell@suse.de + +- added extra warning for btrfs used as /boot or as / without + separate /boot (bnc #544646) + +------------------------------------------------------------------- Fri Nov 27 17:08:15 CET 2009 - aschnell@suse.de - enable boot.crypt-early along with boot.crypto (bnc #558888) Modified: trunk/storage/storage/src/include/custom_part_check_generated.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/storage/src/include/custom_part_check_generated.ycp?rev=59893&r1=59892&r2=59893&view=diff ============================================================================== --- trunk/storage/storage/src/include/custom_part_check_generated.ycp (original) +++ trunk/storage/storage/src/include/custom_part_check_generated.ycp Wed Dec 2 15:25:40 2009 @@ -242,6 +242,34 @@ ok = false; } + if ((boot_found && contains([ `btrfs ], boot_fs)) || show_all_popups) + { + // popup text + string message = _("You have mounted a partition with btrfs to the +mount point /boot. This will very likely cause problems. Use a Linux file +system, such as ext3 or ext4, for this mount point. + +Really use this setup? +"); + + if (!Popup::YesNo(message)) + ok = false; + } + + if (!boot_found && contains([ `btrfs ], root_fs) || show_all_popups) + { + // popup text + string message = _("You have mounted a partition with btrfs to the +mount point /. This will very likely cause problems. Use a Linux file system, +such as ext3 or ext4, for this mount point or an extra partition for /boot. + +Really use this setup? +"); + + if (!Popup::YesNo(message)) + ok = false; + } + if( (boot_found) && installation || show_all_popups ) { if( boot_end >= Partitions::BootCyl() || show_all_popups ) -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
aschnell@svn.opensuse.org