Support other system devices than mmcblk0

This commit is contained in:
Jan Schneider 2018-02-18 02:11:29 +01:00
parent dc1a4a77a4
commit 13de7f4270
1 changed files with 2 additions and 2 deletions

View File

@ -54,8 +54,8 @@ proc process {} {
return [rmupdate::get_firmware_info]
} elseif {[lindex $path 1] == "get_system_info"} {
set system_type [rmupdate::get_rpi_version]
set root_partition [rmupdate::get_current_root_partition_number]
return "\{\"system_type\":\"${system_type}\",\"root_partition\":${root_partition}\}"
set root_partition [rmupdate::get_partition_device [rmupdate::get_system_device] [rmupdate::get_current_root_partition_number]]
return "\{\"system_type\":\"${system_type}\",\"root_partition\":\"${root_partition}\"\}"
} elseif {[lindex $path 1] == "system_reboot"} {
exec /sbin/reboot
return "\"reboot initiated\""