aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils/usrp2_card_burner.py
diff options
context:
space:
mode:
Diffstat (limited to 'host/utils/usrp2_card_burner.py')
-rwxr-xr-xhost/utils/usrp2_card_burner.py2
1 files changed, 1 insertions, 1 deletions
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'