[yast-commit] r64756 - in /branches/SuSE-Code-11-SP2-Branch/storage: package/ storage/src/include/ storage/src/modules/
![](https://seccdn.libravatar.org/avatar/bb376bca2c19e74eb46fa87c724f1105.jpg?s=120&d=mm&r=g)
Author: fehr Date: Wed Jul 6 18:32:07 2011 New Revision: 64756 URL: http://svn.opensuse.org/viewcvs/yast?rev=64756&view=rev Log: - changed ext4 to unsupported - removed all user visible references to ext4 from texts Modified: branches/SuSE-Code-11-SP2-Branch/storage/package/yast2-storage.changes branches/SuSE-Code-11-SP2-Branch/storage/storage/src/include/custom_part_check_generated.ycp branches/SuSE-Code-11-SP2-Branch/storage/storage/src/include/custom_part_dialogs.ycp branches/SuSE-Code-11-SP2-Branch/storage/storage/src/modules/FileSystems.ycp branches/SuSE-Code-11-SP2-Branch/storage/storage/src/modules/Partitions.ycp Modified: branches/SuSE-Code-11-SP2-Branch/storage/package/yast2-storage.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/storag... ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/storage/package/yast2-storage.changes (original) +++ branches/SuSE-Code-11-SP2-Branch/storage/package/yast2-storage.changes Wed Jul 6 18:32:07 2011 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Jul 6 16:57:07 CEST 2011 - fehr@suse.de + +- changed ext4 to unsupported +- removed all user visible references to ext4 from texts + +------------------------------------------------------------------- Fri Jul 01 09:54:28 CEST 2011 - aschnell@suse.de - fixed some typos (bnc #703246) Modified: branches/SuSE-Code-11-SP2-Branch/storage/storage/src/include/custom_part_check_generated.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/storag... ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/storage/storage/src/include/custom_part_check_generated.ycp (original) +++ branches/SuSE-Code-11-SP2-Branch/storage/storage/src/include/custom_part_check_generated.ycp Wed Jul 6 18:32:07 2011 @@ -218,7 +218,7 @@ // popup text string message = _("You tried to mount a fat partition to one of the following mount points: / /usr /home /opt /var. This will very likely -cause problems. Use a Linux file system, such as ext3 or ext4, for these mount +cause problems. Use a Linux file system, such as ext3, for these mount points. Really use this setup? @@ -233,7 +233,7 @@ // popup text string message = _("You tried to mount a fat partition 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. +system, such as ext3, for this mount point. Really use this setup? "); @@ -247,7 +247,7 @@ // 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. +system, such as ext3, for this mount point. Really use this setup? "); @@ -261,7 +261,7 @@ // 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. +such as ext3, for this mount point or an extra partition for /boot. Really use this setup? "); Modified: branches/SuSE-Code-11-SP2-Branch/storage/storage/src/include/custom_part_dialogs.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/storag... ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/storage/storage/src/include/custom_part_dialogs.ycp (original) +++ branches/SuSE-Code-11-SP2-Branch/storage/storage/src/include/custom_part_dialogs.ycp Wed Jul 6 18:32:07 2011 @@ -1009,12 +1009,12 @@ // Popup text txt = _(" The file system on the partition cannot be shrunk by YaST2. -Only fat, ext2, ext3, ext4, and reiser allow shrinking of a file system."); +Only fat, ext2, ext3 and reiser allow shrinking of a file system."); else // Popup text txt = _(" The file system on the logical volume cannot be shrunk by YaST2. -Only fat, ext2, ext3, ext4, and reiser allow shrinking of a file system."); +Only fat, ext2, ext3 and reiser allow shrinking of a file system."); if( ask ) { txt = txt + "\n"; @@ -1047,12 +1047,12 @@ // Popup text txt = _(" The file system on the selected partition cannot be extended by YaST2. -Only fat, ext2, ext3, ext4, xfs, and reiser allow extending a file system."); +Only fat, ext2, ext3, xfs, and reiser allow extending a file system."); else // Popup text txt = _(" The file system on the selected logical volume cannot be extended by YaST2. -Only fat, ext2, ext3, ext4, xfs, and reiser allow extending a file system."); +Only fat, ext2, ext3, xfs, and reiser allow extending a file system."); if( ask ) { txt = txt + "\n\n"; Modified: branches/SuSE-Code-11-SP2-Branch/storage/storage/src/modules/FileSystems.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/storag... ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/storage/storage/src/modules/FileSystems.ycp (original) +++ branches/SuSE-Code-11-SP2-Branch/storage/storage/src/modules/FileSystems.ycp Wed Jul 6 18:32:07 2011 @@ -61,7 +61,7 @@ // filesystems possible for root volume. used during scan for root volumes. - global const list<symbol> possible_root_fs = [ `ext2, `ext3, `ext4, `btrfs, `reiser, `xfs, `jfs ]; + global const list<symbol> possible_root_fs = [ `ext2, `ext3, `btrfs, `reiser, `xfs, `jfs ]; global list<string> system_m_points() { return [ "/", "/usr", "/var", "/opt", Partitions::BootMount() ]; } @@ -170,7 +170,7 @@ `xfs : true, `ext2 : true, `ext3 : true, - `ext4 : true, + `ext4 : false, `btrfs : true, `jfs : true, `vfat : true, Modified: branches/SuSE-Code-11-SP2-Branch/storage/storage/src/modules/Partitions.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/storag... ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/storage/storage/src/modules/Partitions.ycp (original) +++ branches/SuSE-Code-11-SP2-Branch/storage/storage/src/modules/Partitions.ycp Wed Jul 6 18:32:07 2011 @@ -121,7 +121,7 @@ { string tmp = (string) SCR::Read(.sysconfig.storage.DEFAULT_FS); if (tmp == nil || !contains([ "ext2", "ext3", "ext4", "reiser", "xfs" ], tolower(tmp))) - tmp = "ext4"; + tmp = "ext3"; default_fs = tosymbol(tolower(tmp)); } @@ -137,7 +137,7 @@ if( DefaultFs()!=`btrfs ) default_boot_fs = DefaultFs(); else - default_boot_fs = `ext4; + default_boot_fs = `ext3; if (EfiBoot()) { default_boot_fs = `vfat; -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
fehr@svn2.opensuse.org