diff options
author | Jonas Karlman <jonas@kwiboo.se> | 2024-08-03 12:41:44 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-08-28 10:07:59 -0600 |
commit | e83ced1a24095de66e526bd6c10f0f24584baaee (patch) | |
tree | ad052f5450f3ffd4d07ec8a60f5339103fba8815 /common | |
parent | cf85cd84aa1a396126448b6d405e458d15f42976 (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 <jonas@kwiboo.se>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common')
-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 d9fe6f997ab..154675d0e40 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -797,7 +797,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; |