summaryrefslogtreecommitdiffstats
path: root/src/arch/i386/include
diff options
context:
space:
mode:
authorMichael Brown2006-05-13 13:30:03 +0200
committerMichael Brown2006-05-13 13:30:03 +0200
commit568cad0ddcbadaf9ee2e965afaa3fc54f53962ff (patch)
tree8976c7fce629e9ecd3f431ab6d528753d334b44d /src/arch/i386/include
parent(Redoing check-in lost by SourceForge's failure.) (diff)
downloadipxe-568cad0ddcbadaf9ee2e965afaa3fc54f53962ff.tar.gz
ipxe-568cad0ddcbadaf9ee2e965afaa3fc54f53962ff.tar.xz
ipxe-568cad0ddcbadaf9ee2e965afaa3fc54f53962ff.zip
(Redoing check-in lost by SourceForge's failure.)
Diffstat (limited to 'src/arch/i386/include')
-rw-r--r--src/arch/i386/include/hooks.h6
-rw-r--r--src/arch/i386/include/relocate.h26
2 files changed, 0 insertions, 32 deletions
diff --git a/src/arch/i386/include/hooks.h b/src/arch/i386/include/hooks.h
deleted file mode 100644
index 3cef262f9..000000000
--- a/src/arch/i386/include/hooks.h
+++ /dev/null
@@ -1,6 +0,0 @@
-#ifndef HOOKS_H
-#define HOOKS_H
-
-extern void arch_main ( struct i386_all_regs *ix86 );
-
-#endif /* HOOKS_H */
diff --git a/src/arch/i386/include/relocate.h b/src/arch/i386/include/relocate.h
deleted file mode 100644
index d8002185a..000000000
--- a/src/arch/i386/include/relocate.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef RELOCATE_H
-#define RELOCATE_H
-
-/* relocate() is conceptually impossible with KEEP_IT_REAL */
-#ifndef KEEP_IT_REAL
-
-#include <gpxe/tables.h>
-
-/* An entry in the post-relocation function table */
-struct post_reloc_fn {
- void ( *post_reloc ) ( void );
-};
-
-/* Use double digits to avoid problems with "10" < "9" on alphabetic sort */
-#define POST_RELOC_LIBRM 00
-
-/* Macro for creating a post-relocation function table entry */
-#define POST_RELOC_FN( order, post_reloc_func ) \
- struct post_reloc_fn PREFIX_OBJECT(post_reloc_fn__) \
- __table ( post_reloc_fn, order ) = { \
- .post_reloc = post_reloc_func, \
- };
-
-#endif
-
-#endif /* RELOCATE_H */