Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 May 2025 18:37:28 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 9486d6d57d14 - main - loader: Fix beastie and fbsdbw logo positions
Message-ID:  <202505291837.54TIbSvQ080908@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=9486d6d57d14844972ee63382045e2ed7a300963

commit 9486d6d57d14844972ee63382045e2ed7a300963
Author:     Marek Zarychta <zarychtam@plan-b.pwste.edu.pl>
AuthorDate: 2025-05-29 16:36:57 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2025-05-29 18:37:03 +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
---
 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},
 	}
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202505291837.54TIbSvQ080908>