diff options
| author | Josh Blum <josh@joshknows.com> | 2012-02-18 23:38:11 -0800 | 
|---|---|---|
| committer | Josh Blum <josh@joshknows.com> | 2012-02-18 23:38:11 -0800 | 
| commit | 0df49b75024dbf205effa5bd8530173423a4d7a8 (patch) | |
| tree | 71e660ba5059ff16087cfc55c4f6c90b2c21aad7 | |
| parent | f500b92ef52312832e81574f477dbd0308242a25 (diff) | |
| download | uhd-0df49b75024dbf205effa5bd8530173423a4d7a8.tar.gz uhd-0df49b75024dbf205effa5bd8530173423a4d7a8.tar.bz2 uhd-0df49b75024dbf205effa5bd8530173423a4d7a8.zip | |
usrp2: changed download url for dd.exe
| -rw-r--r-- | host/utils/CMakeLists.txt | 2 | ||||
| -rwxr-xr-x | host/utils/usrp2_card_burner.py | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/host/utils/CMakeLists.txt b/host/utils/CMakeLists.txt index 9d557f3d2..0ecd6b4e7 100644 --- a/host/utils/CMakeLists.txt +++ b/host/utils/CMakeLists.txt @@ -67,7 +67,7 @@ ENDFOREACH(util_source)  IF(ENABLE_USRP2)      IF(WIN32 AND UHD_RELEASE_MODE) #include dd.exe          FILE(DOWNLOAD -            "http://www.ettus.com/downloads/dd.exe" +            "http://files.ettus.com/dd.exe"              ${CMAKE_CURRENT_BINARY_DIR}/dd.exe          )          INSTALL(FILES diff --git a/host/utils/usrp2_card_burner.py b/host/utils/usrp2_card_burner.py index 43689dd20..34c40d5a0 100755 --- a/host/utils/usrp2_card_burner.py +++ b/host/utils/usrp2_card_burner.py @@ -61,7 +61,7 @@ def get_dd_path():          dd_path = os.path.join(tempfile.gettempdir(), 'dd.exe')          if not os.path.exists(dd_path):              print('Downloading dd.exe to %s'%dd_path) -            dd_bin = urllib.request.urlopen('http://www.ettus.com/downloads/dd.exe').read() +            dd_bin = urllib.request.urlopen('http://files.ettus.com/dd.exe').read()              open(dd_path, 'wb').write(dd_bin)          return dd_path      return 'dd' | 
