summaryrefslogtreecommitdiffstats
path: root/chromium/docs/website/site/developers/u-boot/ttyusb
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/docs/website/site/developers/u-boot/ttyusb')
-rw-r--r--chromium/docs/website/site/developers/u-boot/ttyusb57
1 files changed, 0 insertions, 57 deletions
diff --git a/chromium/docs/website/site/developers/u-boot/ttyusb b/chromium/docs/website/site/developers/u-boot/ttyusb
deleted file mode 100644
index 29743ad2d4c..00000000000
--- a/chromium/docs/website/site/developers/u-boot/ttyusb
+++ /dev/null
@@ -1,57 +0,0 @@
-#!/usr/bin/expect
-#
-# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-#
-
-set prompt "CrOS>"
-set device "/dev/ttyUSB1"
-set timeout -1
-
-proc do_line { text } {
- global prompt
- set chars [split $text ""]
-
- if { [lindex $chars 0] == "#" } { return }
-
- for {set index 0} {$index < [llength $chars]} {incr index 1} {
- set char [lindex $chars $index]
- send -- $char
- expect {
- -ex $char {}
- timeout { abort }
- }
- }
- send "\r"
- expect {
- "$prompt" {}
- timeout { abort }
- }
-}
-
-send_user "SPAWNING /dev/ttyUSB CONSOLE SESSION....\n"
-set port [open $device "r+"]
-spawn -open $port
-fconfigure $port -mode 115200,n,8,1
-send "\r"
-
-expect {
- "Hit any key to stop autoboot:" {
- send "\r"
- expect "$prompt" {}
- }
- "$prompt" {}
-}
-set text_file [lindex $argv 0]
-set data_source [open $text_file "r"]
-
-set timeout 1
-while {[gets $data_source line] != -1} {
- do_line $line
-}
-
-interact {
- \001 exit
-}
-send_user "\r"