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:
parent
997afe6ca5
commit
ca374d455c
|
@ -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
|
||||
|
|
|
@ -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>
|
|
@ -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(
|
|
@ -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;
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
object boot.o
|
||||
object tables.o
|
||||
object linuxbios_table.o
|
||||
object coreboot_table.o
|
||||
|
|
|
@ -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>
|
|
@ -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;
|
||||
|
|
@ -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)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#include <part/fallback_boot.h>
|
||||
#include <boot/elf.h>
|
||||
#include <boot/elf_boot.h>
|
||||
#include <boot/linuxbios_tables.h>
|
||||
#include <boot/coreboot_tables.h>
|
||||
#include <ip_checksum.h>
|
||||
#include <stream/read_bytes.h>
|
||||
#include <stdint.h>
|
||||
|
|
|
@ -44,8 +44,8 @@ makerule coreboot_ram.o
|
|||
end
|
||||
|
||||
makerule coreboot_ram
|
||||
depends "coreboot_ram.o $(TOP)/src/config/linuxbios_ram.ld ldoptions"
|
||||
action "$(CC) -nostdlib -nostartfiles -static -o $@ -T $(TOP)/src/config/linuxbios_ram.ld coreboot_ram.o"
|
||||
depends "coreboot_ram.o $(TOP)/src/config/coreboot_ram.ld ldoptions"
|
||||
action "$(CC) -nostdlib -nostartfiles -static -o $@ -T $(TOP)/src/config/coreboot_ram.ld coreboot_ram.o"
|
||||
action "$(CROSS_COMPILE)nm -n coreboot_ram | sort > coreboot_ram.map"
|
||||
end
|
||||
|
||||
|
@ -87,8 +87,8 @@ if CONFIG_AP_CODE_IN_CAR
|
|||
end
|
||||
|
||||
makerule coreboot_apc
|
||||
depends "coreboot_apc.o $(TOP)/src/config/linuxbios_apc.ld ldoptions"
|
||||
action "$(CC) -nostdlib -nostartfiles -static -o $@ -T $(TOP)/src/config/linuxbios_apc.ld coreboot_apc.o"
|
||||
depends "coreboot_apc.o $(TOP)/src/config/coreboot_apc.ld ldoptions"
|
||||
action "$(CC) -nostdlib -nostartfiles -static -o $@ -T $(TOP)/src/config/coreboot_apc.ld coreboot_apc.o"
|
||||
action "$(CROSS_COMPILE)nm -n coreboot_apc | sort > coreboot_apc.map"
|
||||
end
|
||||
|
||||
|
@ -174,7 +174,7 @@ makerule ./romcc
|
|||
end
|
||||
|
||||
makerule build_opt_tbl
|
||||
depends "$(TOP)/util/options/build_opt_tbl.c $(TOP)/src/include/pc80/mc146818rtc.h $(TOP)/src/include/boot/linuxbios_tables.h Makefile.settings Makefile"
|
||||
depends "$(TOP)/util/options/build_opt_tbl.c $(TOP)/src/include/pc80/mc146818rtc.h $(TOP)/src/include/boot/coreboot_tables.h Makefile.settings Makefile"
|
||||
action "$(HOSTCC) $(HOSTCFLAGS) $(CPUFLAGS) $< -o $@"
|
||||
end
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef BOOT_TABLES_H
|
||||
#define BOOT_TABLES_H
|
||||
|
||||
#include <boot/linuxbios_tables.h>
|
||||
#include <boot/coreboot_tables.h>
|
||||
|
||||
struct lb_memory *write_tables(void);
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include <console/console.h>
|
||||
#include <arch/io.h>
|
||||
#include <pc80/mc146818rtc.h>
|
||||
#include <boot/linuxbios_tables.h>
|
||||
#include <boot/coreboot_tables.h>
|
||||
#include <string.h>
|
||||
|
||||
#define CMOS_READ(addr) ({ \
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include <sys/mman.h>
|
||||
#include "../../src/include/boot/linuxbios_tables.h"
|
||||
#include "../../src/include/boot/coreboot_tables.h"
|
||||
|
||||
void print_lb_records(struct lb_record *rec, struct lb_record *last, unsigned long addr);
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include "../../src/include/pc80/mc146818rtc.h"
|
||||
#include "../../src/include/boot/linuxbios_tables.h"
|
||||
#include "../../src/include/boot/coreboot_tables.h"
|
||||
|
||||
#define CMOS_IMAGE_BUFFER_SIZE 128
|
||||
#define INPUT_LINE_MAX 256
|
||||
|
|
Loading…
Reference in New Issue