diff options
author | Nicholas Corgan <nick.corgan@ettus.com> | 2012-10-09 15:03:54 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-10-10 13:29:12 -0700 |
commit | 01d90259772520e555de4eacedd33aeebf51fa45 (patch) | |
tree | 676d5ed1751db31bccc2af3afaa45a59721eff46 /host/lib/utils | |
parent | adffee268c57c070ea1ed631a94c24975d0a40ae (diff) | |
download | uhd-01d90259772520e555de4eacedd33aeebf51fa45.tar.gz uhd-01d90259772520e555de4eacedd33aeebf51fa45.tar.bz2 uhd-01d90259772520e555de4eacedd33aeebf51fa45.zip |
utils: USRP N2XX Simple Net Burner
* More automated C++ implementation of usrp_n2xx_net_burner.py
* By default, installs images from standard image install directories
Diffstat (limited to 'host/lib/utils')
-rw-r--r-- | host/lib/utils/images.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/utils/images.cpp b/host/lib/utils/images.cpp index 654e31179..251cadeaa 100644 --- a/host/lib/utils/images.cpp +++ b/host/lib/utils/images.cpp @@ -38,7 +38,7 @@ std::string uhd::find_image_path(const std::string &image_name){ fs::path image_path = path / image_name; if (fs::exists(image_path)) return image_path.string(); } - throw uhd::io_error("Could not find path for image: " + image_name); + throw uhd::io_error("Could not find path for image: " + image_name + "\n\n" + uhd::print_images_error()); } std::string uhd::find_images_downloader(void){ |