diff mbox

[Branch,~linaro-validation/lava-dispatcher/trunk] Rev 422: Add mkdir -p /mnt/lava/boot to android deployment

Message ID 20121025115311.11599.12454.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

Dave Pigott Oct. 25, 2012, 11:53 a.m. UTC
Merge authors:
  Dave Pigott (dpigott)
Related merge proposals:
  https://code.launchpad.net/~dpigott/lava-dispatcher/boot-dir-fix/+merge/131380
  proposed by: Dave Pigott (dpigott)
  review: Approve - Yongqin Liu (liuyq0307)
  review: Approve - Fathi Boudra (fboudra)
------------------------------------------------------------
revno: 422 [merge]
fixes bug: https://launchpad.net/bugs/1071266
committer: dave.pigott@linaro.org
branch nick: trunk
timestamp: Thu 2012-10-25 12:51:54 +0100
message:
  Add mkdir -p /mnt/lava/boot to android deployment
modified:
  lava_dispatcher/device/master.py


--
lp:lava-dispatcher
https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk

You are subscribed to branch lp:lava-dispatcher.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'lava_dispatcher/device/master.py'
--- lava_dispatcher/device/master.py	2012-10-24 01:43:42 +0000
+++ lava_dispatcher/device/master.py	2012-10-25 11:27:27 +0000
@@ -538,6 +538,7 @@ 
 
 def _deploy_linaro_android_boot(session, boottbz2, target):
     logging.info("Deploying test boot filesystem")
+    session.run('mkdir -p /mnt/lava/boot')
     session.run('mount /dev/disk/by-label/testboot /mnt/lava/boot')
     session._client.target_extract(session, boottbz2, '/mnt/lava')
     _recreate_uInitrd(session, target)