[yast-commit] r41157 - /branches/SuSE-SLE-10-SP2-Branch/bootloader/src/modules/BootCommon.ycp
Author: odabrunz Date: Thu Sep 27 18:49:04 2007 New Revision: 41157 URL: http://svn.opensuse.org/viewcvs/yast?rev=41157&view=rev Log: - do not install bootloader in XEN paravirtualized DomU (#308451) Modified: branches/SuSE-SLE-10-SP2-Branch/bootloader/src/modules/BootCommon.ycp Modified: branches/SuSE-SLE-10-SP2-Branch/bootloader/src/modules/BootCommon.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP2-Branch/bootloader/src/modules/BootCommon.ycp?rev=41157&r1=41156&r2=41157&view=diff ============================================================================== --- branches/SuSE-SLE-10-SP2-Branch/bootloader/src/modules/BootCommon.ycp (original) +++ branches/SuSE-SLE-10-SP2-Branch/bootloader/src/modules/BootCommon.ycp Thu Sep 27 18:49:04 2007 @@ -916,9 +916,9 @@ if (loader_type == "s390") loader_type = "zipl"; y2milestone ("Bootloader detection returned %1", loader_type); - if (Arch::is_uml ()) + if (Arch::is_uml () || Arch::is_xenU()) { - y2milestone ("Not installing any bootloader for UML"); + y2milestone ("Not installing any bootloader for UML/Xen PV"); loader_type = "none"; } if (loader_type == "grub" && Storage::UseLilo()) -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
odabrunz@svn.opensuse.org