blob: afd72b4ae9ca57e9f638cd7d6097fc64e746e8e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef BOOT_TABLES_H
#define BOOT_TABLES_H
#include <boot/coreboot_tables.h>
void lb_add_memory_range(struct lb_memory *mem,
uint32_t type, uint64_t start, uint64_t size);
struct lb_memory *write_tables(void);
#endif /* BOOT_TABLES_H */
|