From owner-freebsd-xen@FreeBSD.ORG Fri Aug 31 01:36:52 2012 Return-Path: Delivered-To: freebsd-xen@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2EEFC106566B for ; Fri, 31 Aug 2012 01:36:52 +0000 (UTC) (envelope-from arvind.viswanathan@gmail.com) Received: from mail-lpp01m010-f54.google.com (mail-lpp01m010-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id AAF118FC16 for ; Fri, 31 Aug 2012 01:36:51 +0000 (UTC) Received: by lage12 with SMTP id e12so2417072lag.13 for ; Thu, 30 Aug 2012 18:36:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=ZPz/SEihROIi8WH2PdT4jUVSfq+k2FuxqwgiPKQZzqU=; b=C5/+wHkmfTBFgDe3Cyn9qOKoOD8SxVSKDNdmZlmrKHdJNBobb4lm5KHr1uSZlh16jo dbH6nbdZ4x4msbGSiq//Opj5WfhQ2O5Krti3uppjQ5OdtJ266vJDV3FKZnS7OaKwPy0z bRwAsYkvASv9x6qarBk2v9VULC0lJy+ZKRMO3/fl/3ID2OblaOYDjF2bO+2H5t5UVjrb 3WdqAkhWl+sWXJbJMpQ3x481Z3uhUjOEsXQeAJuzxHzlRBabTrAE4tOjs53iqEI6NCdl 7TJ6fNU0Q4uXJ+nMkZp9JIrfDcg3sOcW0Yt2yxj6Su/wbvv65ohR0eJqx9wD28Sbqqrw 0xiA== MIME-Version: 1.0 Received: by 10.112.27.197 with SMTP id v5mr2015384lbg.81.1346377005128; Thu, 30 Aug 2012 18:36:45 -0700 (PDT) Received: by 10.112.24.234 with HTTP; Thu, 30 Aug 2012 18:36:45 -0700 (PDT) Date: Thu, 30 Aug 2012 18:36:45 -0700 Message-ID: From: arvind viswanathan To: freebsd-xen@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: XENHVM related Q X-BeenThere: freebsd-xen@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussion of the freebsd port to xen - implementation and usage List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Aug 2012 01:36:52 -0000 Hi, I ported Xen related code changes from FreeBSD9.0 to my OS based on FreeBSD, in order to make it run as a XENHVM. I dint see any panic and got to the cmd prompt. However, during bootup, realtek drivers also get initialized. Not sure how to prevent this from happening. can try disabling it in conf file, but in Freebsd 9 its not disabled and I dont see realtek devices getting attached either. Any idea why this might happen. Here is my config . description="None" memory=2048 maxmem=2048 vcpus=1 on_poweroff="destroy" on_reboot="restart" on_crash="destroy" localtime=0 keymap="en-us" builder="hvm" device_model="/usr/lib/xen/bin/qemu-dm" kernel="/usr/lib/xen/boot/hvmloader" boot="c" disk=[ 'file:/home/test/xen/images/xxx/disk0.raw,hda,w', ] #vif=[ 'bridge=br0,model=e1000', 'bridge=br1,model=e1000', ] vif=[ 'bridge=br0', 'bridge=br1', ] xen_platform_pci=1 stdvga=0 vnc=1 vncunused=1 extid=0 apic=1 acpi=1 pae=1 Thanks Arvind