opnsense-src/stand/lua/gfx-install.lua
Joseph Mingrone ac7a19d41e
lualoader: Add distinct brand for installer
Make it obvious to users that the system is booting into the installer.

Reviewed by:	kevans, manu
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D51001
2025-06-24 12:11:15 -03:00

24 lines
717 B
Lua

--
-- Copyright (c) 2025 Joseph Mingrone <jrm@FreeBSD.org>
--
-- SPDX-License-Identifier: BSD-2-Clause
--
return {
brand = {
ascii = {
image = {
" _____ ____ ____ ____ ___ _ _ _",
"| ___| __ ___ ___| __ ) ___|| _ \\ |_ _|_ __ ___| |_ __ _| | | ___ _ __",
"| |_ | '__/ _ \\/ _ \\ _ \\___ \\| | | | | || '_ \\/ __| __/ _` | | |/ _ \\ '__|",
"| _|| | | __/ __/ |_) |__) | |_| | | || | | \\__ \\ || (_| | | | __/ |",
"|_| |_| \\___|\\___|____/____/|____/ |___|_| |_|___/\\__\\__,_|_|_|\\___|_|",
},
requires_color = false,
},
fb = {
image = "/boot/images/freebsd-install-brand-rev.png",
width = 80,
},
}
}