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

Unified Diff: tools/lk/run_snapshot_lk_qemu.sh

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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 | « tools/lk/run_snapshot_lk.sh ('k') | tools/persistent_process_info.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/lk/run_snapshot_lk_qemu.sh
diff --git a/tools/lk/run_snapshot_lk_qemu.sh b/tools/lk/run_snapshot_lk_qemu.sh
index 1dfe9bafda5721ebd66accfbc3068ce9e76b941d..c63981696c3662de6b29cffdaa9369a47e8dda96 100755
--- a/tools/lk/run_snapshot_lk_qemu.sh
+++ b/tools/lk/run_snapshot_lk_qemu.sh
@@ -37,7 +37,7 @@ trap cleanup_file EXIT
mkfifo "$PIPEDIR/qemu.in" "$PIPEDIR/qemu.out"
echo "Starting qemu..."
-./third_party/qemu/linux/qemu/bin/qemu-system-arm -machine virt -cpu cortex-a15 -m 16 -kernel third_party/lk/out/build-qemu-virt-fletch/lk.elf -nographic -serial pipe:$PIPEDIR/qemu &
+./third_party/qemu/linux/qemu/bin/qemu-system-arm -machine virt -cpu cortex-a15 -m 16 -kernel third_party/lk/out/build-qemu-virt-dartino/lk.elf -nographic -serial pipe:$PIPEDIR/qemu &
PID=$!
cleanup() {
echo "Killing $PID"
@@ -51,8 +51,8 @@ echo "Started with PID $PID"
echo "Waiting for qemu to come up..."
grep -qe "entering main console loop" $PIPEDIR/qemu.out
-echo "Starting fletch..."
-echo "fletch" > $PIPEDIR/qemu.in
+echo "Starting dartino..."
+echo "dartino" > $PIPEDIR/qemu.in
echo "Waiting for size..."
grep -qe "STEP1" $PIPEDIR/qemu.out
@@ -68,7 +68,7 @@ cat $1 >$PIPEDIR/qemu.in
while IFS='' read -r line; do
echo "$line"
- if [ "$line" = $'TEARING DOWN fletch-vm...\r' ]; then
+ if [ "$line" = $'TEARING DOWN dartino-vm...\r' ]; then
break;
fi
if [ "$line" = $'Aborted (immediate)\r' ]; then
« no previous file with comments | « tools/lk/run_snapshot_lk.sh ('k') | tools/persistent_process_info.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698