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/utils | |
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/utils')
-rw-r--r-- | host/lib/utils/images.cpp | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/host/lib/utils/images.cpp b/host/lib/utils/images.cpp index a124cc208..654e31179 100644 --- a/host/lib/utils/images.cpp +++ b/host/lib/utils/images.cpp @@ -1,5 +1,5 @@ // -// Copyright 2010-2011 Ettus Research LLC +// Copyright 2010-2012 Ettus Research LLC // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -17,16 +17,18 @@ #include <uhd/utils/images.hpp> #include <uhd/exception.hpp> +#include <uhd/utils/paths.hpp> #include <boost/foreach.hpp> #include <boost/filesystem.hpp> #include <vector> +#include <iostream> namespace fs = boost::filesystem; std::vector<fs::path> get_image_paths(void); //defined in paths.cpp /*********************************************************************** - * Find a image in the image paths + * Find an image in the image paths **********************************************************************/ std::string uhd::find_image_path(const std::string &image_name){ if (fs::exists(image_name)){ @@ -38,3 +40,15 @@ std::string uhd::find_image_path(const std::string &image_name){ } throw uhd::io_error("Could not find path for image: " + image_name); } + +std::string uhd::find_images_downloader(void){ + return fs::path((fs::path(get_pkg_data_path()) / "utils" / "uhd_images_downloader.py")).string(); +} + +std::string uhd::print_images_error(void){ + #ifdef UHD_PLATFORM_WIN32 + return "As an Administrator, please run:\n\n\"" + find_images_downloader() + "\""; + #else + return "Please run:\n\nsudo \"" + find_images_downloader() + "\""; + #endif +} |