mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-26 22:29:19 +00:00
b57a4c98cf
Fixes #3385
27 lines
516 B
Plaintext
27 lines
516 B
Plaintext
##
|
|
# Reset the target machine via executing external command
|
|
#
|
|
# \param --power-on-command-cmd external command
|
|
# \param --power-on-command-param command parameter (allows to specify device)
|
|
#
|
|
|
|
|
|
proc power_on_command_cmd { } {
|
|
return [get_cmd_arg_first --power-on-command-cmd 1]
|
|
}
|
|
|
|
|
|
proc power_on_command_param { } {
|
|
return [get_cmd_arg_first --power-on-command-param 1]
|
|
}
|
|
|
|
|
|
proc run_power_on { } {
|
|
set command [power_on_command_cmd]
|
|
set param [power_on_command_param]
|
|
|
|
exec $command $param
|
|
|
|
return true
|
|
}
|