2020-05-10 20:09:31 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2008-03-01 20:06:32 +01:00
|
|
|
#ifndef LBTABLE_H
|
|
|
|
#define LBTABLE_H
|
2007-07-12 18:35:42 +02:00
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
void get_lbtable(void);
|
|
|
|
void get_layout_from_cmos_table(void);
|
2011-01-21 08:24:08 +01:00
|
|
|
void get_layout_from_cbfs_file(void);
|
2010-01-13 22:00:23 +01:00
|
|
|
void dump_lbtable(void);
|
|
|
|
void list_lbtable_choices(void);
|
|
|
|
void list_lbtable_item(const char item[]);
|
2011-03-10 08:52:02 +01:00
|
|
|
const struct lb_record *find_lbrec(uint32_t tag);
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2011-01-28 08:56:39 +01:00
|
|
|
void process_layout(void);
|
2010-01-13 22:00:23 +01:00
|
|
|
#endif /* LBTABLE_H */
|