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

Side by Side Diff: tools/lk/run_snapshot_lk.sh

Issue 1649703002: Update project authors statements to Dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: Created 4 years, 10 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 unified diff | Download patch
« no previous file with comments | « tools/lk/openocd-helpers.shlib ('k') | tools/lk/run_snapshot_lk_qemu.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file 2 # Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a 3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE.md file. 4 # BSD-style license that can be found in the LICENSE.md file.
5 5
6 source $(dirname $(readlink -f $0))/devdiscovery.shlib 6 source $(dirname $(readlink -f $0))/devdiscovery.shlib
7 7
8 if [ -z "$1" -o ! -s "$1" ]; then 8 if [ -z "$1" -o ! -s "$1" ]; then
9 echo "$0: Expecting a snapshot file as fist argument." 9 echo "$0: Expecting a snapshot file as fist argument."
10 exit 1 10 exit 1
11 fi 11 fi
12 12
(...skipping 10 matching lines...) Expand all
23 # Configure the port to LK's default tty speed. 23 # Configure the port to LK's default tty speed.
24 stty -F $PORT 115200 24 stty -F $PORT 115200
25 25
26 SIZE=`cat $1 | wc -c` 26 SIZE=`cat $1 | wc -c`
27 27
28 echo "fletch" >$PORT 28 echo "fletch" >$PORT
29 sleep 1 29 sleep 1
30 echo $SIZE >$PORT 30 echo $SIZE >$PORT
31 sleep 1 31 sleep 1
32 cat $1 >$PORT 32 cat $1 >$PORT
OLDNEW
« no previous file with comments | « tools/lk/openocd-helpers.shlib ('k') | tools/lk/run_snapshot_lk_qemu.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698