Browse Source

Move memmap.h out of arch/i386; it no longer contains anything

architecture-dependent and is needed by the ELF code.
tags/v0.9.3
Michael Brown 18 years ago
parent
commit
c980cdd0aa

+ 1
- 1
src/arch/i386/core/relocate.c View File

1
 #include <io.h>
1
 #include <io.h>
2
 #include <registers.h>
2
 #include <registers.h>
3
-#include <memmap.h>
3
+#include <gpxe/memmap.h>
4
 
4
 
5
 /*
5
 /*
6
  * Originally by Eric Biederman
6
  * Originally by Eric Biederman

+ 1
- 1
src/arch/i386/firmware/pcbios/memmap.c View File

20
 #include <errno.h>
20
 #include <errno.h>
21
 #include <realmode.h>
21
 #include <realmode.h>
22
 #include <bios.h>
22
 #include <bios.h>
23
-#include <memmap.h>
23
+#include <gpxe/memmap.h>
24
 
24
 
25
 /**
25
 /**
26
  * @file
26
  * @file

src/arch/i386/include/memmap.h → src/include/gpxe/memmap.h View File

1
-#ifndef _MEMMAP_H
2
-#define _MEMMAP_H
1
+#ifndef _GPXE_MEMMAP_H
2
+#define _GPXE_MEMMAP_H
3
 
3
 
4
 #include <stdint.h>
4
 #include <stdint.h>
5
 
5
 
31
 
31
 
32
 extern void get_memmap ( struct memory_map *memmap );
32
 extern void get_memmap ( struct memory_map *memmap );
33
 
33
 
34
-#endif /* _MEMMAP_H */
34
+#endif /* _GPXE_MEMMAP_H */

Loading…
Cancel
Save