-
Notifications
You must be signed in to change notification settings - Fork 4
/
zephyr-entry.py
executable file
·50 lines (43 loc) · 1.79 KB
/
zephyr-entry.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# zephyr-entry.py
#
# This script is to present arguments to the user of the container and then
# chuck them over to the scripts that actually do the work.
#
# Copyright (C) 2016 Intel Corporation
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import argparse
import os
import shlex
zephyr_default = 'https://gerrit.zephyrproject.org/r/zephyr '
parser = argparse.ArgumentParser(epilog="NOTE: The --workdir is the path as "
"seen inside of the container. So if -v /foo:/bar was passed"
"to docker, --workdir should be set to /bar.")
parser.add_argument("--git", nargs='+', help="git repository containing zephyr kernel")
parser.add_argument("--workdir", default='/workdir',
help="Directory containing the zephyr kernel. "
"Or the location to download the kernel sources to if --git is specfied.")
args = parser.parse_args()
if args.git:
gitarg = "--git=" + '"' + (' '.join(args.git)).replace(" ", ":|") + '"'
else:
gitarg = ""
cmd = """usersetup.py --username=zephyruser --workdir={} zephyr-launch.py {} """\
"""--workdir={}"""
cmd = cmd.format(args.workdir, gitarg, args.workdir)
cmd = shlex.shlex(cmd, posix=True)
cmd.whitespace_split = True
cmd = list(cmd)
os.execvp(cmd[0], cmd)