Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 May 2023 08:22:12 -0400
From:      Oleg Lelchuk <oleglelchuk@gmail.com>
To:        Warner Losh <imp@bsdimp.com>
Cc:        Ed Maste <emaste@freebsd.org>, Toomas Soome <tsoome@me.com>,  Emmanuel Vadot <manu@bidouilliste.com>, FreeBSD Current <freebsd-current@freebsd.org>
Subject:   Re: Why doesn't the EFI boot loader want to display the graphical orb logo in its boot menu on an Asus Prime 7590-P motherboard?
Message-ID:  <CA%2BGqWgucZuH5jc7xGUs_GPmebPzacHdH%2BWdh7qn2X8qnBm6uLQ@mail.gmail.com>
In-Reply-To: <CA%2BGqWgsfVxvEduT_ncD%2BMKWDw9r8LqADF0wGsuZS8xt8V0p_-w@mail.gmail.com>
References:  <CA%2BGqWgudMq%2BeV5OJzuC_zR1Osdrak70PmOpFJqLMk3aDE0wy8w@mail.gmail.com> <3B658415-3AD0-4E8B-8CBE-F13FA70CBDC8@me.com> <20230512070557.859671981b7c616c0da7d666@bidouilliste.com> <CA%2BGqWguYpkm17xTQKN3qgyACpG7MkHPK3jJz=f9tx=zovvaNMA@mail.gmail.com> <4F0D21B1-58B6-413D-8499-11AF0E338C78@me.com> <CA%2BGqWguPT8uxtGhbWBw4kmR34jC7kG-DSMT0SuEm02smaigoEA@mail.gmail.com> <B8A678CB-8E2C-4A4C-852C-3E66C2C3B4B4@me.com> <CA%2BGqWgta5%2B-POUk88Z%2B-_FtcJouvLZpu5vYQ6kfX1DGwwjeCXw@mail.gmail.com> <CAPyFy2A4cW4SnFLEypM31JMDJT=A=vMh%2BW5g%2BO2gigf5OWDKrA@mail.gmail.com> <CA%2BGqWgsviBD_B_OQHERZd4J6S0chT-F=Rz0kExtUWq9t6QV_dA@mail.gmail.com> <CA%2BGqWgumZtyVJTbyfMf2bLypK1Ndw1L1AcQ7LTjnCtvRwAtJtA@mail.gmail.com> <CANCZdforzzd6kwQZ7RVctB5MG1=BU86ot7vBGydCek%2BUV44JOw@mail.gmail.com> <CA%2BGqWgsfVxvEduT_ncD%2BMKWDw9r8LqADF0wGsuZS8xt8V0p_-w@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
--000000000000d82b4f05fbba817e
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Adding screen.font=3D"16=C3=9732" to loader.conf fixed that tiny issue ment=
ioned
in the previous email message... I find it a bit surprising that I only had
to make one tiny change to the source code of stand to make the graphical
logo appear, to start playing with the EFI resolution, and etc.

On Sun, May 14, 2023, 8:58 AM Oleg Lelchuk <oleglelchuk@gmail.com> wrote:

> Okay, so I edited /usr/src/stand/efi/loader/main.c , and I replaced ConOu=
t
> with ConIn in this line: rv =3D efi_global_getenv("ConIn", buf, &sz); . N=
ow I
> am able to see the beautiful graphical logo in the efi boot menu! But why
> are the boot menu and the logo shown in the top left corner of my compute=
r
> screen? My monitor is 1080p and the setting efi_max_resolution=3D1080p in
> loader.conf only affects what happens after the kernel starts booting up,
> but it doesn't affect what happens before it: the boot menu and the logo
> remain in the top left corner of the screen. Why is this the case? You ca=
n
> see the photo in the provided attachment... And thank you, guys, for your
> work!
>
> On Sat, May 13, 2023 at 9:35=E2=80=AFAM Warner Losh <imp@bsdimp.com> wrot=
e:
>
>>
>>
>> On Sat, May 13, 2023, 6:26 AM Oleg Lelchuk <oleglelchuk@gmail.com> wrote=
:
>>
>>> I've been reading the documentation for loader.efi and it says this: "I=
f
>>> there is no ConOut variable, both serial and video are attempted.
>>>      loader.efi uses the "efi" console for the video (which may or may
>>> not
>>>      work) and "comconsole" for the serial on COM1 at the default baud
>>> rate.
>>>      The kernel will use a dual console, with the video console primary
>>> if a
>>>      UEFI graphics device is detected, or the serial console as primary
>>> if
>>>      not."
>>> I find this language confusing because I don't know what is meant by "a
>>> UEFI graphics device". In my situation, is my Intel Integrated Graphics
>>> card an UEFI graphics device? Does it mean that once i915kms is loaded,=
 I
>>> no longer deal with UEFI graphics? I think lots of people whose native
>>> language is English will find the documentation describing loader.efi
>>> confusing. The documentation page also mentions this: "BUGS
>>>      Systems that do not have a ConOut variable set are not conformant
>>> with
>>>      the standard, and likely have unexpected results." But I think you
>>> guys already implied that the UEFI specification doesn't mandate having
>>> such a variable.
>>>
>>
>> That's unclear. The standard refers to it many times. Earlier versions
>> especially. It doesn't say it's optional, unlike some other variables. Y=
et
>> later versions don't say it's mandatory.  I've yet to own or use a syste=
m
>> without it... such systems exist but they are quite new...
>>
>> Warner
>>
>> On Fri, May 12, 2023 at 7:55=E2=80=AFPM Oleg Lelchuk <oleglelchuk@gmail.=
com>
>>> wrote:
>>>
>>>> I got it. Thanks.
>>>>
>>>> On Fri, May 12, 2023 at 7:45=E2=80=AFPM Ed Maste <emaste@freebsd.org> =
wrote:
>>>>
>>>>> On Fri, 12 May 2023 at 09:26, Oleg Lelchuk <oleglelchuk@gmail.com>
>>>>> wrote:
>>>>> >
>>>>> > I don't want to go through the hassle of filling a bug with my
>>>>> vendor. I will just wait for you, guys, to update the stand implement=
ation.
>>>>> Thank you for explaining to me what causes this issue.
>>>>>
>>>>> This issue is tracked in PR 265980 if you want to follow it.
>>>>> https://bugs.freebsd.org/265980
>>>>>
>>>>

--000000000000d82b4f05fbba817e
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"auto">Adding screen.font=3D&quot;16=C3=9732&quot; to loader.con=
f fixed that tiny issue mentioned in the previous email message... I find i=
t a bit surprising that I only had to make one tiny change to the source co=
de of stand to make the graphical logo appear, to start playing with the EF=
I resolution, and etc.</div><br><div class=3D"gmail_quote"><div dir=3D"ltr"=
 class=3D"gmail_attr">On Sun, May 14, 2023, 8:58 AM Oleg Lelchuk &lt;<a hre=
f=3D"mailto:oleglelchuk@gmail.com">oleglelchuk@gmail.com</a>&gt; wrote:<br>=
</div><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-l=
eft:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr">Okay, so I edited /us=
r/src/stand/efi/loader/main.c , and I replaced ConOut with ConIn in this li=
ne:=C2=A0rv =3D efi_global_getenv(&quot;ConIn&quot;, buf, &amp;sz); . Now I=
 am able to see the beautiful graphical logo in the efi boot menu! But why =
are the boot menu and the logo shown in the top left corner of my computer =
screen? My monitor is 1080p and the setting efi_max_resolution=3D1080p in l=
oader.conf only affects what happens after the kernel starts booting up, bu=
t it doesn&#39;t affect what happens before it: the boot menu and the logo =
remain in the top left corner of the screen. Why is this the case? You can =
see the photo in the provided attachment... And thank you, guys, for your w=
ork!</div><br><div class=3D"gmail_quote"><div dir=3D"ltr" class=3D"gmail_at=
tr">On Sat, May 13, 2023 at 9:35=E2=80=AFAM Warner Losh &lt;<a href=3D"mail=
to:imp@bsdimp.com" target=3D"_blank" rel=3D"noreferrer">imp@bsdimp.com</a>&=
gt; wrote:<br></div><blockquote class=3D"gmail_quote" style=3D"margin:0px 0=
px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div =
dir=3D"auto"><div><br><br><div class=3D"gmail_quote"><div dir=3D"ltr" class=
=3D"gmail_attr">On Sat, May 13, 2023, 6:26 AM Oleg Lelchuk &lt;<a href=3D"m=
ailto:oleglelchuk@gmail.com" target=3D"_blank" rel=3D"noreferrer">oleglelch=
uk@gmail.com</a>&gt; wrote:<br></div><blockquote class=3D"gmail_quote" styl=
e=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);paddin=
g-left:1ex"><div dir=3D"ltr">I&#39;ve been reading the documentation for lo=
ader.efi and it says this: &quot;If	there is no ConOut variable, both seria=
l and video are attempted.<br>=C2=A0 =C2=A0 =C2=A0loader.efi	uses the &quot=
;efi&quot; console for the video (which may	or may not<br>=C2=A0 =C2=A0 =C2=
=A0work) and &quot;comconsole&quot; for	the serial on COM1 at the default b=
aud rate.<br>=C2=A0 =C2=A0 =C2=A0The kernel	will use a dual	console, with t=
he video	console	primary	if a<br>=C2=A0 =C2=A0 =C2=A0UEFI graphics device i=
s detected, or the serial console as	primary	if<br>=C2=A0 =C2=A0 =C2=A0not.=
&quot;<div>I find this language confusing because I don&#39;t know what is =
meant by &quot;a UEFI graphics device&quot;. In my situation, is my Intel I=
ntegrated Graphics card an UEFI graphics device? Does it mean that once i91=
5kms is loaded, I no longer deal with UEFI graphics? I think lots of people=
 whose native language is English will find the documentation describing lo=
ader.efi confusing. The documentation page also mentions this: &quot;BUGS</=
div>=C2=A0 =C2=A0 =C2=A0Systems that do not have a	ConOut variable	set are	=
not conformant with<br>=C2=A0 =C2=A0 =C2=A0the standard, and likely have un=
expected results.&quot; But I think you guys already implied that the UEFI =
specification doesn&#39;t mandate having such a variable.</div></blockquote=
></div></div><div dir=3D"auto"><br></div><div dir=3D"auto">That&#39;s uncle=
ar. The standard refers to it many times. Earlier versions especially. It d=
oesn&#39;t say it&#39;s optional, unlike some other variables. Yet later ve=
rsions don&#39;t say it&#39;s mandatory.=C2=A0 I&#39;ve yet to own or use a=
 system without it... such systems exist but they are quite new...</div><di=
v dir=3D"auto"><br></div><div dir=3D"auto">Warner</div><div dir=3D"auto"><b=
r></div><div dir=3D"auto"><div class=3D"gmail_quote"><blockquote class=3D"g=
mail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204=
,204,204);padding-left:1ex"><div class=3D"gmail_quote"><div dir=3D"ltr" cla=
ss=3D"gmail_attr">On Fri, May 12, 2023 at 7:55=E2=80=AFPM Oleg Lelchuk &lt;=
<a href=3D"mailto:oleglelchuk@gmail.com" rel=3D"noreferrer noreferrer" targ=
et=3D"_blank">oleglelchuk@gmail.com</a>&gt; wrote:<br></div><blockquote cla=
ss=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid =
rgb(204,204,204);padding-left:1ex"><div dir=3D"ltr">I got it. Thanks.</div>=
<br><div class=3D"gmail_quote"><div dir=3D"ltr" class=3D"gmail_attr">On Fri=
, May 12, 2023 at 7:45=E2=80=AFPM Ed Maste &lt;<a href=3D"mailto:emaste@fre=
ebsd.org" rel=3D"noreferrer noreferrer" target=3D"_blank">emaste@freebsd.or=
g</a>&gt; wrote:<br></div><blockquote class=3D"gmail_quote" style=3D"margin=
:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"=
>On Fri, 12 May 2023 at 09:26, Oleg Lelchuk &lt;<a href=3D"mailto:oleglelch=
uk@gmail.com" rel=3D"noreferrer noreferrer" target=3D"_blank">oleglelchuk@g=
mail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; I don&#39;t want to go through the hassle of filling a bug with my ven=
dor. I will just wait for you, guys, to update the stand implementation. Th=
ank you for explaining to me what causes this issue.<br>
<br>
This issue is tracked in PR 265980 if you want to follow it.<br>
<a href=3D"https://bugs.freebsd.org/265980" rel=3D"noreferrer noreferrer no=
referrer" target=3D"_blank">https://bugs.freebsd.org/265980</a><br>;
</blockquote></div>
</blockquote></div>
</blockquote></div></div></div>
</blockquote></div>
</blockquote></div>

--000000000000d82b4f05fbba817e--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CA%2BGqWgucZuH5jc7xGUs_GPmebPzacHdH%2BWdh7qn2X8qnBm6uLQ>