summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2022-12-15 22:12:10 +0200
committerFelix Held <felix-coreboot@felixheld.de>2023-04-22 16:20:49 +0000
commita9dd3c3fae07b8740c9da30c691a738e8d5e5fa4 (patch)
treedc502d28e1119ea1aa72ba7d499e8b7de05f6d7f /util
parent5cabc29013759f667a9a08a88c58468485749ac9 (diff)
downloadcoreboot-a9dd3c3fae07b8740c9da30c691a738e8d5e5fa4.tar.gz
coreboot-a9dd3c3fae07b8740c9da30c691a738e8d5e5fa4.tar.bz2
coreboot-a9dd3c3fae07b8740c9da30c691a738e8d5e5fa4.zip
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>
Diffstat (limited to 'util')
-rw-r--r--util/sconfig/main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/sconfig/main.c b/util/sconfig/main.c
index aa79f1e187bf..a246c01c67d5 100644
--- a/util/sconfig/main.c
+++ b/util/sconfig/main.c
@@ -1965,6 +1965,7 @@ static void generate_outputc(FILE *f, const char *static_header)
fprintf(f, "#include <device/device.h>\n");
fprintf(f, "#include <device/pci.h>\n");
fprintf(f, "#include <fw_config.h>\n");
+ fprintf(f, "#include <identity.h>\n");
fprintf(f, "#include <%s>\n", static_header);
emit_chip_headers(f, chip_header.next);
emit_identifiers(f, "struct device_operations", device_operations);