2018-02-12 21:33:59 +08:00
|
|
|
@echo off
|
|
|
|
set ZEPHYR_BASE=%~dp0
|
2018-03-24 05:12:22 +08:00
|
|
|
|
|
|
|
if exist "%userprofile%\zephyrrc.cmd" (
|
|
|
|
call "%userprofile%\zephyrrc.cmd"
|
|
|
|
)
|
scripts: create meta-tool package, "west"
We have agreed to develop a meta-tool named "west", which will be a
swiss-army knife of Zephyr development. It will support use cases like
building, flashing and debugging; bootloader integration; emulator
support; and integration with multiple git repositories.
The basic usage for the tool is similar to git(1):
west [common opts] <command-name> [command opts] [<command args>]
There are common options, such as verbosity control, followed by a
mandatory sub-command. The sub-command then takes its own options and
arguments.
This patch adds the basic framework for this tool, as follows:
- a Python 3 package named 'west', in scripts/meta. There is no PyPI
integration for now; the tool will be improving quickly, so we need
to keep users up to date by having it in tree.
- an main entry point, main.py, and a package-level shim, __main__.py
- a cmd subpackage, which defines the abstract base class for commands
- logging (log.py)
- catch-all utilities (util.py)
- Windows and Unix launchers so users can type "west" to run the tool
after sourcing the appropriate zephyr-env script for their
environment.
Subsequent patches will start to add individual commands.
Signed-off-by: Marti Bolivar <marti@opensourcefoundries.com>
2018-05-09 23:08:38 +08:00
|
|
|
|
2018-09-23 21:04:35 +08:00
|
|
|
rem Zephyr meta-tool (west) launcher alias, which keeps monorepo
|
|
|
|
rem Zephyr installations' 'make flash' etc. working. See
|
|
|
|
rem https://www.python.org/dev/peps/pep-0486/ for details on the
|
|
|
|
rem virtualenv-related pieces. (We need to implement this manually
|
|
|
|
rem because Zephyr's minimum supported Python version is 3.4.)
|
|
|
|
if defined VIRTUAL_ENV (
|
2018-09-26 05:08:16 +08:00
|
|
|
doskey west=python %ZEPHYR_BASE%\scripts\west $*
|
2018-09-23 21:04:35 +08:00
|
|
|
) else (
|
2018-09-26 05:08:16 +08:00
|
|
|
doskey west=py -3 %ZEPHYR_BASE%\scripts\west $*
|
2018-09-23 21:04:35 +08:00
|
|
|
)
|