[yast-commit] r62902 - in /branches/SuSE-SLE-10-SP4-Branch/yast2: VERSION library/system/src/Kernel.ycp package/yast2.changes
Author: lslezak Date: Thu Nov 25 16:47:13 2010 New Revision: 62902 URL: http://svn.opensuse.org/viewcvs/yast?rev=62902&view=rev Log: - fix the previous problem (bnc#526461) also for 64-bit systems (x86_64) - 2.13.119 Modified: branches/SuSE-SLE-10-SP4-Branch/yast2/VERSION branches/SuSE-SLE-10-SP4-Branch/yast2/library/system/src/Kernel.ycp branches/SuSE-SLE-10-SP4-Branch/yast2/package/yast2.changes Modified: branches/SuSE-SLE-10-SP4-Branch/yast2/VERSION URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP4-Branch/yast2/VERSION?rev=62902&r1=62901&r2=62902&view=diff ============================================================================== --- branches/SuSE-SLE-10-SP4-Branch/yast2/VERSION (original) +++ branches/SuSE-SLE-10-SP4-Branch/yast2/VERSION Thu Nov 25 16:47:13 2010 @@ -1 +1 @@ -2.13.118 +2.13.119 Modified: branches/SuSE-SLE-10-SP4-Branch/yast2/library/system/src/Kernel.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP4-Branch/yast2/library/system/src/Kernel.ycp?rev=62902&r1=62901&r2=62902&view=diff ============================================================================== --- branches/SuSE-SLE-10-SP4-Branch/yast2/library/system/src/Kernel.ycp (original) +++ branches/SuSE-SLE-10-SP4-Branch/yast2/library/system/src/Kernel.ycp Thu Nov 25 16:47:13 2010 @@ -427,8 +427,16 @@ { if (xen) { - y2milestone("Adding Xen PV drivers: xen-kmp-default"); - kernel_packages = add(kernel_packages, "xen-kmp-default"); + if (contains(kernel_packages, "kernel-smp")) + { + y2milestone("Adding Xen PV drivers: xen-kmp-smp"); + kernel_packages = add(kernel_packages, "xen-kmp-smp"); + } + else + { + y2milestone("Adding Xen PV drivers: xen-kmp-default"); + kernel_packages = add(kernel_packages, "xen-kmp-default"); + } } } else if (Arch::alpha ()) Modified: branches/SuSE-SLE-10-SP4-Branch/yast2/package/yast2.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP4-Branch/yast2/package/yast2.changes?rev=62902&r1=62901&r2=62902&view=diff ============================================================================== --- branches/SuSE-SLE-10-SP4-Branch/yast2/package/yast2.changes (original) +++ branches/SuSE-SLE-10-SP4-Branch/yast2/package/yast2.changes Thu Nov 25 16:47:13 2010 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Thu Nov 25 15:43:17 UTC 2010 - lslezak@suse.cz + +- fix the previous problem (bnc#526461) also for 64-bit + systems (x86_64) +- 2.13.119 + +------------------------------------------------------------------- Wed Oct 13 07:52:33 UTC 2010 - lslezak@suse.cz - install xen-kmp-smp (instead of xen-kmp-default) when kernel-smp -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
lslezak@svn2.opensuse.org