git: 7e1930480bef - main - loader: Fix loader_brand = none
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 17 Jun 2025 06:06:41 UTC
The branch main has been updated by manu:
URL: https://cgit.FreeBSD.org/src/commit/?id=7e1930480bef285cca1c14c25b4fd62abdf5dabf
commit 7e1930480bef285cca1c14c25b4fd62abdf5dabf
Author: Emmanuel Vadot <manu@FreeBSD.org>
AuthorDate: 2025-06-16 12:23:07 +0000
Commit: Emmanuel Vadot <manu@FreeBSD.org>
CommitDate: 2025-06-17 06:06:29 +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
Differential Revision: https://reviews.freebsd.org/D50875
Fixes: bef6d85b6de5 ("lualoader: allow graphical bits to be disabled with loader_gfx")
Reviewed by: kevans, tsoome
Sponsored by: Beckhoff Automation GmbH & Co. KG
---
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 334d8724f6bc..9d5417737489 100644
--- a/stand/lua/drawer.lua
+++ b/stand/lua/drawer.lua
@@ -470,7 +470,7 @@ branddefs = {
},
},
["none"] = {
- fb = { image = none },
+ ascii = { image = none },
},
}