Hello Daniel Gröber,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/41748
to review the following change.
Change subject: lockdown: Fix missing spaces in boot log ......................................................................
lockdown: Fix missing spaces in boot log
Change-Id: I414703c53d356c6a69be515596c178997eed82e3 Signed-off-by: Daniel Gröber dxld@darkboxed.org --- M src/security/lockdown/lockdown.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/48/41748/1
diff --git a/src/security/lockdown/lockdown.c b/src/security/lockdown/lockdown.c index 81478cc..c2e2ac3 100644 --- a/src/security/lockdown/lockdown.c +++ b/src/security/lockdown/lockdown.c @@ -28,7 +28,7 @@ printk(BIOS_DEBUG, "'WP_RO only'"); lock_type = CTRLR_WP; } - printk(BIOS_DEBUG, "using CTRL...\n"); + printk(BIOS_DEBUG, " using CTRL...\n"); } else { if (CONFIG(BOOTMEDIA_LOCK_WHOLE_RO)) { printk(BIOS_DEBUG, "'readonly'"); @@ -37,7 +37,7 @@ printk(BIOS_DEBUG, "'WP_RO only'"); lock_type = MEDIA_WP; } - printk(BIOS_DEBUG, "using flash chip...\n"); + printk(BIOS_DEBUG, " using flash chip...\n"); }
if (CONFIG(BOOTMEDIA_LOCK_WPRO_VBOOT_RO)) {