Date: Mon, 21 Jul 2025 02:13:52 GMT From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 8b6be727885d - stable/14 - loader: Fix loader_brand = none Message-ID: <202507210213.56L2Dq7H013721@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 }, }, }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202507210213.56L2Dq7H013721>