From: Michael Brown Date: Thu, 4 Jan 2007 19:36:31 +0000 (+0000) Subject: This file is no longer used X-Git-Tag: v0.9.3~796 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=70acce06e4a5dadef3c76d15ebe5479c295298e1;p=thirdparty%2Fipxe.git This file is no longer used --- diff --git a/src/arch/i386/include/old_realmode.h b/src/arch/i386/include/old_realmode.h deleted file mode 100644 index 3dde8c810..000000000 --- a/src/arch/i386/include/old_realmode.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef _OLD_REALMODE_H -#define _OLD_REALMODE_H - -#include - -#warning "Anything including this header is obsolete and must be rewritten" - -/* Just for now */ -#define SEGMENT(x) ( virt_to_phys ( x ) >> 4 ) -#define OFFSET(x) ( virt_to_phys ( x ) & 0xf ) -#define SEGOFF(x) { OFFSET(x), SEGMENT(x) } - -/* To make basemem.c compile */ -extern int lock_real_mode_stack; -extern char *real_mode_stack; -extern char real_mode_stack_size[]; - -#define RM_FRAGMENT(name,asm) \ - void name ( void ) {} \ - extern char name ## _size[]; - -#endif /* _OLD_REALMODE_H */