blob: e8d6e82bfab2e61f14a9f1b9e2636ccbba56accf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _IPXE_BIOS_REBOOT_H
#define _IPXE_BIOS_REBOOT_H
/** @file
*
* Supervisor Binary Interface (SBI) reboot mechanism
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#ifdef REBOOT_SBI
#define REBOOT_PREFIX_sbi
#else
#define REBOOT_PREFIX_sbi __sbi_
#endif
#endif /* _IPXE_BIOS_REBOOT_H */
|