From nobody Fri Oct 22 06:59:54 2021 X-Original-To: freebsd-xen@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 992DE180AE6C for ; Fri, 22 Oct 2021 07:00:01 +0000 (UTC) (envelope-from royger@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HbFbP43QLz3FV4; Fri, 22 Oct 2021 07:00:01 +0000 (UTC) (envelope-from royger@freebsd.org) Received: from localhost (unknown [93.176.190.2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: royger) by smtp.freebsd.org (Postfix) with ESMTPSA id 118A52E1FE; Fri, 22 Oct 2021 07:00:00 +0000 (UTC) (envelope-from royger@freebsd.org) Date: Fri, 22 Oct 2021 08:59:54 +0200 From: Roger Pau =?utf-8?B?TW9ubsOp?= To: "Lizbeth Mutterhunt, Ph.D" Cc: freebsd-xen@freebsd.org Subject: Re: another xen-kernel UEFI story Message-ID: References: <3839452.BRNeRiNLvY@freebsd_current> List-Id: Discussion List-Archive: https://lists.freebsd.org/archives/freebsd-xen List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-xen@freebsd.org X-BeenThere: freebsd-xen@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: X-ThisMailContainsUnwantedMimeParts: N On Thu, Oct 21, 2021 at 10:48:57PM +0200, Lizbeth Mutterhunt, Ph.D wrote: > /boot/loader.conf: > cuse_load="YES" > kernel_load="YES" > vfs.root.mountfrom="ufs:ada1p6" > #beastie_disable="YES" > hint.hwpstate_intel.0.disabled="1" > set vfs.root.mountfrom.options="rw" > if_bridge_load="YES" > debug.hwpstate_verbose="1" > if_tap_load="YES" > fusefs_load="YES" > xen_kernel="/boot/xen" > xen_cmdline="dom0_mem=4048M dom0_max_vcpus=4 dom0=pvh1 com1=115200,8n1 > guest_loglvl=all loglvl=all" > boot_multicons="YES" > boot_serial="YES" > comconsole_speed="9600" > console="comconsole,efi" *[not accepting any vidconsole]* > boot_verbose="YES" > vga=current > bitmap_name="/boot/splash" > net.link.bridge.inherit_mac=1 > snd_driver_load="YES" > kern.racct.enable=1 > compat.linuxkpi.i915_disable_power_well="0" > > Thanks, Roger. > > > So far, so good, what do you think? will we get this thing to work? Your xen_cmdline is slightly wrong, it should be: xen_cmdline="dom0_mem=4048M dom0_max_vcpus=4 dom0=pvh com1=9600,8n1 guest_loglvl=all loglvl=all" Note it's dom0=pvh, not pvh1. And the speed of the serial console needs to be adjusted to match the one you are using (9600), or you won't see any output. Also make sure the line is not split by your editor, or else it won't be parsed correctly. Regards, Roger.