55189c9d33
Change-Id: I2858fdf74e782f425d56653491cdebe83c185d19 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41208 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
17 lines
409 B
C
17 lines
409 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#ifndef LBTABLE_H
|
|
#define LBTABLE_H
|
|
|
|
#include "common.h"
|
|
|
|
void get_lbtable(void);
|
|
void get_layout_from_cmos_table(void);
|
|
void get_layout_from_cbfs_file(void);
|
|
void dump_lbtable(void);
|
|
void list_lbtable_choices(void);
|
|
void list_lbtable_item(const char item[]);
|
|
const struct lb_record *find_lbrec(uint32_t tag);
|
|
|
|
void process_layout(void);
|
|
#endif /* LBTABLE_H */
|