Move the parser for cmos.layout text files to accessors
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com> Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6312 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
582d369fbd
commit
49a74437aa
|
@ -30,7 +30,7 @@ CFLAGS = -O2 -g -Wall -W -I.
|
|||
CLI_OBJS = cli/nvramtool.o cli/opts.o
|
||||
|
||||
OBJS = cmos_lowlevel.o cmos_ops.o common.o compute_ip_checksum.o \
|
||||
hexdump.o input_file.o layout.o layout_file.o lbtable.o \
|
||||
hexdump.o input_file.o layout.o accessors/layout-text.o lbtable.o \
|
||||
reg_expr.o cbfs.o
|
||||
|
||||
OBJS += $(CLI_OBJS)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*****************************************************************************\
|
||||
* layout_file.c
|
||||
* layout-text.c
|
||||
*****************************************************************************
|
||||
* Copyright (C) 2002-2005 The Regents of the University of California.
|
||||
* Produced at the Lawrence Livermore National Laboratory.
|
||||
|
@ -29,7 +29,7 @@
|
|||
\*****************************************************************************/
|
||||
|
||||
#include "common.h"
|
||||
#include "layout_file.h"
|
||||
#include "layout-text.h"
|
||||
#include "layout.h"
|
||||
#include "cmos_lowlevel.h"
|
||||
#include "reg_expr.h"
|
|
@ -36,7 +36,7 @@
|
|||
#include "opts.h"
|
||||
#include "lbtable.h"
|
||||
#include "layout.h"
|
||||
#include "layout_file.h"
|
||||
#include "accessors/layout-text.h"
|
||||
#include "input_file.h"
|
||||
#include "cmos_ops.h"
|
||||
#include "cmos_lowlevel.h"
|
||||
|
|
Loading…
Reference in New Issue