Marti Bolivar | b1e6ea2 | 2017-10-11 10:23:11 -0400 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
2 | |||||
3 | '''ARC architecture helper script for zephyr_flash_debug.py | ||||
4 | |||||
5 | FIXME: This is not portable; a better solution is needed. | ||||
6 | See zephyr_flash_debug.py for details.''' | ||||
7 | |||||
8 | import os | ||||
9 | import subprocess | ||||
10 | import sys | ||||
11 | |||||
12 | os.setsid() | ||||
13 | command = sys.argv[1:] | ||||
14 | subprocess.call(command) |