aboutsummaryrefslogtreecommitdiff
path: root/src/arch/i386/boot
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2008-01-18 16:16:45 +0000
committerStefan Reinauer <stepan@openbios.org>2008-01-18 16:16:45 +0000
commitca374d455cad29c546a2d310c331a4ae431c33f9 (patch)
tree63d7914ee3fb021750389ab5ef45b2f0d376d476 /src/arch/i386/boot
parent997afe6ca576dcc0117891294b5f51f29864f354 (diff)
rename linuxbios_* files, too.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3057 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/i386/boot')
-rw-r--r--src/arch/i386/boot/Config.lb2
-rw-r--r--src/arch/i386/boot/coreboot_table.c (renamed from src/arch/i386/boot/linuxbios_table.c)4
-rw-r--r--src/arch/i386/boot/coreboot_table.h (renamed from src/arch/i386/boot/linuxbios_table.h)2
-rw-r--r--src/arch/i386/boot/tables.c4
4 files changed, 6 insertions, 6 deletions
diff --git a/src/arch/i386/boot/Config.lb b/src/arch/i386/boot/Config.lb
index c5a14d0f78..4f8a8680ec 100644
--- a/src/arch/i386/boot/Config.lb
+++ b/src/arch/i386/boot/Config.lb
@@ -2,7 +2,7 @@ uses HAVE_PIRQ_TABLE
uses HAVE_ACPI_TABLES
object boot.o
-object linuxbios_table.o
+object coreboot_table.o
object tables.o
if HAVE_PIRQ_TABLE
object pirq_routing.o
diff --git a/src/arch/i386/boot/linuxbios_table.c b/src/arch/i386/boot/coreboot_table.c
index 0dbdce36d6..b13b63ee65 100644
--- a/src/arch/i386/boot/linuxbios_table.c
+++ b/src/arch/i386/boot/coreboot_table.c
@@ -1,7 +1,7 @@
#include <console/console.h>
#include <ip_checksum.h>
-#include <boot/linuxbios_tables.h>
-#include "linuxbios_table.h"
+#include <boot/coreboot_tables.h>
+#include "coreboot_table.h"
#include <string.h>
#include <version.h>
#include <device/device.h>
diff --git a/src/arch/i386/boot/linuxbios_table.h b/src/arch/i386/boot/coreboot_table.h
index 7944791de2..a5ba0f5963 100644
--- a/src/arch/i386/boot/linuxbios_table.h
+++ b/src/arch/i386/boot/coreboot_table.h
@@ -1,7 +1,7 @@
#ifndef COREBOOT_TABLE_H
#define COREBOOT_TABLE_H
-#include <boot/linuxbios_tables.h>
+#include <boot/coreboot_tables.h>
/* This file holds function prototypes for building the coreboot table. */
unsigned long write_coreboot_table(
diff --git a/src/arch/i386/boot/tables.c b/src/arch/i386/boot/tables.c
index 417d9a98bb..0ff5c0ad2d 100644
--- a/src/arch/i386/boot/tables.c
+++ b/src/arch/i386/boot/tables.c
@@ -4,12 +4,12 @@
#include <console/console.h>
#include <cpu/cpu.h>
#include <boot/tables.h>
-#include <boot/linuxbios_tables.h>
+#include <boot/coreboot_tables.h>
#include <arch/pirq_routing.h>
#include <arch/smp/mpspec.h>
#include <arch/acpi.h>
#include <string.h>
-#include "linuxbios_table.h"
+#include "coreboot_table.h"
// Global Descriptor Table, defined in c_start.S
extern uint8_t gdt;