mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-27 18:25:05 +00:00
coreboot tables are, unlike general system tables, a platform independent concept. Hence, use the same code for coreboot table generation on all platforms. lib/coreboot_tables.c is based on the x86 version of the file, because some important fixes were missed on the ARMv7 version lately. Change-Id: Icc38baf609f10536a320d21ac64408bef44bb77d Signed-off-by: Stefan Reinauer <reinauer@coreboot.org> Reviewed-on: http://review.coreboot.org/2863 Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Reviewed-by: Aaron Durbin <adurbin@google.com> Tested-by: build bot (Jenkins)
9 lines
146 B
C
9 lines
146 B
C
#ifndef BOOT_TABLES_H
|
|
#define BOOT_TABLES_H
|
|
|
|
#include <boot/coreboot_tables.h>
|
|
|
|
struct lb_memory *write_tables(void);
|
|
|
|
#endif /* BOOT_TABLES_H */
|