From mboxrd@z Thu Jan 1 00:00:00 1970 From: Avi Kivity Subject: Re: Solaris 10 doesn't work under KVM Date: Mon, 29 Jan 2007 13:49:06 +0200 Message-ID: <45BDDF32.3010607@qumranet.com> References: <20070128144052.GA5069@waba> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------030501020607090107070909" Cc: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org To: Waba Return-path: In-Reply-To: <20070128144052.GA5069@waba> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: kvm-devel-bounces-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org Errors-To: kvm-devel-bounces-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org List-Id: kvm.vger.kernel.org This is a multi-part message in MIME format. --------------030501020607090107070909 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Waba wrote: > Hello, > > I tried to install Solaris 10 under KVM, without success, so Avi told me > to post the details here. My CPU is an AMD X2, and I am using KVM trunk > on a 2.6.19.2, started with the following command-line: > > kvm -hda solaris.qcow -cdrom sol-10-u3-ga-x86-dvd.iso -boot d -m 512 -no-acpi > > (I tried with and without -no-acpi). > > If I follow the normal installation path, I soon get messages like: > > svc.startd[7]: svc:/milestone/single-user:default: Method "/sbin/rcS start" failed due to signal ILL > > The attached patch should fix it. -- error compiling committee.c: too many arguments to function --------------030501020607090107070909 Content-Type: text/x-patch; name="kvm-svm-cr0-wp.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="kvm-svm-cr0-wp.patch" Index: svm.c =================================================================== --- svm.c (revision 4344) +++ svm.c (working copy) @@ -727,7 +727,7 @@ } #endif vcpu->svm->cr0 = cr0; - vcpu->svm->vmcb->save.cr0 = cr0 | CR0_PG_MASK; + vcpu->svm->vmcb->save.cr0 = cr0 | CR0_PG_MASK | CR0_WP_MASK; vcpu->cr0 = cr0; } --------------030501020607090107070909 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV --------------030501020607090107070909 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ kvm-devel mailing list kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org https://lists.sourceforge.net/lists/listinfo/kvm-devel --------------030501020607090107070909--