xref: /illumos-gate/usr/src/uts/common/sys/bootbanner.h (revision b210e777)
16112cec5SJoshua M. Clulow /*
26112cec5SJoshua M. Clulow  * This file and its contents are supplied under the terms of the
36112cec5SJoshua M. Clulow  * Common Development and Distribution License ("CDDL"), version 1.0.
46112cec5SJoshua M. Clulow  * You may only use this file in accordance with the terms of version
56112cec5SJoshua M. Clulow  * 1.0 of the CDDL.
66112cec5SJoshua M. Clulow  *
76112cec5SJoshua M. Clulow  * A full copy of the text of the CDDL should have accompanied this
86112cec5SJoshua M. Clulow  * source.  A copy of the CDDL is also available via the Internet at
96112cec5SJoshua M. Clulow  * http://www.illumos.org/license/CDDL.
106112cec5SJoshua M. Clulow  */
116112cec5SJoshua M. Clulow 
126112cec5SJoshua M. Clulow /*
13*b210e777SJoshua M. Clulow  * Copyright 2023 Oxide Computer Company
146112cec5SJoshua M. Clulow  */
156112cec5SJoshua M. Clulow 
166112cec5SJoshua M. Clulow #ifndef _SYS_BOOTBANNER_H
176112cec5SJoshua M. Clulow #define	_SYS_BOOTBANNER_H
186112cec5SJoshua M. Clulow 
196112cec5SJoshua M. Clulow /*
206112cec5SJoshua M. Clulow  * Rendering of the boot banner, used on the system and zone consoles.
216112cec5SJoshua M. Clulow  */
226112cec5SJoshua M. Clulow 
236112cec5SJoshua M. Clulow #ifdef __cplusplus
246112cec5SJoshua M. Clulow extern "C" {
256112cec5SJoshua M. Clulow #endif
266112cec5SJoshua M. Clulow 
27*b210e777SJoshua M. Clulow extern void bootbanner_print(void (*)(const char *, uint_t));
286112cec5SJoshua M. Clulow 
296112cec5SJoshua M. Clulow #ifdef __cplusplus
306112cec5SJoshua M. Clulow }
316112cec5SJoshua M. Clulow #endif
326112cec5SJoshua M. Clulow 
336112cec5SJoshua M. Clulow #endif /* _SYS_BOOTBANNER_H */
34