aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/utils/paths.cpp
Commit message (Collapse)AuthorAgeFilesLines
* uhd: replaced the `images_error` with a generic utility errorBen Hilburn2014-11-211-4/+33
| | | | | | - Deleted images.*, moved functionality to paths.* - Applies for all devices that check FPGA or FW compat numbers - Adds generic utility search tool
* Squashed merge of Coverity fixes.Ben Hilburn2013-11-271-2/+3
|
* paths: get_module_paths adds share/uhd/modules to the list of applicable pathsNicholas Corgan2013-10-301-0/+1
|
* utils: fix declaration of "env_path_sep" such that it is always initialized ↵Michael Dickens2013-10-281-10/+11
| | | | before it is used in the "get_env_paths" function, by moving it from the global scope to inside that function. This change allows UHD_STATIC_BLOCK(load_modules) to work correctly.
* uhd: work on moving binaries to lib/uhdJosh Blum2012-11-081-4/+4
|
* uhd: added uhd::get_pkg_data_pathJosh Blum2012-06-051-4/+5
|
* uhd: used shared get_tmp_path for logging as wellJosh Blum2012-05-161-2/+28
| | | | Moved some of the log.cpp tmp paths smarts into paths as well
* usrp: basically working iq cal on txJosh Blum2011-11-101-0/+27
|
* uhd: removed constants.hpp.in, replaced w/ per source compile definesJosh Blum2011-04-191-1/+0
|
* uhd: use UHD_PKG_DATA_PATH environment variable to override the one in constantsJosh Blum2011-04-191-16/+11
| | | | The installer sets UHD_PKG_DATA_PATH, we can can handle transplanted builds.
* uhd: specify the UHD_PKG_DATA_PATH once (since images shipped w/ drivers)Josh Blum2011-04-141-6/+2
|
* uhd: replaced instanced of std::exception with the uhd exceptionsJosh Blum2011-02-241-1/+0
|
* uhd: fixed maxosx bug, was resizing the transport bufferJosh Blum2011-01-261-0/+1
| | | | | | but it cant be resized on macos and I messed up the code that blocked that behavior reimplemented block in usrp2_impl, seems more correct here
* uhd: update copyright dates on host codeJosh Blum2011-01-131-1/+1
|
* uhd: integrated boost split or tokenizer into source files, remove string ↵Josh Blum2011-01-061-2/+6
| | | | split from algorithms header
* uhd: added image utils code to search the images paths for image filesJosh Blum2010-08-191-14/+0
|
* uhd: added the concept of installer path (along with local path) for package ↵Josh Blum2010-08-161-2/+6
| | | | data
* uhd: use cmake to convert the pkg data dir to native system formatJosh Blum2010-08-151-2/+2
|
* uhd: made split string utility functionJosh Blum2010-08-121-8/+2
|
* uhd: avoid segfaults - use CPP macros for paths and dont split empty stringJosh Blum2010-08-111-6/+6
|
* uhd: created library code to handle paths for images and modulesJosh Blum2010-08-091-0/+103
- read from environment variable paths - utility functions to get paths and search for images - modified load modules to call the utility functions - added private header constants.hpp to contain cmake variables of interest - modified version.cpp to use this constants file