mirror of
https://github.com/opnsense/src.git
synced 2026-06-27 17:32:09 -04:00
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
24 lines
717 B
Lua
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,
|
|
},
|
|
}
|
|
}
|