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.133.124]) by mx.groups.io with SMTP id smtpd.web09.5475.1649331387689333087 for ; Thu, 07 Apr 2022 04:36:27 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=UljCe7KT; spf=pass (domain: redhat.com, ip: 170.10.133.124, mailfrom: kraxel@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1649331386; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=wfwJ6ipKNi2GM1GFSDhgGSIbyGlZLpMhmK4ix4bMg6g=; b=UljCe7KTxNmT1Ud8M78z9s91xz64C7j2aA4mYBf91YeuV1kCrulm2XAv7xIJufqB+8yDhp GcN4GYbE6BvVjTFTZe4lZ7sNhWsBDWqurnfERt/YLWruNQVPBR9OozmWmCVVzLmX/L7Uoc NZTt49Hco/LOELO3mkmyAPzQinjeYMk= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-224-EkBPAtOYNP6yFzEOvCcl-A-1; Thu, 07 Apr 2022 07:36:24 -0400 X-MC-Unique: EkBPAtOYNP6yFzEOvCcl-A-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 02D15296A61F; Thu, 7 Apr 2022 11:36:23 +0000 (UTC) Received: from sirius.home.kraxel.org (unknown [10.39.192.9]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 8E2EC407F765; Thu, 7 Apr 2022 11:36:22 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id 3D12A180060F; Thu, 7 Apr 2022 13:36:17 +0200 (CEST) From: "Gerd Hoffmann" To: devel@edk2.groups.io Cc: Erdem Aktas , Sami Mujawar , Julien Grall , James Bottomley , Anthony Perard , Min Xu , Gerd Hoffmann , Oliver Steffen , Ray Ni , Ard Biesheuvel , Jordan Justen , Jian J Wang , Tom Lendacky , Brijesh Singh , Jiewen Yao , Leif Lindholm , Liming Gao , Zhichao Gao , Pawel Polawski Subject: [PATCH 3/3] ArmVirtPkg: clear PcdConOut{Row,Column} Date: Thu, 7 Apr 2022 13:36:17 +0200 Message-Id: <20220407113617.2217351-4-kraxel@redhat.com> In-Reply-To: <20220407113617.2217351-1-kraxel@redhat.com> References: <20220407113617.2217351-1-kraxel@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.11.54.1 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=kraxel@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true ConSplitterDxe will pick the highest available resolution then, thereby making better use of the available display space. Signed-off-by: Gerd Hoffmann --- ArmVirtPkg/ArmVirtQemu.dsc | 2 ++ ArmVirtPkg/ArmVirtQemuKernel.dsc | 2 ++ 2 files changed, 4 insertions(+) diff --git a/ArmVirtPkg/ArmVirtQemu.dsc b/ArmVirtPkg/ArmVirtQemu.dsc index b2b0d304d335..aa0ce61630f7 100644 --- a/ArmVirtPkg/ArmVirtQemu.dsc +++ b/ArmVirtPkg/ArmVirtQemu.dsc @@ -259,6 +259,8 @@ [PcdsDynamicDefault.common] gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution|800 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution|640 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution|480 + gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow|0 + gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn|0 # # SMBIOS entry point version diff --git a/ArmVirtPkg/ArmVirtQemuKernel.dsc b/ArmVirtPkg/ArmVirtQemuKernel.dsc index 36343f347bab..7f7d15d6eee3 100644 --- a/ArmVirtPkg/ArmVirtQemuKernel.dsc +++ b/ArmVirtPkg/ArmVirtQemuKernel.dsc @@ -238,6 +238,8 @@ [PcdsDynamicDefault.common] gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution|800 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution|640 gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution|480 + gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow|0 + gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn|0 # # SMBIOS entry point version -- 2.35.1