mirror of
https://github.com/siderolabs/talos.git
synced 2026-04-15 18:51:09 +02:00
This is intemediate step to move parts of the `ukify` down to the main Talos source tree, and call it from `talosctl` binary. The next step will be to integrate it into the imager and move `.uki` build out of the Dockerfile. Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
19 lines
425 B
Go
19 lines
425 B
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
// Package splash contains boot splash images.
|
|
package splash
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed sidero.bmp
|
|
var sideroBMP []byte
|
|
|
|
// GetBootImage returns boot splash image.
|
|
func GetBootImage() []byte {
|
|
return sideroBMP
|
|
}
|