diff options
author | Simon Glass <sjg@chromium.org> | 2022-02-08 11:49:47 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-02-22 10:05:44 -0700 |
commit | 00959d871cc8264d9e06c8cd0ee23c324699ab9e (patch) | |
tree | ef4ba755d959f79312885fbdd09be8821fb1c457 /include/spl.h | |
parent | 941671a19cfb8e0fad3bd2a11ab5137e43c2ddc5 (diff) | |
download | u-boot-00959d871cc8264d9e06c8cd0ee23c324699ab9e.tar.gz |
spl: x86: Correct the binman symbols for SPL
These symbols are incorrect, meaning that binman cannot find the
associated entry. This leads to errors like:
binman: Section '/binman/simple-bin': Symbol '_binman_spl_prop_size'
in entry '/binman/simple-bin/u-boot-spl/u-boot-spl-nodtb':
Entry 'spl' not found in list (mkimage,u-boot-spl-nodtb,
u-boot-spl-bss-pad,u-boot-spl-dtb,u-boot-spl,u-boot-img,main-section)
Fix it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/spl.h')
-rw-r--r-- | include/spl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/spl.h b/include/spl.h index bb92bc6ec6c..8ceb3c0f095 100644 --- a/include/spl.h +++ b/include/spl.h @@ -269,8 +269,8 @@ struct spl_load_info { */ binman_sym_extern(ulong, u_boot_any, image_pos); binman_sym_extern(ulong, u_boot_any, size); -binman_sym_extern(ulong, spl, image_pos); -binman_sym_extern(ulong, spl, size); +binman_sym_extern(ulong, u_boot_spl, image_pos); +binman_sym_extern(ulong, u_boot_spl, size); /** * spl_get_image_pos() - get the image position of the next phase |