mirror of
https://github.com/xcat2/xNBA.git
synced 2026-09-25 17:23:59 +00:00
71cd508838
Abstract out the ability to reboot the system to a separate reboot() function (with platform-specific implementations), add an EFI implementation, and make the existing "reboot" command available under EFI. Signed-off-by: Michael Brown <mcb30@ipxe.org>
15 lines
204 B
C
15 lines
204 B
C
#ifndef _BITS_REBOOT_H
|
|
#define _BITS_REBOOT_H
|
|
|
|
/** @file
|
|
*
|
|
* i386-specific reboot API implementations
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
|
|
#include <ipxe/bios_reboot.h>
|
|
|
|
#endif /* _BITS_REBOOT_H */
|