• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef LBTABLE_H
4 #define LBTABLE_H
5 
6 #include "common.h"
7 
8 void get_lbtable(void);
9 void get_layout_from_cmos_table(void);
10 void get_layout_from_cbfs_file(void);
11 void dump_lbtable(void);
12 void list_lbtable_choices(void);
13 void list_lbtable_item(const char item[]);
14 const struct lb_record *find_lbrec(uint32_t tag);
15 
16 void process_layout(void);
17 #endif				/* LBTABLE_H */
18