git: 8b6be727885d - stable/14 - loader: Fix loader_brand = none

From: Kyle Evans <kevans_at_FreeBSD.org>
Date: Mon, 21 Jul 2025 02:13:52 UTC
The branch stable/14 has been updated by kevans:

URL: https://cgit.FreeBSD.org/src/commit/?id=8b6be727885d1b9eedae4b0e66674dc9cf2b69bb

commit 8b6be727885d1b9eedae4b0e66674dc9cf2b69bb
Author:     Emmanuel Vadot <manu@FreeBSD.org>
AuthorDate: 2025-06-16 12:23:07 +0000
Commit:     Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2025-07-21 02:12:26 +0000

    loader: Fix loader_brand = none
    
    Setting loader_brand to none in loader.conf now result in a lua error
    as we try to get a non-existant table
    Defines it
    
    Fixes:  bef6d85b6de5 ("lualoader: allow graphical bits to be disabled with loader_gfx")
    Reviewed by:    kevans, tsoome
    Sponsored by:   Beckhoff Automation GmbH & Co. KG
    
    (cherry picked from commit 7e1930480bef285cca1c14c25b4fd62abdf5dabf)
---
 stand/lua/drawer.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stand/lua/drawer.lua b/stand/lua/drawer.lua
index 01802d8e9d81..46390590352e 100644
--- a/stand/lua/drawer.lua
+++ b/stand/lua/drawer.lua
@@ -462,7 +462,7 @@ branddefs = {
 		},
 	},
 	["none"] = {
-		fb = { image = none },
+		ascii = { image = none },
 	},
 }