[yast-commit] r62379 - in /trunk/storage: package/yast2-storage.changes storage/src/modules/FileSystems.ycp
Author: fehr Date: Tue Aug 10 17:07:54 2010 New Revision: 62379 URL: http://svn.opensuse.org/viewcvs/yast?rev=62379&view=rev Log: supressing journal makes sense only for ext4 since ext3 without journal is just ext2 Modified: trunk/storage/package/yast2-storage.changes trunk/storage/storage/src/modules/FileSystems.ycp Modified: trunk/storage/package/yast2-storage.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/package/yast2-storage.cha... ============================================================================== --- trunk/storage/package/yast2-storage.changes (original) +++ trunk/storage/package/yast2-storage.changes Tue Aug 10 17:07:54 2010 @@ -2,7 +2,7 @@ Mon Aug 9 13:38:45 CEST 2010 - fehr@suse.de - make mkfs option "dir_index" work as expected again -- add option to supress journal to mkfs options for ext3 and ext4 +- add option to supress journal to mkfs options for ext4 (bnc#629363) ------------------------------------------------------------------- Modified: trunk/storage/storage/src/modules/FileSystems.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/storage/src/modules/FileS... ============================================================================== --- trunk/storage/storage/src/modules/FileSystems.ycp (original) +++ trunk/storage/storage/src/modules/FileSystems.ycp Tue Aug 10 17:07:54 2010 @@ -593,7 +593,10 @@ // help text, richtext format `help_text : _("<p><b>Directory Index:</b> Enables use of hashed b-trees to speed up lookups in large directories.</p>\n") - ], + ] + ]; + +list< map<symbol, any> > ext4_only_options = [ $[ // label text `widget : `CheckBox(`id("no_journal"), `opt(`hstretch), _("&No Journal")), @@ -606,10 +609,11 @@ Suppressed use of journaling on filesystem. Only activate this when you really know what you are doing.</p>\n") ] - ]; + ]; list< map<symbol, any> > ext3_options = (list< map<symbol, any> >)merge( ext2_options, ext3_only_options ); list< map<symbol, any> > ext4_options = (list< map<symbol, any> >)merge( ext2_options, ext3_only_options ); + ext4_options = (list< map<symbol, any> >)merge( ext4_options, ext4_only_options ); list< map<symbol, any> > ext2_fst_options = [ ]; list< map<symbol, any> > ext3_fst_options = [ ]; -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
fehr@svn.opensuse.org