]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
scripts/gen_compile_commands: fix usage message
authorJoao Marcos Costa <jmcosta944@gmail.com>
Sun, 1 Oct 2023 10:00:36 +0000 (12:00 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 11 Oct 2023 17:24:55 +0000 (13:24 -0400)
Replace mentions to 'kernel' by 'U-Boot' to avoid confusion.

Signed-off-by: Joao Marcos Costa <jmcosta944@gmail.com>
Tested-by: Joao Paulo Goncalves <joao.goncalves@toradex.com>
scripts/gen_compile_commands.py

index aa52e88e18fe73d89ed18a12bb7c6baccdf45624..cdca85e6b07cea57e2b2e4498e8b651ad24725aa 100755 (executable)
@@ -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)