diff options
| author | Donald Delmar Davis <ddavis3@jaguarlandrover.com> | 2015-05-06 23:32:39 +0000 |
|---|---|---|
| committer | Donald Delmar Davis <ddavis3@jaguarlandrover.com> | 2015-05-06 23:32:39 +0000 |
| commit | 1afbae126b4597a3928a325df4f6c41b30591b80 (patch) | |
| tree | 57db3c6cca71d067725d67baed24fa23f165a7b6 | |
| parent | 281762a14f0f6679cfa5d56933a47250100f0573 (diff) | |
still not working
| -rwxr-xr-x | loader.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -80,6 +80,7 @@ def check_environment(d): retval |= Flags.NO_IMAGES.value subprocess.call(["umount","/mnt/obs"]) + subprocess.call(["mkdir","/mnt/obs"]) try: subprocess.check_call(["mount","depot:/home/public/OBS_Downloads","/mnt/obs"]) @@ -229,8 +230,8 @@ def load_bmap_image(d,directory): try: proc = subprocess.Popen( cmd, - stdout=subprocess.PIPE, -# stderr='/dev/null', + stdout=output, + stderr=subprocess.PIPE, universal_newlines=True, ) @@ -385,7 +386,7 @@ while True: archive_image(d,'/mnt/local/') continue if choice=="obs": - load_image(d,'/mnt/obs/snapshots/tizen/ivi-3.0/latest/images/atom/') + load_image(d,'/mnt/obs/snapshots/') continue else: |
