summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorMichael Brown2006-04-30 03:08:52 +0200
committerMichael Brown2006-04-30 03:08:52 +0200
commit352bf1bda2d4c0d08e9b674702d8ba754f4d1747 (patch)
tree6446555769a5e1a2cecc56d09e19f4191f99827a /src/core
parentChange semantics of network API so that packet-absorbing calls *always* (diff)
downloadipxe-352bf1bda2d4c0d08e9b674702d8ba754f4d1747.tar.gz
ipxe-352bf1bda2d4c0d08e9b674702d8ba754f4d1747.tar.xz
ipxe-352bf1bda2d4c0d08e9b674702d8ba754f4d1747.zip
Move init.h to gpxe/init.h.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/btext.c2
-rw-r--r--src/core/heap.c2
-rw-r--r--src/core/init.c2
-rw-r--r--src/core/main.c2
-rw-r--r--src/core/pcmcia.c2
-rw-r--r--src/core/serial.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/src/core/btext.c b/src/core/btext.c
index 43accc47..2a2972e9 100644
--- a/src/core/btext.c
+++ b/src/core/btext.c
@@ -9,7 +9,7 @@
#include "etherboot.h"
#include "console.h"
-#include "init.h"
+#include <gpxe/init.h>
#include <gpxe/pci.h>
#ifdef CONFIG_FILO
diff --git a/src/core/heap.c b/src/core/heap.c
index d70aa2d9..b04b4b82 100644
--- a/src/core/heap.c
+++ b/src/core/heap.c
@@ -1,5 +1,5 @@
#include "etherboot.h"
-#include "init.h"
+#include <gpxe/init.h>
#include "memsizes.h"
#include <assert.h>
#include "heap.h"
diff --git a/src/core/init.c b/src/core/init.c
index ed652379..3f41ddd1 100644
--- a/src/core/init.c
+++ b/src/core/init.c
@@ -7,7 +7,7 @@
**************************************************************************
*/
-#include "init.h"
+#include <gpxe/init.h>
static struct init_fn init_fns[0] __table_start(init_fn);
static struct init_fn init_fns_end[0] __table_end(init_fn);
diff --git a/src/core/main.c b/src/core/main.c
index 35c7bb2c..f6448e80 100644
--- a/src/core/main.c
+++ b/src/core/main.c
@@ -23,7 +23,7 @@ Literature dealing with the network protocols:
#include "timer.h"
#include "cpu.h"
#include "console.h"
-#include "init.h"
+#include <gpxe/init.h>
#include "image.h"
#include <stdarg.h>
diff --git a/src/core/pcmcia.c b/src/core/pcmcia.c
index 03a96de8..b4faceaf 100644
--- a/src/core/pcmcia.c
+++ b/src/core/pcmcia.c
@@ -29,7 +29,7 @@
#define CODE_VERSION "0.1.3"
#include "pcmcia-opts.h"
#include "console.h"
-#include "init.h"
+#include <gpxe/init.h>
int sockets; /* AHTODO: Phase this out! */
u_int pccsocks;
diff --git a/src/core/serial.c b/src/core/serial.c
index 802b32a7..52cf0e44 100644
--- a/src/core/serial.c
+++ b/src/core/serial.c
@@ -13,7 +13,7 @@
#include "stddef.h"
#include "console.h"
-#include "init.h"
+#include <gpxe/init.h>
#include "io.h"
#include "timer.h"
#include "config/serial.h"