aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/mpmd/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* cmake: Update coding style to use lowercase commandsMartin Braun2018-11-141-8/+8
| | | | | | | | | | | | | | | | | Also updates our coding style file. Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code (with GNU compliant sed): cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done > convert.sed \ && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' \ '*CMakeLists.txt' | xargs -0 gsed -i -f convert.sed && rm convert.sed (Make sure the backslashes don't get mangled!)
* mpmd: Factor find and prop tree init code out of mpmd_impl.cppMartin Braun2018-02-071-0/+2
| | | | No functional changes.
* Move all headers to SPDX format, harmonize license headersMartin Braun2017-12-221-13/+2
|
* mpmd: Refactor MPM transport architecture, use managersMartin Braun2017-12-221-3/+12
| | | | | | | | | | | | | | This splits up the transport code in mpmd_impl across multiple classes to properly leverage the request_xport/commit_xport API in MPM. Different types of transport (UDP, liberio) use their own distinct classes, which are generated dynamically on request. This is a true refactoring despite the large amount of changes; there are no functional differences. Reviewed-By: Brent Stapleton <brent.stapleton@ettus.com> Reviewed-By: Trung Tran <trung.tran@ettus.com> Reviewed-By: Ashish Chaudhari <ashish.chaudhari@ettus.com>
* mpm/mpmd: Move to request_xport()/commit_xport() architectureMartin Braun2017-12-221-0/+6
| | | | | This commit combines code from various branches to finally enable both UDP and Liberio transports.
* fpga load: adding MPMD image loader functionBrent Stapleton2017-12-221-0/+1
| | | | uhd_image_loader now supports type=n310, and loads the FPGA provided in the arguments.
* mpmd: Refactored code to allow multi-device initializationMartin Braun2017-12-221-4/+1
|
* Rename netd to mpmdMartin Braun2017-12-221-0/+26