diff options
author | Tom Rini <trini@konsulko.com> | 2023-08-26 11:25:08 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-08-26 11:25:08 -0400 |
commit | 11cf91f755c7b1f1c8e7865743ac589bd23b7099 (patch) | |
tree | ac16ffe5e84057ffa0d1c7e93d47c00d5c3ed532 /cmd/bootflow.c | |
parent | 05763b71d2fcfe9729bf5ef0b14bd00c3af0c985 (diff) | |
parent | 453c3fb48141f60eb9b7ab5545d94c88dc5af40c (diff) |
Merge branch '2023-08-26-bootstd-chromeos-impreovements-and-move-to-gcc-13.2' into next
First, update CI to using gcc-13.2 from 13.1, and rebuild the CI
containers. This is needed because the second part adds utilities for
tests and provides, to quote the author:
This updates the ChromiumOS bootmeth to detect multiple kernel
partitions on a disk.
It also includes minor code improvements to the partition drivers,
including accessors for the optional fields.
This series also includes some other related tweaks in testing.
Diffstat (limited to 'cmd/bootflow.c')
-rw-r--r-- | cmd/bootflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/bootflow.c b/cmd/bootflow.c index 3c3abaf8a3b..300ad3aaa76 100644 --- a/cmd/bootflow.c +++ b/cmd/bootflow.c @@ -71,7 +71,7 @@ static void show_bootflow(int index, struct bootflow *bflow, bool errors) printf("%3x %-11s %-6s %-9.9s %4x %-25.25s %s\n", index, bflow->method->name, bootflow_state_get_name(bflow->state), bflow->dev ? dev_get_uclass_name(dev_get_parent(bflow->dev)) : - "(none)", bflow->part, bflow->name, bflow->fname); + "(none)", bflow->part, bflow->name, bflow->fname ?: ""); if (errors) report_bootflow_err(bflow, bflow->err); } |