[yast-commit] r62887 - in /branches/SuSE-SLE-10-SP4-Branch/autoinstallation: VERSION package/autoyast2.changes src/modules/AutoinstClone.ycp
Author: ug Date: Wed Nov 24 17:45:54 2010 New Revision: 62887 URL: http://svn.opensuse.org/viewcvs/yast?rev=62887&view=rev Log: clone devices by-path on s390 (bnc#591603). 2.13.105 Modified: branches/SuSE-SLE-10-SP4-Branch/autoinstallation/VERSION branches/SuSE-SLE-10-SP4-Branch/autoinstallation/package/autoyast2.changes branches/SuSE-SLE-10-SP4-Branch/autoinstallation/src/modules/AutoinstClone.ycp Modified: branches/SuSE-SLE-10-SP4-Branch/autoinstallation/VERSION URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP4-Branch/autoinstallation/VERSION?rev=62887&r1=62886&r2=62887&view=diff ============================================================================== --- branches/SuSE-SLE-10-SP4-Branch/autoinstallation/VERSION (original) +++ branches/SuSE-SLE-10-SP4-Branch/autoinstallation/VERSION Wed Nov 24 17:45:54 2010 @@ -1 +1 @@ -2.13.104 +2.13.105 Modified: branches/SuSE-SLE-10-SP4-Branch/autoinstallation/package/autoyast2.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP4-Branch/autoinstallation/package/autoyast2.changes?rev=62887&r1=62886&r2=62887&view=diff ============================================================================== --- branches/SuSE-SLE-10-SP4-Branch/autoinstallation/package/autoyast2.changes (original) +++ branches/SuSE-SLE-10-SP4-Branch/autoinstallation/package/autoyast2.changes Wed Nov 24 17:45:54 2010 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Nov 24 17:45:02 CET 2010 - ug@suse.de + +- clone devices by-path on s390 (bnc#591603) +- 2.13.105 + +------------------------------------------------------------------- Tue Oct 26 10:48:11 CEST 2010 - ug@suse.de - reusing a lot of partitions can take ages to calculate Modified: branches/SuSE-SLE-10-SP4-Branch/autoinstallation/src/modules/AutoinstClone.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP4-Branch/autoinstallation/src/modules/AutoinstClone.ycp?rev=62887&r1=62886&r2=62887&view=diff ============================================================================== --- branches/SuSE-SLE-10-SP4-Branch/autoinstallation/src/modules/AutoinstClone.ycp (original) +++ branches/SuSE-SLE-10-SP4-Branch/autoinstallation/src/modules/AutoinstClone.ycp Wed Nov 24 17:45:54 2010 @@ -30,6 +30,7 @@ import "Storage"; import "Partitions"; import "Report"; + import "Arch"; include "autoinstall/xml.ycp"; @@ -237,7 +238,12 @@ map drive = $[]; drive["partitions"] = partitions; - drive["device"] = k; + if( Arch::s390() ) { + drive["device"] = "/dev/disk/by-path/" + v["udev_path"]:k; + y2milestone("s390 found. Setting device to by-path: %1", drive["device"]:""); + } else { + drive["device"] = k; + } if( v["type"]:`CT_UNKNOWN==`CT_LVM) { drive["pesize"] = sformat("%1M", v["pesize"]:1 / (1024*1024) ); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
ug@svn2.opensuse.org