Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1092)

Unified Diff: src/scripts/emit_gpt_scripts.sh

Issue 1633018: devserver support for update images from buildbot. (Closed)
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/platform/dev/devserver.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/scripts/emit_gpt_scripts.sh
diff --git a/src/scripts/emit_gpt_scripts.sh b/src/scripts/emit_gpt_scripts.sh
index 4fea63d17535ff499d7f19df29e5028f488cb785..825f511ed2cb4a2fb5d0e8b9965b087bd7f0adb3 100755
--- a/src/scripts/emit_gpt_scripts.sh
+++ b/src/scripts/emit_gpt_scripts.sh
@@ -45,10 +45,10 @@ sort -n -k 3 $TMP | \
while read start size part x x x label x; do \
file="part_$part"
loc="\"\$TARGET\""
- echo "sudo dd if=$loc of=$file bs=512 skip=$start count=$size" \
+ echo "dd if=$loc of=$file bs=512 skip=$start count=$size" \
>> "$UNPACK"
echo \
- "sudo dd if=$file of=$loc bs=512 seek=$start count=$size conv=notrunc" \
+ "dd if=$file of=$loc bs=512 seek=$start count=$size conv=notrunc" \
>> "$PACK"
done
« no previous file with comments | « src/platform/dev/devserver.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698