diff options
author | Simon Glass <sjg@chromium.org> | 2019-07-08 13:18:45 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2019-07-23 20:27:58 -0700 |
commit | a6a520e47b4b1280c93a6ac5b311c10da3485ff2 (patch) | |
tree | 47fe3c8360a9e8b83543db0d73ffaf59750e463b /tools | |
parent | c444b1a54f139a8e3fa1fc9d60300b73573d455f (diff) | |
download | u-boot-a6a520e47b4b1280c93a6ac5b311c10da3485ff2.tar.gz u-boot-a6a520e47b4b1280c93a6ac5b311c10da3485ff2.tar.bz2 u-boot-a6a520e47b4b1280c93a6ac5b311c10da3485ff2.zip |
binman: Correct comment in u_boot_spl_elf
This comment mentions the wrong default filename. Fix it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/binman/README.entries | 2 | ||||
-rw-r--r-- | tools/binman/etype/u_boot_spl_elf.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/binman/README.entries b/tools/binman/README.entries index 9cbdbbaade..c26addcfe6 100644 --- a/tools/binman/README.entries +++ b/tools/binman/README.entries @@ -496,7 +496,7 @@ Entry: u-boot-spl-elf: U-Boot SPL ELF image ------------------------------------------- Properties / Entry arguments: - - filename: Filename of SPL u-boot (default 'spl/u-boot') + - filename: Filename of SPL u-boot (default 'spl/u-boot-spl') This is the U-Boot SPL ELF image. It does not include a device tree but can be relocated to any address for execution. diff --git a/tools/binman/etype/u_boot_spl_elf.py b/tools/binman/etype/u_boot_spl_elf.py index da328ae15e..24ee77237e 100644 --- a/tools/binman/etype/u_boot_spl_elf.py +++ b/tools/binman/etype/u_boot_spl_elf.py @@ -12,7 +12,7 @@ class Entry_u_boot_spl_elf(Entry_blob): """U-Boot SPL ELF image Properties / Entry arguments: - - filename: Filename of SPL u-boot (default 'spl/u-boot') + - filename: Filename of SPL u-boot (default 'spl/u-boot-spl') This is the U-Boot SPL ELF image. It does not include a device tree but can be relocated to any address for execution. |