diff mbox series

binman: fix default filename of u-boot-with-ucode-ptr in documentation

Message ID 20191214044726.18503-1-masahiroy@kernel.org
State Accepted
Commit f6a8c0f4680f2364289c9fc45dabab5f63fd06a0
Delegated to: Simon Glass
Headers show
Series binman: fix default filename of u-boot-with-ucode-ptr in documentation | expand

Commit Message

Masahiro Yamada Dec. 14, 2019, 4:47 a.m. UTC
The suffix should be ".bin" instead of ".dtb" .

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
---

 tools/binman/README.entries                 | 2 +-
 tools/binman/etype/u_boot_with_ucode_ptr.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Comments

Simon Glass Dec. 19, 2019, 4 p.m. UTC | #1
On Fri, 13 Dec 2019 at 21:47, Masahiro Yamada <masahiroy@kernel.org> wrote:
>
> The suffix should be ".bin" instead of ".dtb" .
>
> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
> ---
>
>  tools/binman/README.entries                 | 2 +-
>  tools/binman/etype/u_boot_with_ucode_ptr.py | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
Simon Glass Jan. 10, 2020, 8:57 a.m. UTC | #2
On Fri, 13 Dec 2019 at 21:47, Masahiro Yamada <masahiroy@kernel.org> wrote:
>
> The suffix should be ".bin" instead of ".dtb" .
>
> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
> ---
>
>  tools/binman/README.entries                 | 2 +-
>  tools/binman/etype/u_boot_with_ucode_ptr.py | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Reviewed-by: Simon Glass <sjg@chromium.org>

Applied to u-boot-dm, thanks!
diff mbox series

Patch

diff --git a/tools/binman/README.entries b/tools/binman/README.entries
index 1099433521..26050da770 100644
--- a/tools/binman/README.entries
+++ b/tools/binman/README.entries
@@ -971,7 +971,7 @@  Entry: u-boot-with-ucode-ptr: U-Boot with embedded microcode pointer
 --------------------------------------------------------------------
 
 Properties / Entry arguments:
-    - filename: Filename of u-boot-nodtb.dtb (default 'u-boot-nodtb.dtb')
+    - filename: Filename of u-boot-nodtb.bin (default 'u-boot-nodtb.bin')
     - optional-ucode: boolean property to make microcode optional. If the
         u-boot.bin image does not include microcode, no error will
         be generated.
diff --git a/tools/binman/etype/u_boot_with_ucode_ptr.py b/tools/binman/etype/u_boot_with_ucode_ptr.py
index cb7dbc68db..960a5efeb4 100644
--- a/tools/binman/etype/u_boot_with_ucode_ptr.py
+++ b/tools/binman/etype/u_boot_with_ucode_ptr.py
@@ -18,7 +18,7 @@  class Entry_u_boot_with_ucode_ptr(Entry_blob):
     """U-Boot with embedded microcode pointer
 
     Properties / Entry arguments:
-        - filename: Filename of u-boot-nodtb.dtb (default 'u-boot-nodtb.dtb')
+        - filename: Filename of u-boot-nodtb.bin (default 'u-boot-nodtb.bin')
         - optional-ucode: boolean property to make microcode optional. If the
             u-boot.bin image does not include microcode, no error will
             be generated.