diff options
author | Aaron Durbin <adurbin@chromium.org> | 2016-02-10 10:52:47 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-02-19 19:21:15 +0100 |
commit | f6ada1c30755f3de22942996bfcf6490a9b7b6e4 (patch) | |
tree | d57d3fd540397690152c81f617f372ed45182ed3 /src/lib | |
parent | 38cd3756b8b04786bea75fa10ca59ff3d46ac14e (diff) | |
download | coreboot-f6ada1c30755f3de22942996bfcf6490a9b7b6e4.tar.xz |
lib/coreboot_table: add function to allow arch code to add records
Add lb_arch_add_records() to allow the architecture code to
generically hook into the coreboot table generation.
BUG=chrome-os-partner:50214
BRANCH=glados
TEST=With all subsequent patches confirmed lb_arch_add_records() is
called when a strong symbol is provided.
Change-Id: I7c69c0ff0801392bbcf5aef586a48388b624afd4
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/13669
Tested-by: build bot (Jenkins)
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Andrey Petrov <andrey.petrov@intel.com>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/coreboot_table.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/coreboot_table.c b/src/lib/coreboot_table.c index 86f22c9689..0cfb8ace8a 100644 --- a/src/lib/coreboot_table.c +++ b/src/lib/coreboot_table.c @@ -540,6 +540,9 @@ unsigned long write_coreboot_table( lb_boot_media_params(head); + /* Add architecture records. */ + lb_arch_add_records(head); + /* Add all cbmem entries into the coreboot tables. */ cbmem_add_records_to_cbtable(head); |