From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by mx.groups.io with SMTP id smtpd.web11.113328.1669625965033480119 for ; Mon, 28 Nov 2022 00:59:25 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@kernel.org header.s=k20201202 header.b=s5KaWQ9V; spf=pass (domain: kernel.org, ip: 145.40.68.75, mailfrom: ardb@kernel.org) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id D118DB80C94 for ; Mon, 28 Nov 2022 08:59:22 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 898C1C433C1 for ; Mon, 28 Nov 2022 08:59:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1669625961; bh=U7M0DnroAAj0Cs6eji7S/pXq/FUZorpBfgmqp3Ve4xs=; h=References:In-Reply-To:From:Date:Subject:To:From; b=s5KaWQ9Vp4nhzMsIoXT3CnsasQwIYJ7PAwteXgzj4fUJ/P76zPmNoXcg/YR9Tnrgx 1n9KfNKWayAsYcA18XqmnJsHEDL5p1+60fBU5NQ3OxscJjpVg/ww+qSw6jbkEj2y3x 0AzbeVhE0ElDNoYA0+YrGSnAC2HhkBBMLwMFj49VLlSuPmS7UqCuXR4skrA++4vLof adh0ixIlmOUJ2IUbQ0mvjItSGbglVb3LsmqYyePF707oHsjc2HK4jc7H2O+N+UlN8X yX6IwbmCop6xpJgjCZXIrSgT50z0agQa1ZDHOIai3bilIRP7DoHGvKDF4BMrMhJvFb LrdsWjBJuxKfA== Received: by mail-lf1-f41.google.com with SMTP id b3so16307075lfv.2 for ; Mon, 28 Nov 2022 00:59:21 -0800 (PST) X-Gm-Message-State: ANoB5plpLk0ee35LP6sdTEsDAIWurhm6TssglHrTrgl9g1mU2whW/tDN hjyJFr+/zbJwhXLEaqNYXh/tNufbhgwJ/zwmKLs= X-Google-Smtp-Source: AA0mqf4hDy0vfAb5fSWs8vTdqe1QeK8Rsb3v+HXwAW1XXlfwuSKO1eHJzkqi8dwoTBhli/tef43f+w3FAOSes8gUpkI= X-Received: by 2002:ac2:488e:0:b0:4b4:cf32:e105 with SMTP id x14-20020ac2488e000000b004b4cf32e105mr14005189lfc.110.1669625959521; Mon, 28 Nov 2022 00:59:19 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: From: "Ard Biesheuvel" Date: Mon, 28 Nov 2022 09:59:07 +0100 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [edk2-devel] [PATCH v2 0/3] Enable support for terminal resize To: devel@edk2.groups.io, ppolawsk@redhat.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Mon, 28 Nov 2022 at 05:35, Pawe=C5=82 Po=C5=82awski wrote: > > This is re-submission of original patches written by Laszlo Ersek. > When mode will be changed in the EFI - xterm resolution will > change too. Tested with xterm, Gnome terminal and XFCE4 terminal. > I think I know why this is a good thing, but can you explain anyway? > Laszlo Ersek (3): > MdeModulePkg: TerminalDxe: set xterm resolution on mode change > OvmfPkg: take PcdResizeXterm from the QEMU command line > ArmVirtPkg: take PcdResizeXterm from the QEMU command line > Some of these arrived whitespace mangled in my inbox - can you please double check you git send-email config? > MdeModulePkg/MdeModulePkg.dec | = 4 ++ > ArmVirtPkg/ArmVirtQemu.dsc | = 7 +++- > OvmfPkg/AmdSev/AmdSevX64.dsc | = 1 + > OvmfPkg/CloudHv/CloudHvX64.dsc | = 1 + > OvmfPkg/IntelTdx/IntelTdxX64.dsc | = 1 + > OvmfPkg/Microvm/MicrovmX64.dsc | = 2 +- > OvmfPkg/OvmfPkgIa32.dsc | = 1 + > OvmfPkg/OvmfPkgIa32X64.dsc | = 1 + > OvmfPkg/OvmfPkgX64.dsc | = 1 + > ArmVirtPkg/Library/TerminalPcdProducerLib/TerminalPcdProducerLib.inf | 3= 3 ++++++++++++++++ > MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf | = 2 + > OvmfPkg/PlatformPei/PlatformPei.inf | = 1 + > ArmVirtPkg/Library/TerminalPcdProducerLib/TerminalPcdProducerLib.c | 4= 1 ++++++++++++++++++++ > MdeModulePkg/Universal/Console/TerminalDxe/TerminalConOut.c | 2= 9 ++++++++++++++ > OvmfPkg/PlatformPei/Platform.c | 1= 3 +++++++ > 15 files changed, 136 insertions(+), 2 deletions(-) > create mode 100644 ArmVirtPkg/Library/TerminalPcdProducerLib/TerminalPcd= ProducerLib.inf > create mode 100644 ArmVirtPkg/Library/TerminalPcdProducerLib/TerminalPcd= ProducerLib.c > > -- > 2.38.1 > > > >=20 > >