diff options
Diffstat (limited to 'util/lxbios')
-rw-r--r-- | util/lxbios/Makefile | 2 | ||||
-rw-r--r-- | util/lxbios/coreboot_tables.h (renamed from util/lxbios/linuxbios_tables.h) | 3 | ||||
-rw-r--r-- | util/lxbios/layout.h | 2 | ||||
-rw-r--r-- | util/lxbios/layout_file.h | 2 | ||||
-rw-r--r-- | util/lxbios/lbtable.c | 2 |
5 files changed, 5 insertions, 6 deletions
diff --git a/util/lxbios/Makefile b/util/lxbios/Makefile index 6d2022aa0d..a7d9c1c74a 100644 --- a/util/lxbios/Makefile +++ b/util/lxbios/Makefile @@ -7,7 +7,7 @@ LDFLAGS = OBJS = common.o compute_ip_checksum.o hexdump.o cmos_lowlevel.o \ reg_expr.o layout.o layout_file.o lbtable.o cmos_ops.o input_file.o \ opts.o lxbios.o -HEADERS = common.h ip_checksum.h linuxbios_tables.h hexdump.h \ +HEADERS = common.h ip_checksum.h coreboot_tables.h hexdump.h \ cmos_lowlevel.h reg_expr.h layout.h layout_file.h lbtable.h \ cmos_ops.h input_file.h opts.h diff --git a/util/lxbios/linuxbios_tables.h b/util/lxbios/coreboot_tables.h index f7271f3b99..7c912be0f7 100644 --- a/util/lxbios/linuxbios_tables.h +++ b/util/lxbios/coreboot_tables.h @@ -1,6 +1,5 @@ /*****************************************************************************\ - * linuxbios_tables.h - * $Id: linuxbios_tables.h,v 1.1.1.1 2005/12/02 22:35:19 dsp_llnl Exp $ + * coreboot_tables.h \*****************************************************************************/ #ifndef COREBOOT_TABLES_H diff --git a/util/lxbios/layout.h b/util/lxbios/layout.h index 15e009df5f..4575f75995 100644 --- a/util/lxbios/layout.h +++ b/util/lxbios/layout.h @@ -33,7 +33,7 @@ #define LXBIOS_LAYOUT_H #include "common.h" -#include "linuxbios_tables.h" +#include "coreboot_tables.h" #define LAYOUT_ENTRY_OVERLAP (LAYOUT_RESULT_START + 0) #define LAYOUT_ENTRY_BAD_LENGTH (LAYOUT_RESULT_START + 1) diff --git a/util/lxbios/layout_file.h b/util/lxbios/layout_file.h index a313fa3ce7..69148d740e 100644 --- a/util/lxbios/layout_file.h +++ b/util/lxbios/layout_file.h @@ -33,7 +33,7 @@ #define LXBIOS_LAYOUT_FILE_H #include "common.h" -#include "linuxbios_tables.h" +#include "coreboot_tables.h" void set_layout_filename (const char filename[]); void get_layout_from_file (void); diff --git a/util/lxbios/lbtable.c b/util/lxbios/lbtable.c index 1b479751f3..46a9b3d7b5 100644 --- a/util/lxbios/lbtable.c +++ b/util/lxbios/lbtable.c @@ -32,7 +32,7 @@ #include <sys/mman.h> #include "common.h" -#include "linuxbios_tables.h" +#include "coreboot_tables.h" #include "ip_checksum.h" #include "lbtable.h" #include "layout.h" |