Date: Wed, 25 Mar 2026 19:25:00 +0000 From: Warner Losh <imp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Cc: Marek Zarychta <zarychtam@plan-b.pwste.edu.pl> Subject: git: 9ac7e0362a24 - stable/14 - loader: Fix beastie and fbsdbw logo positions Message-ID: <69c4368c.1d576.5d2920f4@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch stable/14 has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=9ac7e0362a2490f5de0e23507cc5159cc03a3334 commit 9ac7e0362a2490f5de0e23507cc5159cc03a3334 Author: Marek Zarychta <zarychtam@plan-b.pwste.edu.pl> AuthorDate: 2025-05-29 16:36:57 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2026-03-25 19:22:52 +0000 loader: Fix beastie and fbsdbw logo positions Fix the beaste, beastiebw and fbsdbw postions broken after ee233742a569 PR: 285044, 286356 Fixes: 1b4e11713153 Reviewed by: imp MFC After: 2 days (14.3 candiate) Sponsored by: PANS Jarosław (cherry picked from commit 9486d6d57d14844972ee63382045e2ed7a300963) --- stand/lua/gfx-beastie.lua | 1 + stand/lua/gfx-beastiebw.lua | 1 + stand/lua/gfx-fbsdbw.lua | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/stand/lua/gfx-beastie.lua b/stand/lua/gfx-beastie.lua index 443f0fd888ba..f91e70667dac 100644 --- a/stand/lua/gfx-beastie.lua +++ b/stand/lua/gfx-beastie.lua @@ -49,5 +49,6 @@ return { " `--{__________)\027[m", }, requires_color = true, + shift = {x = 2, y = -5}, } } diff --git a/stand/lua/gfx-beastiebw.lua b/stand/lua/gfx-beastiebw.lua index c71e53a9c4e3..84e3dc6997df 100644 --- a/stand/lua/gfx-beastiebw.lua +++ b/stand/lua/gfx-beastiebw.lua @@ -48,5 +48,6 @@ return { " ,' ,-----' |", " `--{__________)", }, + shift = {x = 2, y = -5}, } } diff --git a/stand/lua/gfx-fbsdbw.lua b/stand/lua/gfx-fbsdbw.lua index 470af71a07b5..df3b6c856eef 100644 --- a/stand/lua/gfx-fbsdbw.lua +++ b/stand/lua/gfx-fbsdbw.lua @@ -42,6 +42,6 @@ return { " | | | |", " |____/|_____/|_____/", }, - shift = {x = 5, y = 4}, + shift = {x = 7, y = -1}, } }home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69c4368c.1d576.5d2920f4>
