aboutsummaryrefslogtreecommitdiff
path: root/src/arch/ppc/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/ppc/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/ppc/boot')
-rw-r--r--src/arch/ppc/boot/Config.lb2
-rw-r--r--src/arch/ppc/boot/coreboot_table.c (renamed from src/arch/ppc/boot/linuxbios_table.c)4
-rw-r--r--src/arch/ppc/boot/coreboot_table.h (renamed from src/arch/ppc/boot/linuxbios_table.h)2
-rw-r--r--src/arch/ppc/boot/tables.c4
4 files changed, 6 insertions, 6 deletions
diff --git a/src/arch/ppc/boot/Config.lb b/src/arch/ppc/boot/Config.lb
index 284406c175..cac76ed3af 100644
--- a/src/arch/ppc/boot/Config.lb
+++ b/src/arch/ppc/boot/Config.lb
@@ -1,3 +1,3 @@
object boot.o
object tables.o
-object linuxbios_table.o
+object coreboot_table.o
diff --git a/src/arch/ppc/boot/linuxbios_table.c b/src/arch/ppc/boot/coreboot_table.c
index 2758934e2e..ea6b683dbc 100644
--- a/src/arch/ppc/boot/linuxbios_table.c
+++ b/src/arch/ppc/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/ppc/boot/linuxbios_table.h b/src/arch/ppc/boot/coreboot_table.h
index 2f200912f6..2645dd5890 100644
--- a/src/arch/ppc/boot/linuxbios_table.h
+++ b/src/arch/ppc/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>
struct mem_range;
diff --git a/src/arch/ppc/boot/tables.c b/src/arch/ppc/boot/tables.c
index a9e1e8eb0f..00cc057277 100644
--- a/src/arch/ppc/boot/tables.c
+++ b/src/arch/ppc/boot/tables.c
@@ -1,8 +1,8 @@
#include <console/console.h>
#include <cpu/cpu.h>
#include <boot/tables.h>
-#include <boot/linuxbios_tables.h>
-#include "linuxbios_table.h"
+#include <boot/coreboot_tables.h>
+#include "coreboot_table.h"
struct lb_memory *
write_tables(void)