OSDN Git Service

Initial revision
[pf3gnuchains/sourceware.git] / dejagnu / config / base-config.exp
1 #   Copyright (C) 1997 Free Software Foundation, Inc.
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
7
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
16
17 # Please email any bugs, comments, and/or additions to this file to:
18 # DejaGnu@cygnus.com
19
20 #
21 # reboot_hook -- called to reboot a target board. Returns 1 on
22 # success, 0 otherwise.
23 #
24 proc reboot_via_x10 { dest } {
25     if [board_info $dest exists name] {
26         set dest [board_info $dest name];
27     }
28
29     if [board_info $dest exists x10] {
30         set x10 [board_info $dest x10];
31         verbose "rebooting x10 unit $x10" 1
32         rsh_exec rtl "/usr/unsupported/bin/x10-hellcab unit $x10 off"
33         sleep 2
34         rsh_exec rtl "/usr/unsupported/bin/x10-hellcab unit $x10 on"
35         sleep 2
36         return 1;
37     }
38     return 0;
39 }
40
41 proc ${board}_reboot { args } {
42     if { [llength $args] > 0} {
43         set dest [lindex $args 0];
44     } else {
45         set dest target;
46     }
47     return [reboot_via_x10 $dest];
48 }