summaryrefslogtreecommitdiffstats
path: root/host/utils
diff options
context:
space:
mode:
Diffstat (limited to 'host/utils')
-rw-r--r--host/utils/CMakeLists.txt2
-rwxr-xr-xhost/utils/usrp2_card_burner.py2
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'