blob: 83be59c316c7bbbae52e778f2508b75d4ef6b79d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _IPXE_SERIAL_H
#define _IPXE_SERIAL_H
/** @file
*
* Serial console
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#include <ipxe/uart.h>
extern struct uart serial_console;
#endif /* _IPXE_SERIAL_H */
|