mirror of
https://github.com/genodelabs/genode.git
synced 2025-03-22 20:15:20 +00:00
Renaming 'get_cmd_switch' and 'get_cmd_arg' to 'have_cmd_arg' and 'cmd_arg' respectively blends in nicely with the now omnipresent pattern with 'have_[spec|board|installed|include]'. This commit deprecates 'get_cmd_switch' and 'get_cmd_arg', which will be removed in a later commit. Issue #5432
43 lines
1011 B
Plaintext
43 lines
1011 B
Plaintext
##
|
|
# Reset the target machine via ALLNET MSR poweplug (e.g., ALL4176)
|
|
#
|
|
# \param --power-on-allnet-host network address of device
|
|
# \param --power-on-allnet-user user for device
|
|
# \param --power-on-allnet-password password for device
|
|
# \param --power-on-allnet-port target port/socket of device
|
|
#
|
|
|
|
|
|
proc power_on_allnet_host { } {
|
|
return [cmd_arg_first --power-on-allnet-host 1]
|
|
}
|
|
|
|
|
|
proc power_on_allnet_user { } {
|
|
return [cmd_arg_first --power-on-allnet-user 1]
|
|
}
|
|
|
|
|
|
proc power_on_allnet_password { } {
|
|
return [cmd_arg_first --power-on-allnet-password 1]
|
|
}
|
|
|
|
|
|
proc power_on_allnet_port { } {
|
|
return [cmd_arg_first --power-on-allnet-port 1]
|
|
}
|
|
|
|
|
|
proc run_power_on { } {
|
|
set host [power_on_allnet_host]
|
|
set user [power_on_allnet_user]
|
|
set password [power_on_allnet_password]
|
|
set power_port [power_on_allnet_port]
|
|
|
|
puts "switch port $power_port on"
|
|
|
|
exec curl -s -o /dev/null -G -d id=$power_port -d set=1 "http://$user:$password@$host/xml/jsonswitch.php"
|
|
|
|
return true
|
|
}
|