diff options
| author | Simon Glass <[email protected]> | 2022-07-30 15:52:23 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-08-12 08:17:11 -0400 |
| commit | eccb25cd5922edebc15f135923aa2b4bbd26527d (patch) | |
| tree | 4ffd44ff0c951a104d180a3239b06984efa3a486 /boot/bootflow.c | |
| parent | 2662b54d70fc04f070f0e4a9742d4b3197c9f3ea (diff) | |
bootstd: Allow the bootdev to be optional in bootflows
With global bootmeths we want to scan without a bootdev. Update the logic
to allow this.
Change the bootflow command to show the bootdev only when valid.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'boot/bootflow.c')
| -rw-r--r-- | boot/bootflow.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/boot/bootflow.c b/boot/bootflow.c index 24ba3c34660..37bccb823a1 100644 --- a/boot/bootflow.c +++ b/boot/bootflow.c @@ -307,7 +307,8 @@ void bootflow_free(struct bootflow *bflow) void bootflow_remove(struct bootflow *bflow) { - list_del(&bflow->bm_node); + if (bflow->dev) + list_del(&bflow->bm_node); list_del(&bflow->glob_node); bootflow_free(bflow); |
