david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Call shutdown() from pxenv_undi_shutdown(). Probably not totally

correct, but it's enough to get RIS working.
This commit is contained in:
Michael Brown 2007-07-02 03:12:35 +01:00
parent d7e471f654
commit e3bbfd7a75
1 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,7 @@
#include <gpxe/pci.h>
#include <gpxe/isapnp.h>
#include <gpxe/if_ether.h>
#include <gpxe/shutdown.h>
#include "pxe.h"
/* PXENV_UNDI_STARTUP
@ -85,6 +86,8 @@ PXENV_EXIT_t pxenv_undi_shutdown ( struct s_PXENV_UNDI_SHUTDOWN
*undi_shutdown ) {
DBG ( "PXENV_UNDI_SHUTDOWN" );
shutdown();
undi_shutdown->Status = PXENV_STATUS_SUCCESS;
return PXENV_EXIT_SUCCESS;
}