aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp_clock/octoclock
diff options
context:
space:
mode:
authorNicholas Corgan <nick.corgan@ettus.com>2015-10-02 14:27:41 -0700
committerMartin Braun <martin.braun@ettus.com>2015-10-06 11:33:07 -0700
commitc7564bc99e8a1b72af1cef61d4fbde182fc55da7 (patch)
treeeb916edc3b9da5e39c2b8d35190836ba6e20002e /host/lib/usrp_clock/octoclock
parentfee054dfaf9cf4dc389c8b35ee28c45c2dc63952 (diff)
downloaduhd-c7564bc99e8a1b72af1cef61d4fbde182fc55da7.tar.gz
uhd-c7564bc99e8a1b72af1cef61d4fbde182fc55da7.tar.bz2
uhd-c7564bc99e8a1b72af1cef61d4fbde182fc55da7.zip
octoclock: fixed still-in-bootloader error message
Diffstat (limited to 'host/lib/usrp_clock/octoclock')
-rw-r--r--host/lib/usrp_clock/octoclock/octoclock_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp_clock/octoclock/octoclock_impl.cpp b/host/lib/usrp_clock/octoclock/octoclock_impl.cpp
index ef1bc8ca0..22c26b42c 100644
--- a/host/lib/usrp_clock/octoclock/octoclock_impl.cpp
+++ b/host/lib/usrp_clock/octoclock/octoclock_impl.cpp
@@ -431,7 +431,7 @@ std::string octoclock_impl::_get_images_help_message(const std::string &addr){
#endif
//Get burner command
- const std::string burner_path = (fs::path(uhd::get_pkg_path()) / "bin" / "octoclock_firmware_burner").string();
+ const std::string burner_path = (fs::path(uhd::get_pkg_path()) / "bin" / "uhd_image_loader").string();
const std::string burner_cmd = str(boost::format("%s %s--addr=\"%s\"") % burner_path % ml % addr);
return str(boost::format("%s\n%s") % uhd::print_utility_error("uhd_images_downloader.py") % burner_cmd);
}