diff options
| author | Michael Brown | 2005-04-09 13:17:29 +0200 |
|---|---|---|
| committer | Michael Brown | 2005-04-09 13:17:29 +0200 |
| commit | 792f34d2289349bb9c3186fea91641349e363a1b (patch) | |
| tree | b5d68de935d4ace44c2f7d6ee08e7bab4bd4f726 /src | |
| parent | Old callbacks mechanism is obsolete. (diff) | |
| download | ipxe-792f34d2289349bb9c3186fea91641349e363a1b.tar.gz ipxe-792f34d2289349bb9c3186fea91641349e363a1b.tar.xz ipxe-792f34d2289349bb9c3186fea91641349e363a1b.zip | |
#ifdef 0 out the UNDI loader routine, since it refers to the obsolete
callback mechanism.
Diffstat (limited to 'src')
| -rw-r--r-- | src/arch/i386/prefix/romprefix.S | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/arch/i386/prefix/romprefix.S b/src/arch/i386/prefix/romprefix.S index c6c834895..8eee84e60 100644 --- a/src/arch/i386/prefix/romprefix.S +++ b/src/arch/i386/prefix/romprefix.S @@ -274,10 +274,12 @@ prefix_exit_end: .previous - + +/* UNDI loader needs to be rewritten to use new mechanism */ +#if 0 + #ifdef PXE_EXPORT -#include "callbacks.h" #define PXENV_UNDI_LOADER 0x104d .section ".prefix" @@ -331,7 +333,9 @@ UNDILoader: call deprelocate lret $2 /* Skip our PXE 'opcode' */ #endif /* PXE_EXPORT */ - + +#endif /* 0 */ + #ifdef DEBUG_ROMPREFIX .section ".prefix" |
