"fdtoverlay -h" shows a.o.: <type> s=string, i=int, u=unsigned, x=hex Optional modifier prefix: hh or b=byte, h=2 byte, l=4 byte (default) However, unlike fdtget and fdtput, fdtoverlay does not support the "-t"/"--type" option. Fixes: 42409146f2db22d7 ("fdtoverlay: A tool that applies overlays") Signed-off-by: Geert Uytterhoeven <geert+renesas@xxxxxxxxx> --- Upstream dtc has Uwe's patch instead commit 2cdf93a6d402a161 ("fdtoverlay: Fix usage string to not mention "<type>"")/ --- scripts/dtc/fdtoverlay.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/dtc/fdtoverlay.c b/scripts/dtc/fdtoverlay.c index 5350af65679f7fbd..cac6b6576c289c18 100644 --- a/scripts/dtc/fdtoverlay.c +++ b/scripts/dtc/fdtoverlay.c @@ -23,9 +23,7 @@ /* Usage related data. */ static const char usage_synopsis[] = "apply a number of overlays to a base blob\n" - " fdtoverlay <options> [<overlay.dtbo> [<overlay.dtbo>]]\n" - "\n" - USAGE_TYPE_MSG; + " fdtoverlay <options> [<overlay.dtbo> [<overlay.dtbo>]]"; static const char usage_short_opts[] = "i:o:v" USAGE_COMMON_SHORT_OPTS; static struct option const usage_long_opts[] = { {"input", required_argument, NULL, 'i'}, -- 2.34.1