diff options
| author | Jonas Karlman <[email protected]> | 2024-08-03 12:41:44 +0000 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-08-28 12:55:59 -0600 |
| commit | f3a2d793d7ae04634afb727f96ff6b0f6144c8ae (patch) | |
| tree | 409097726f59791dc8a192155596b4d6ba20218a | |
| parent | ee2af844ba1b27b2e959c4e649e4b769fbeb4074 (diff) | |
bootstage: Fix unstash of records from SPL
The commit b81e31a1e6c5 ("bootstash: Do not provide a default address
for all") changed a bootstage unstash call to bootstage stash, this
has resulted in bootstage records stashed in SPL no longer get unstaged
in U-Boot proper. Fix this by changing back to a unstage call.
Fixes: b81e31a1e6c5 ("bootstash: Do not provide a default address for all")
Signed-off-by: Jonas Karlman <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
| -rw-r--r-- | common/board_f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/board_f.c b/common/board_f.c index 29e185137ad..30d7fbf498f 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -810,7 +810,7 @@ static int initf_bootstage(void) if (ret) return ret; if (from_spl) { - ret = bootstage_stash_default(); + ret = bootstage_unstash_default(); if (ret && ret != -ENOENT) { debug("Failed to unstash bootstage: err=%d\n", ret); return ret; |
