summaryrefslogtreecommitdiff
path: root/stand/lua/gfx-install.lua
blob: d4cd34e32e1e254114c495373644d018d68050b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--
-- 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,
		},
	}
}