aboutsummaryrefslogtreecommitdiff
path: root/sys/compat/linuxkpi/common/include/linux/linux_logo.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/compat/linuxkpi/common/include/linux/linux_logo.h')
-rw-r--r--sys/compat/linuxkpi/common/include/linux/linux_logo.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/sys/compat/linuxkpi/common/include/linux/linux_logo.h b/sys/compat/linuxkpi/common/include/linux/linux_logo.h
new file mode 100644
index 000000000000..cb60ba50f6a5
--- /dev/null
+++ b/sys/compat/linuxkpi/common/include/linux/linux_logo.h
@@ -0,0 +1,19 @@
+/*
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
+ * Copyright (c) 2026 The FreeBSD Foundation
+ */
+
+#ifndef _LINUXKPI_LINUX_LINUX_LOGO_H_
+#define _LINUXKPI_LINUX_LINUX_LOGO_H_
+
+struct linux_logo {
+ int type;
+ unsigned int width;
+ unsigned int height;
+ unsigned int clutsize;
+ const unsigned char *clut;
+ const unsigned char *data;
+};
+
+#endif /* _LINUXKPI_LINUX_LINUX_LOGO_H_ */