summaryrefslogtreecommitdiffstats
path: root/src/arch/i386/include/pxe_callbacks.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/i386/include/pxe_callbacks.h')
-rw-r--r--src/arch/i386/include/pxe_callbacks.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/arch/i386/include/pxe_callbacks.h b/src/arch/i386/include/pxe_callbacks.h
deleted file mode 100644
index 974a3c30c..000000000
--- a/src/arch/i386/include/pxe_callbacks.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/* Header for pxe_callbacks.c.
- */
-
-#ifndef PXE_CALLBACKS_H
-#define PXE_CALLBACKS_H
-
-#include "etherboot.h"
-#include "pxe_types.h"
-
-typedef struct {
- SEGOFF16_t orig_retaddr;
- UINT16_t opcode;
- SEGOFF16_t segoff;
-} PACKED pxe_call_params_t;
-
-/*
- * These values are hard-coded into the PXE spec
- */
-#define PXE_LOAD_SEGMENT (0x0000)
-#define PXE_LOAD_OFFSET (0x7c00)
-#define PXE_LOAD_ADDRESS ( ( PXE_LOAD_SEGMENT << 4 ) + PXE_LOAD_OFFSET )
-
-/* Function prototypes
- */
-extern struct pxe_stack * install_pxe_stack ( void *base );
-extern void use_undi_ds_for_rm_stack ( uint16_t ds );
-extern int hook_pxe_stack ( void );
-extern int unhook_pxe_stack ( void );
-extern void remove_pxe_stack ( void );
-extern int xstartpxe ( void );
-
-#endif /* PXE_CALLBACKS_H */