17010bdc402f17bb6b91439cd3610c19453045e9
[reactos.git] / reactos / boot / environ / lib / firmware / fwutil.c
1 /*
2 * COPYRIGHT: See COPYING.ARM in the top level directory
3 * PROJECT: ReactOS UEFI Boot Library
4 * FILE: boot/environ/lib/firmware/fwutil.c
5 * PURPOSE: Boot Library Firmware Utility Functions
6 * PROGRAMMER: Alex Ionescu (alex.ionescu@reactos.org)
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 #include "bl.h"
12
13 VOID
14 BlFwReboot (
15 VOID
16 )
17 {
18 #ifdef BL_KD_SUPPORTED
19 /* Stop the boot debugger*/
20 BlBdStop();
21 #endif
22
23 /* Reset the machine */
24 EfiResetSystem(EfiResetCold);
25 }
26