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
This commit is contained in:
Stefan Reinauer
2008-01-18 16:16:45 +00:00
committed by Stefan Reinauer
parent 997afe6ca5
commit ca374d455c
18 changed files with 22 additions and 22 deletions

View File

@@ -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

View File

@@ -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>

View File

@@ -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(

View File

@@ -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;

View File

@@ -1,3 +1,3 @@
object boot.o
object tables.o
object linuxbios_table.o
object coreboot_table.o

View File

@@ -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>

View File

@@ -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;

View File

@@ -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)