Mailinglist Archive: yast-commit (883 mails)
| < Previous | Next > |
[yast-commit] r58140 - /trunk/storage/storage/src/modules/Storage.ycp
- From: aschnell@xxxxxxxxxxxxxxxx
- Date: Thu, 23 Jul 2009 12:22:07 -0000
- Message-id: <E1MTxJH-0006iY-3P@xxxxxxxxxxxxxxxx>
Author: aschnell
Date: Thu Jul 23 14:22:06 2009
New Revision: 58140
URL: http://svn.opensuse.org/viewcvs/yast?rev=58140&view=rev
Log:
- added btrfs as possible fs for home and linux partitions
Modified:
trunk/storage/storage/src/modules/Storage.ycp
Modified: trunk/storage/storage/src/modules/Storage.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/storage/storage/src/modules/Storage.ycp?rev=58140&r1=58139&r2=58140&view=diff
==============================================================================
--- trunk/storage/storage/src/modules/Storage.ycp (original)
+++ trunk/storage/storage/src/modules/Storage.ycp Thu Jul 23 14:22:06 2009
@@ -3532,7 +3532,7 @@
y2milestone( "DetectHomeFs p:%1", p );
map ret = $[];
boolean home = false;
- list poss_fs = [ `ext2, `ext3, `ext4, `reiser, `xfs, `jfs ];
+ list poss_fs = [ `ext2, `ext3, `ext4, `btrfs, `reiser, `xfs, `jfs ];
if( !p["created"]:false && contains( poss_fs, p["detected_fs"]:`unknown )
&&
size(p["device"]:"")>0 )
{
@@ -4072,7 +4072,7 @@
list<map> l = (list<map>) filter( map p, disk["partitions"]:[],
``(!p["format"]:false &&
Partitions::IsLinuxPartition(p["fsid"]:0)) );
- l = filter(map p, l, ``(contains( [`xfs, `ext2, `ext3, `ext4, `jfs,
`reiser],
+ l = filter(map p, l, ``(contains( [`xfs, `ext2, `ext3, `ext4,
`btrfs, `jfs, `reiser],
p["used_fs"]:`unknown)));
l = filter(map p, l,
``(!FileSystems::IsSystemMp( p["mount"]:"", false )));
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Thu Jul 23 14:22:06 2009
New Revision: 58140
URL: http://svn.opensuse.org/viewcvs/yast?rev=58140&view=rev
Log:
- added btrfs as possible fs for home and linux partitions
Modified:
trunk/storage/storage/src/modules/Storage.ycp
Modified: trunk/storage/storage/src/modules/Storage.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/storage/storage/src/modules/Storage.ycp?rev=58140&r1=58139&r2=58140&view=diff
==============================================================================
--- trunk/storage/storage/src/modules/Storage.ycp (original)
+++ trunk/storage/storage/src/modules/Storage.ycp Thu Jul 23 14:22:06 2009
@@ -3532,7 +3532,7 @@
y2milestone( "DetectHomeFs p:%1", p );
map ret = $[];
boolean home = false;
- list poss_fs = [ `ext2, `ext3, `ext4, `reiser, `xfs, `jfs ];
+ list poss_fs = [ `ext2, `ext3, `ext4, `btrfs, `reiser, `xfs, `jfs ];
if( !p["created"]:false && contains( poss_fs, p["detected_fs"]:`unknown )
&&
size(p["device"]:"")>0 )
{
@@ -4072,7 +4072,7 @@
list<map> l = (list<map>) filter( map p, disk["partitions"]:[],
``(!p["format"]:false &&
Partitions::IsLinuxPartition(p["fsid"]:0)) );
- l = filter(map p, l, ``(contains( [`xfs, `ext2, `ext3, `ext4, `jfs,
`reiser],
+ l = filter(map p, l, ``(contains( [`xfs, `ext2, `ext3, `ext4,
`btrfs, `jfs, `reiser],
p["used_fs"]:`unknown)));
l = filter(map p, l,
``(!FileSystems::IsSystemMp( p["mount"]:"", false )));
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |