mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-28 00:11:32 +00:00
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>
This commit is contained in:
parent
33717dbb20
commit
311df90b3e
1 changed files with 2 additions and 2 deletions
|
@ -37,10 +37,10 @@ def parse_arguments():
|
||||||
output: Where to write the compile-commands JSON file.
|
output: Where to write the compile-commands JSON file.
|
||||||
paths: The list of files/directories to handle to find .cmd files.
|
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)
|
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)')
|
'(defaults to the working directory)')
|
||||||
parser.add_argument('-d', '--directory', type=str, default='.',
|
parser.add_argument('-d', '--directory', type=str, default='.',
|
||||||
help=directory_help)
|
help=directory_help)
|
||||||
|
|
Loading…
Add table
Reference in a new issue