aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJoao Marcos Costa <jmcosta944@gmail.com>2023-10-01 12:00:36 +0200
committerTom Rini <trini@konsulko.com>2023-10-11 13:24:55 -0400
commit311df90b3eab4dcf4124e360214b8535401c7d39 (patch)
treea954cb460dce820a864e05a41380b84056718b75 /scripts
parent33717dbb20e00b5fa1791d9dfae3ffd6b528af86 (diff)
downloadu-boot-311df90b3eab4dcf4124e360214b8535401c7d39.zip
u-boot-311df90b3eab4dcf4124e360214b8535401c7d39.tar.gz
u-boot-311df90b3eab4dcf4124e360214b8535401c7d39.tar.bz2
scripts/gen_compile_commands: fix usage message
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>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen_compile_commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gen_compile_commands.py b/scripts/gen_compile_commands.py
index aa52e88..cdca85e 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)