lib/version: Move board identification strings
These strings are now only expanded in lib/identity.c. This improves ccache hit rates slightly, as one built object file lib/version.o is used for all variants of a board. Also one built object file lib/identity.o can become a ccache hit for successive builds of a variant, while the commit hash changes. Change-Id: Ia7d5454d95c8698ab1c1744e63ea4c04d615bb3b Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/74449 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
committed by
Felix Held
parent
5cabc29013
commit
a9dd3c3fae
@@ -229,12 +229,8 @@ ifeq ($(CONFIG_DEBUG_SMI),y)
|
||||
smm-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
|
||||
endif
|
||||
|
||||
bootblock-y += version.c
|
||||
romstage-y += version.c
|
||||
ramstage-y += version.c
|
||||
smm-y += version.c
|
||||
verstage-y += version.c
|
||||
postcar-y += version.c
|
||||
all-y += identity.c version.c
|
||||
smm-y += identity.c version.c
|
||||
|
||||
$(call src-to-obj,bootblock,$(dir)/version.c) : $(obj)/build.h
|
||||
$(call src-to-obj,romstage,$(dir)/version.c) : $(obj)/build.h
|
||||
|
@@ -4,12 +4,12 @@
|
||||
#include <arch/cbconfig.h>
|
||||
#include <console/console.h>
|
||||
#include <console/uart.h>
|
||||
#include <identity.h>
|
||||
#include <ip_checksum.h>
|
||||
#include <boot/coreboot_tables.h>
|
||||
#include <boot/tables.h>
|
||||
#include <boot_device.h>
|
||||
#include <string.h>
|
||||
#include <version.h>
|
||||
#include <boardid.h>
|
||||
#include <device/device.h>
|
||||
#include <drivers/tpm/tpm_ppi.h>
|
||||
@@ -23,6 +23,7 @@
|
||||
#include <spi_flash.h>
|
||||
#include <smmstore.h>
|
||||
#include <types.h>
|
||||
#include <version.h>
|
||||
|
||||
#if CONFIG(USE_OPTION_TABLE)
|
||||
#include <option_table.h>
|
||||
|
14
src/lib/identity.c
Normal file
14
src/lib/identity.c
Normal file
@@ -0,0 +1,14 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <identity.h>
|
||||
|
||||
#ifndef CONFIG_MAINBOARD_VENDOR
|
||||
#error CONFIG_MAINBOARD_VENDOR not defined
|
||||
#endif
|
||||
#ifndef CONFIG_MAINBOARD_PART_NUMBER
|
||||
#error CONFIG_MAINBOARD_PART_NUMBER not defined
|
||||
#endif
|
||||
|
||||
const char mainboard_vendor[] = CONFIG_MAINBOARD_VENDOR;
|
||||
const char mainboard_part_number[] = CONFIG_MAINBOARD_PART_NUMBER;
|
||||
const char mainboard_name[] = CONFIG_MAINBOARD_VENDOR " " CONFIG_MAINBOARD_PART_NUMBER;
|
@@ -3,13 +3,6 @@
|
||||
#include <version.h>
|
||||
#include <build.h>
|
||||
|
||||
#ifndef CONFIG_MAINBOARD_VENDOR
|
||||
#error CONFIG_MAINBOARD_VENDOR not defined
|
||||
#endif
|
||||
#ifndef CONFIG_MAINBOARD_PART_NUMBER
|
||||
#error CONFIG_MAINBOARD_PART_NUMBER not defined
|
||||
#endif
|
||||
|
||||
#ifndef COREBOOT_VERSION
|
||||
#error COREBOOT_VERSION not defined
|
||||
#endif
|
||||
@@ -25,9 +18,6 @@
|
||||
#define COREBOOT_EXTRA_VERSION ""
|
||||
#endif
|
||||
|
||||
const char mainboard_vendor[] = CONFIG_MAINBOARD_VENDOR;
|
||||
const char mainboard_part_number[] = CONFIG_MAINBOARD_PART_NUMBER;
|
||||
|
||||
const char coreboot_version[] = COREBOOT_VERSION;
|
||||
const char coreboot_extra_version[] = COREBOOT_EXTRA_VERSION;
|
||||
const char coreboot_build[] = COREBOOT_BUILD;
|
||||
|
Reference in New Issue
Block a user