diff options
author | Nicholas Corgan <nick.corgan@ettus.com> | 2012-06-07 12:30:21 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-06-07 15:05:41 -0700 |
commit | e7df63844f0920d35bc76a9fe70f9bbb59443c2f (patch) | |
tree | 63cff49610a8f03c2168f7144e662662bb843392 /host/lib/usrp/usrp1 | |
parent | 49d4f8e479534d856a242c2271d1b930487aea6c (diff) | |
download | uhd-e7df63844f0920d35bc76a9fe70f9bbb59443c2f.tar.gz uhd-e7df63844f0920d35bc76a9fe70f9bbb59443c2f.tar.bz2 uhd-e7df63844f0920d35bc76a9fe70f9bbb59443c2f.zip |
utils: UHD Image Downloader - downloads firmware/FPGA images compatible with the current host code and places them in the images directory
Diffstat (limited to 'host/lib/usrp/usrp1')
-rw-r--r-- | host/lib/usrp/usrp1/usrp1_impl.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/host/lib/usrp/usrp1/usrp1_impl.cpp b/host/lib/usrp/usrp1/usrp1_impl.cpp index f1c11a492..ffe25b81e 100644 --- a/host/lib/usrp/usrp1/usrp1_impl.cpp +++ b/host/lib/usrp/usrp1/usrp1_impl.cpp @@ -89,11 +89,7 @@ static device_addrs_t usrp1_find(const device_addr_t &hint) usrp1_fw_image = find_image_path(hint.get("fw", "usrp1_fw.ihx")); } catch(...){ - UHD_MSG(warning) << boost::format( - "Could not locate USRP1 firmware.\n" - "Please install the images package.\n" - ); - return usrp1_addrs; + UHD_MSG(warning) << boost::format("Could not locate USRP1 firmware. %s") % print_images_error(); } UHD_LOG << "USRP1 firmware image: " << usrp1_fw_image << std::endl; |