aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Perry <charles.perry@savoirfairelinux.com>2023-09-04 07:31:03 -0700
committerDavid Gibson <david@gibson.dropbear.id.au>2023-09-05 11:44:10 +1000
commitd774337275666e013a5930aebace1c6f76e343b1 (patch)
tree952f59fe436f41db50731201d791401f4820526c
parentad8bf9f9aa39625d732b7db16badecc0842750e2 (diff)
downloaddtc-d774337275666e013a5930aebace1c6f76e343b1.zip
dtc-d774337275666e013a5930aebace1c6f76e343b1.tar.gz
dtc-d774337275666e013a5930aebace1c6f76e343b1.tar.bz2
dtc: fix missing string in usage_opts_help
This fixes the output of the `dtc --help` command as the last few entries were offset by one. Signed-off-by: Charles Perry <charles.perry@savoirfairelinux.com> Message-ID: <20230904143104.1941715-1-charles.perry@savoirfairelinux.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
-rw-r--r--dtc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/dtc.c b/dtc.c
index d2e4e2b..0655c2e 100644
--- a/dtc.c
+++ b/dtc.c
@@ -105,6 +105,7 @@ static const char * const usage_opts_help[] = {
"\n\tEnable/disable warnings (prefix with \"no-\")",
"\n\tEnable/disable errors (prefix with \"no-\")",
"\n\tEnable generation of symbols",
+ "\n\tPossibly generates a __local_fixups__ and a __fixups__ node at the root node",
"\n\tEnable auto-alias of labels",
"\n\tAnnotate output .dts with input source file and line (-T -T for more details)",
"\n\tPrint this help and exit",