lockdown: Fix missing spaces in boot log
Change-Id: I414703c53d356c6a69be515596c178997eed82e3 Signed-off-by: Daniel Gröber <dxld@darkboxed.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41748 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
3855a9806e
commit
a895344936
|
@ -28,7 +28,7 @@ void boot_device_security_lockdown(void)
|
|||
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 @@ void boot_device_security_lockdown(void)
|
|||
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)) {
|
||||
|
|
Loading…
Reference in New Issue