Browse Source

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

correct, but it's enough to get RIS working.
tags/v0.9.3
Michael Brown 17 years ago
parent
commit
e3bbfd7a75
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      src/interface/pxe/pxe_undi.c

+ 3
- 0
src/interface/pxe/pxe_undi.c View File

29
 #include <gpxe/pci.h>
29
 #include <gpxe/pci.h>
30
 #include <gpxe/isapnp.h>
30
 #include <gpxe/isapnp.h>
31
 #include <gpxe/if_ether.h>
31
 #include <gpxe/if_ether.h>
32
+#include <gpxe/shutdown.h>
32
 #include "pxe.h"
33
 #include "pxe.h"
33
 
34
 
34
 /* PXENV_UNDI_STARTUP
35
 /* PXENV_UNDI_STARTUP
85
 				   *undi_shutdown ) {
86
 				   *undi_shutdown ) {
86
 	DBG ( "PXENV_UNDI_SHUTDOWN" );
87
 	DBG ( "PXENV_UNDI_SHUTDOWN" );
87
 
88
 
89
+	shutdown();
90
+
88
 	undi_shutdown->Status = PXENV_STATUS_SUCCESS;
91
 	undi_shutdown->Status = PXENV_STATUS_SUCCESS;
89
 	return PXENV_EXIT_SUCCESS;
92
 	return PXENV_EXIT_SUCCESS;
90
 }
93
 }

Loading…
Cancel
Save