diff mbox series

[v4,8/8] scripts/gen_compile_commands: fix usage message

Message ID 20231001100036.34936-9-jmcosta944@gmail.com
State Accepted
Commit 311df90b3eab4dcf4124e360214b8535401c7d39
Delegated to: Tom Rini
Headers show
Series Port gen_compile_commands.py from Linux to U-Boot | expand

Commit Message

João Marcos Costa Oct. 1, 2023, 10 a.m. UTC
Replace mentions to 'kernel' by 'U-Boot' to avoid confusion.

Signed-off-by: Joao Marcos Costa <jmcosta944@gmail.com>
---
 scripts/gen_compile_commands.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/scripts/gen_compile_commands.py b/scripts/gen_compile_commands.py
index aa52e88e18..cdca85e6b0 100755
--- a/scripts/gen_compile_commands.py
+++ b/scripts/gen_compile_commands.py
@@ -37,10 +37,10 @@  def parse_arguments():
         output: Where to write the compile-commands JSON file.
         paths: The list of files/directories to handle to find .cmd files.
     """
-    usage = 'Creates a compile_commands.json database from kernel .cmd files'
+    usage = 'Creates a compile_commands.json database from U-Boot .cmd files'
     parser = argparse.ArgumentParser(description=usage)
 
-    directory_help = ('specify the output directory used for the kernel build '
+    directory_help = ('specify the output directory used for the U-Boot build '
                       '(defaults to the working directory)')
     parser.add_argument('-d', '--directory', type=str, default='.',
                         help=directory_help)