diff options
author | Usha P <usha.p@intel.com> | 2020-02-17 15:07:53 +0530 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-02-18 14:59:48 +0000 |
commit | 5bf7ffbe0814528436cfef5bdca00c1ef7f584d1 (patch) | |
tree | 945e64452eb1592cb604322e312d9908c203efea /src/cpu/x86 | |
parent | eb3cd856106dae68da4aae39f9954fb90770e8a2 (diff) |
cpu/x86/name: Make name.c file available in romstage
In this patch, name.c file that includes the function definition for
fill_processor_name which is used by the report_cpu_info function is been
made available in romstage.
This is done to facilitate the report_platform_info to be called from
romstage, as the intention is to move the report_platform_info to romstage
for all SOC's due to the bootblock size constraint.
BUG=None
TEST=Build and boot APL, GLK and CNL platforms.
Change-Id: Ifd6d4b80c2e07d02adaed676a56efeb6fb704552
Signed-off-by: Usha P <usha.p@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38940
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Subrata Banik <subrata.banik@intel.com>
Diffstat (limited to 'src/cpu/x86')
-rw-r--r-- | src/cpu/x86/name/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/x86/name/Makefile.inc b/src/cpu/x86/name/Makefile.inc index 944c18f87f..02b5863192 100644 --- a/src/cpu/x86/name/Makefile.inc +++ b/src/cpu/x86/name/Makefile.inc @@ -12,4 +12,5 @@ ## bootblock-y += name.c +romstage-y += name.c ramstage-y += name.c |