From fde46d3412491788300924fa2d265ddc87cfd8da Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Tue, 1 Aug 2017 08:08:00 +0200 Subject: [PATCH] Fix namespace --- addon/lib/rmupdate.tcl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addon/lib/rmupdate.tcl b/addon/lib/rmupdate.tcl index 71d3f2a..503f696 100644 --- a/addon/lib/rmupdate.tcl +++ b/addon/lib/rmupdate.tcl @@ -121,10 +121,10 @@ proc ::rmupdate::get_partion_start_and_size {device partition} { proc ::rmupdate::is_system_upgradeable {} { variable sys_dev - #if { [libfirmware::get_filesystem_label "${sys_dev}p2"] != "rootfs1" } { + #if { [rmupdate::get_filesystem_label "${sys_dev}p2"] != "rootfs1" } { # return 0 #} - if { [libfirmware::get_filesystem_label "${sys_dev}p3"] != "rootfs2" } { + if { [rmupdate::get_filesystem_label "${sys_dev}p3"] != "rootfs2" } { return 0 } return 1 @@ -382,7 +382,7 @@ proc ::rmupdate::update_filesystems {image {dryrun 0}} { if {$root_partition == 2} { set new_root_partition 3 } - set part_uuid [libfirmware::get_part_uuid "${sys_dev}p${new_root_partition}"] + set part_uuid [rmupdate::get_part_uuid "${sys_dev}p${new_root_partition}"] update_cmdline "${mnt_s}/cmdline.txt" "PARTUUID=${part_uuid}" } }