mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-06 09:01:57 +00:00
This brings in content from commits in the upstream West repository. Since both the version here and upstream have diverged, this synchronizes them again. Signed-off-by: Marti Bolivar <marti@foundries.io>
17 lines
300 B
Python
17 lines
300 B
Python
# Copyright 2018 Open Source Foundries Limited.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
'''Zephyr RTOS meta-tool (west)
|
|
|
|
Main entry point for running this package as a module, e.g.:
|
|
|
|
py -3 west # Windows
|
|
python3 -m west # Unix
|
|
'''
|
|
|
|
from .main import main
|
|
|
|
if __name__ == '__main__':
|
|
main()
|