mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
The update is required to include 3c3ca64b5f0dd9eef7b1ce1c65cc6e8e9147dd38 otherwise baremetal does not on VExpress. baremetal: create a baremetal setup with crosstool-ng buildroot: improve directory location: move out/dl inside out/buildroot/download, and add a new out/buildroot/build level tagline: generalize, deliver more value than howto, since now howtos are starting to multiply rename all top scripts to separate words with hyphen more consistently, e.g. run-gdb instead of rungdb getvar: list all variables gem5: make m5out section to focus all releated information at Prevent m5term Text file busy when rebuilding gem5 while it is running.
46 lines
1002 B
Python
Executable File
46 lines
1002 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
import common
|
|
|
|
parser = common.get_argparse(argparse_args={
|
|
'description': '''Run a Buildroot ToolChain tool like readelf or objdump.
|
|
|
|
For example, to get some information about the arm vmlinux:
|
|
|
|
....
|
|
./%(prog)s readelf -- -e "$(./getvar vmlinux)"
|
|
....
|
|
|
|
Get the list of available tools with:
|
|
|
|
....
|
|
ls "$(./getvar -a arm host_bin_dir)"
|
|
....
|
|
'''
|
|
})
|
|
parser.add_argument(
|
|
'--dry',
|
|
help='Just output the tool path to stdout but actually run it',
|
|
action='store_true',
|
|
)
|
|
parser.add_argument('tool', help='Which tool to run.')
|
|
parser.add_argument(
|
|
'extra_args',
|
|
default=[],
|
|
help='Extra arguments for the tool.',
|
|
metavar='extra-args',
|
|
nargs='*'
|
|
)
|
|
args = common.setup(parser)
|
|
if args.dry:
|
|
print(common.get_toolchain_tool(args.tool))
|
|
else:
|
|
sys.exit(common.run_cmd(
|
|
[common.get_toolchain_tool(args.tool)] + args.extra_args,
|
|
cmd_file=os.path.join(common.run_dir, 'run-toolchain.sh'),
|
|
))
|