Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/stand/lua/gfx-install.lua
34677 views
1
--
2
-- Copyright (c) 2025 Joseph Mingrone <[email protected]>
3
--
4
-- SPDX-License-Identifier: BSD-2-Clause
5
--
6
7
return {
8
brand = {
9
ascii = {
10
image = {
11
" _____ ____ ____ ____ ___ _ _ _",
12
"| ___| __ ___ ___| __ ) ___|| _ \\ |_ _|_ __ ___| |_ __ _| | | ___ _ __",
13
"| |_ | '__/ _ \\/ _ \\ _ \\___ \\| | | | | || '_ \\/ __| __/ _` | | |/ _ \\ '__|",
14
"| _|| | | __/ __/ |_) |__) | |_| | | || | | \\__ \\ || (_| | | | __/ |",
15
"|_| |_| \\___|\\___|____/____/|____/ |___|_| |_|___/\\__\\__,_|_|_|\\___|_|",
16
},
17
requires_color = false,
18
},
19
fb = {
20
image = "/boot/images/freebsd-install-brand-rev.png",
21
width = 80,
22
},
23
}
24
}
25
26