From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mx.groups.io with SMTP id smtpd.web08.5282.1663921042501394724 for ; Fri, 23 Sep 2022 01:17:22 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=i57yqXTJ; spf=pass (domain: redhat.com, ip: 170.10.129.124, mailfrom: kraxel@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1663921041; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=Wxi02CEvbmT0OXDP8DPOy3GEB+sZOcfOUaTAmplM46A=; b=i57yqXTJPN92YfM808paA5gthX8e70XjHDo9oA7TPz5hJGs/EcbRtt4hvPfqpxla3xLEXS pRs0wKeMiWP5Maj7rWJiJ01XIGMKdsHM/1OrYUYUUiv7yHzOXv3bkycLQlvgyL/axHDpW2 FlK/fvbVqwjk0xNhvT82rjIgsvtS2+A= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-427-B4nWlLkxN_qpUSGxoichaQ-1; Fri, 23 Sep 2022 04:17:15 -0400 X-MC-Unique: B4nWlLkxN_qpUSGxoichaQ-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 3CBF785A583; Fri, 23 Sep 2022 08:17:15 +0000 (UTC) Received: from sirius.home.kraxel.org (unknown [10.39.192.24]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 0DCDD2166B2E; Fri, 23 Sep 2022 08:17:12 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id A726518000A3; Fri, 23 Sep 2022 10:17:10 +0200 (CEST) Date: Fri, 23 Sep 2022 10:17:10 +0200 From: "Gerd Hoffmann" To: devel@edk2.groups.io, aladyshev22@gmail.com Cc: "Kinney, Michael D" , "Gao, Liming" , "Wang, Jian J" , "Ni, Ray" Subject: Re: [edk2-devel] [PATCH] MdeModulePkg/TerminalDxe: add modes Message-ID: <20220923081710.hda7x6w7gwohskbu@sirius.home.kraxel.org> References: <20220919085633.27707-1-aladyshev22@gmail.com> <007e01d8cd59$0ff88bc0$2fe9a340$@byosoft.com.cn> MIME-Version: 1.0 In-Reply-To: X-Scanned-By: MIMEDefang 3.1 on 10.11.54.6 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Sep 22, 2022 at 07:49:39PM +0300, Konstantin Aladyshev wrote: > Yes, I use QEMU to run OVMF in Linux (actually in WSL). Here is a > command that I use for launch: > ``` > qemu-system-x86_64 \ > -drive if=pflash,format=raw,file=Build/OvmfX64/RELEASE_GCC5/FV/OVMF.fd \ > -drive format=raw,file=fat:rw:~/UEFI_disk > -vnc :1 > ``` > So nothing explicit about the UARTs. qemu adds a bunch of default devices for convenience. vga, nic, cdrom, serial port. You can use '-nodefaults' to turn off all of them or '-serial none' to turn off the serial port only. take care, Gerd