diff options
author | Michael Brown <mcb30@etherboot.org> | 2008-07-17 17:45:17 +0100 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2008-07-17 17:45:17 +0100 |
commit | 03c80c12b8e9019554c3bd4545cf68926ee1ce47 (patch) | |
tree | ad2217eda5c315775a86708e166c85a9f04926ff /src/arch/i386/image/bzimage.c | |
parent | 4e033c774b3731488cc7750f2d4d89c12661a254 (diff) | |
download | ipxe-03c80c12b8e9019554c3bd4545cf68926ee1ce47.tar.gz |
[iSCSI] Support Windows Server 2008 direct iSCSI installation
Add yet another ugly hack to iscsiboot.c, this time to allow the user to
inhibit the shutdown/removal of the iSCSI INT13 device (and the network
devices, since they are required for the iSCSI device to function).
On the plus side, the fact that shutdown() now takes flags to
differentiate between shutdown-for-exit and shutdown-for-boot means that
another ugly hack (to allow returning via the PXE stack on BIOSes that
have broken INT 18 calls) will be easier.
I feel dirty.
Diffstat (limited to 'src/arch/i386/image/bzimage.c')
-rw-r--r-- | src/arch/i386/image/bzimage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/i386/image/bzimage.c b/src/arch/i386/image/bzimage.c index d9c05453..e6fd854f 100644 --- a/src/arch/i386/image/bzimage.c +++ b/src/arch/i386/image/bzimage.c @@ -348,7 +348,7 @@ static int bzimage_exec ( struct image *image ) { sizeof ( bzhdr ) ); /* Prepare for exiting */ - shutdown(); + shutdown ( SHUTDOWN_BOOT ); DBGC ( image, "bzImage %p jumping to RM kernel at %04x:0000 " "(stack %04x:%04zx)\n", image, |