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