util/cbmem: Update banner string regular expression
Banner string format has been changed (CB:30935). We should update our regular expression correspondingly. Also add "verstage" into the stage search list since some boards (e.g., Kukui) might start console initialization at verstage. Change-Id: I16eba3ac5e203e80b0bfd42a4294401dbccd4463 Signed-off-by: You-Cheng Syu <youcheng@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33779 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
02b1e20f00
commit
1430b3995f
|
@ -797,9 +797,11 @@ static void dump_console(int one_boot_only)
|
||||||
a banner, store the last match for that stage in cursor and stop. */
|
a banner, store the last match for that stage in cursor and stop. */
|
||||||
cursor = 0;
|
cursor = 0;
|
||||||
if (one_boot_only) {
|
if (one_boot_only) {
|
||||||
#define BANNER_REGEX(stage) "\n\ncoreboot-[^\n]* " stage " starting\\.\\.\\.\n"
|
#define BANNER_REGEX(stage) \
|
||||||
|
"\n\ncoreboot-[^\n]* " stage " starting.*\\.\\.\\.\n"
|
||||||
#define OVERFLOW_REGEX(stage) "\n\\*\\*\\* Pre-CBMEM " stage " console overflow"
|
#define OVERFLOW_REGEX(stage) "\n\\*\\*\\* Pre-CBMEM " stage " console overflow"
|
||||||
const char *regex[] = { BANNER_REGEX("bootblock"),
|
const char *regex[] = { BANNER_REGEX("bootblock"),
|
||||||
|
BANNER_REGEX("verstage"),
|
||||||
OVERFLOW_REGEX("romstage"),
|
OVERFLOW_REGEX("romstage"),
|
||||||
BANNER_REGEX("romstage"),
|
BANNER_REGEX("romstage"),
|
||||||
OVERFLOW_REGEX("ramstage"),
|
OVERFLOW_REGEX("ramstage"),
|
||||||
|
|
Loading…
Reference in New Issue