summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorMichael Brown2011-03-09 21:09:26 +0100
committerMichael Brown2011-03-09 21:09:26 +0100
commit1c0ff6e1a720907f9211f43d4d8d9fc18d522348 (patch)
tree664255e3bb570dbc248f9782f8f0d26bd98bd76a /src/core
parent[script] Allow scripts to be replaced (diff)
downloadipxe-1c0ff6e1a720907f9211f43d4d8d9fc18d522348.tar.gz
ipxe-1c0ff6e1a720907f9211f43d4d8d9fc18d522348.tar.xz
ipxe-1c0ff6e1a720907f9211f43d4d8d9fc18d522348.zip
[console] Move include/console.h to include/ipxe/console.h
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/core')
-rw-r--r--src/core/btext.c2
-rw-r--r--src/core/console.c2
-rw-r--r--src/core/debug.c2
-rw-r--r--src/core/getkey.c2
-rw-r--r--src/core/monojob.c2
-rw-r--r--src/core/pc_kbd.c2
-rw-r--r--src/core/pcmcia.c2
-rw-r--r--src/core/serial_console.c2
-rw-r--r--src/core/vsprintf.c2
9 files changed, 9 insertions, 9 deletions
diff --git a/src/core/btext.c b/src/core/btext.c
index 994ebbf67..4fb7378d9 100644
--- a/src/core/btext.c
+++ b/src/core/btext.c
@@ -9,7 +9,7 @@
* move to Etherboot by LYH
*/
-#include "console.h"
+#include <ipxe/console.h>
#include <ipxe/init.h>
#include <ipxe/pci.h>
diff --git a/src/core/console.c b/src/core/console.c
index 1d2aa5e57..f27edf468 100644
--- a/src/core/console.c
+++ b/src/core/console.c
@@ -1,5 +1,5 @@
#include "stddef.h"
-#include "console.h"
+#include <ipxe/console.h>
#include <ipxe/process.h>
#include <ipxe/nap.h>
diff --git a/src/core/debug.c b/src/core/debug.c
index 842199202..73e74d9c3 100644
--- a/src/core/debug.c
+++ b/src/core/debug.c
@@ -22,7 +22,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stdint.h>
#include <stdarg.h>
#include <ipxe/io.h>
-#include <console.h>
+#include <ipxe/console.h>
/**
* Pause until a key is pressed
diff --git a/src/core/getkey.c b/src/core/getkey.c
index b8e6af786..d692b1bc8 100644
--- a/src/core/getkey.c
+++ b/src/core/getkey.c
@@ -19,7 +19,7 @@
FILE_LICENCE ( GPL2_OR_LATER );
#include <ctype.h>
-#include <console.h>
+#include <ipxe/console.h>
#include <ipxe/process.h>
#include <ipxe/keys.h>
#include <ipxe/timer.h>
diff --git a/src/core/monojob.c b/src/core/monojob.c
index 682b1dfbe..62e672a4c 100644
--- a/src/core/monojob.c
+++ b/src/core/monojob.c
@@ -22,7 +22,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stdio.h>
#include <errno.h>
#include <ipxe/process.h>
-#include <console.h>
+#include <ipxe/console.h>
#include <ipxe/keys.h>
#include <ipxe/job.h>
#include <ipxe/monojob.h>
diff --git a/src/core/pc_kbd.c b/src/core/pc_kbd.c
index 8c07a7f01..42df755b5 100644
--- a/src/core/pc_kbd.c
+++ b/src/core/pc_kbd.c
@@ -11,7 +11,7 @@
*/
#include <ipxe/io.h>
-#include "console.h"
+#include <ipxe/console.h>
static char key_map[][128] = {
{
diff --git a/src/core/pcmcia.c b/src/core/pcmcia.c
index f39cd04fe..2d8ceb6f5 100644
--- a/src/core/pcmcia.c
+++ b/src/core/pcmcia.c
@@ -34,7 +34,7 @@ FILE_LICENCE ( GPL2_ONLY );
#define CODE_STATUS "alpha"
#define CODE_VERSION "0.1.3"
#include <pcmcia-opts.h>
-#include <console.h>
+#include <ipxe/console.h>
#include <ipxe/init.h>
int sockets; /* AHTODO: Phase this out! */
diff --git a/src/core/serial_console.c b/src/core/serial_console.c
index 70cf2657e..b05a06b17 100644
--- a/src/core/serial_console.c
+++ b/src/core/serial_console.c
@@ -1,6 +1,6 @@
#include <ipxe/init.h>
#include <ipxe/serial.h>
-#include "console.h"
+#include <ipxe/console.h>
/** @file
*
diff --git a/src/core/vsprintf.c b/src/core/vsprintf.c
index 3ed4bd3da..b46d9c419 100644
--- a/src/core/vsprintf.c
+++ b/src/core/vsprintf.c
@@ -21,7 +21,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stddef.h>
#include <stdarg.h>
#include <stdio.h>
-#include <console.h>
+#include <ipxe/console.h>
#include <errno.h>
#include <ipxe/vsprintf.h>