Use new location of VERSION file

This commit is contained in:
Jan Schneider 2018-03-22 23:21:37 +01:00
parent 854e5cb509
commit f9c23ce0e7
1 changed files with 5 additions and 1 deletions

View File

@ -951,7 +951,11 @@ proc ::rmupdate::clone_system {target_device {activate_clone 0}} {
}
proc ::rmupdate::get_current_firmware_version {} {
set fp [open "/boot/VERSION" r]
if {[file exists "/VERSION"]} {
set fp [open "/VERSION" r]
} else {
set fp [open "/boot/VERSION" r]
}
set data [read $fp]
close $fp
regexp {\s*VERSION\s*=s*([\d\.]+)\s*$} $data match current_version