summaryrefslogtreecommitdiff
path: root/src/drivers/ocp/vpd/Makefile.inc
diff options
context:
space:
mode:
authorJohnny Lin <johnny_lin@wiwynn.com>2023-05-29 16:23:02 +0800
committerFelix Held <felix-coreboot@felixheld.de>2023-06-01 13:12:18 +0000
commit2bb5ecbcd62354c0448e05feb0adadb9b96d47d5 (patch)
treef04f25590f9390db0c10c8bfec4235557fbd2bfd /src/drivers/ocp/vpd/Makefile.inc
parentae81497cb6c7a7d1c4dde837cb84a196752c57bf (diff)
drivers/ocp/vpd: Overwrite Linux payload's kernel command via VPD
Add a new Kconfig LINUXPAYLOAD_CMDLINE_VPD_OVERWRITE that can overwrite Linux payload's kernel command line from VPD. Currently only overwrite Linux kernel command line 'loglevel' via VPD key 'kernel_log_level'. TESTED=On OCP Delta Lake, with kernel_log_level set to 0, warm reboot time can see about 10 seconds improvement comparing to kernel log level 7. Change-Id: Idf06c7ab9958c940fc3b23d560bb9dade991a6da Signed-off-by: Johnny Lin <johnny_lin@wiwynn.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/75510 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: David Hendricks <david.hendricks@gmail.com>
Diffstat (limited to 'src/drivers/ocp/vpd/Makefile.inc')
-rw-r--r--src/drivers/ocp/vpd/Makefile.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/drivers/ocp/vpd/Makefile.inc b/src/drivers/ocp/vpd/Makefile.inc
index 8db5afaf47..b40534aec4 100644
--- a/src/drivers/ocp/vpd/Makefile.inc
+++ b/src/drivers/ocp/vpd/Makefile.inc
@@ -1,5 +1,6 @@
romstage-$(CONFIG_OCP_VPD) += vpd_util.c
ramstage-$(CONFIG_OCP_VPD) += vpd_util.c
+ramstage-$(CONFIG_LINUXPAYLOAD_CMDLINE_VPD_OVERWRITE) += vpd_cmdline.c
ifeq ($(CONFIG_VPD),y)
all-$(CONFIG_CONSOLE_OVERRIDE_LOGLEVEL) += loglevel_vpd.c
endif