From 83dd35d8b461dc974f306d4294f4c2d3a16b1d64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juli=C3=A1n=20Caro=20Linares?= Date: Fri, 26 Jan 2024 11:13:54 +0100 Subject: [PATCH] http to https --- .../boards/yun-rev2/tutorials/yun-sys-upgrade/content.md | 4 ++-- .../portenta-h7/tutorials/over-the-air-update/content.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/content/hardware/02.hero/boards/yun-rev2/tutorials/yun-sys-upgrade/content.md b/content/hardware/02.hero/boards/yun-rev2/tutorials/yun-sys-upgrade/content.md index 176e1925db..40c9e8cf77 100644 --- a/content/hardware/02.hero/boards/yun-rev2/tutorials/yun-sys-upgrade/content.md +++ b/content/hardware/02.hero/boards/yun-rev2/tutorials/yun-sys-upgrade/content.md @@ -8,9 +8,9 @@ tags: [Yún] ***Note: this procedure is applicable only on the Yún; if you have anything different, you may still be able to upgrade it to the current image, but using a different process that we do not encourage nor suggest. It has dangers and difficulties and you could easily brick your board. The warranty of our boards that go through this process is void. If you still want to try it, you need to to upgrade the bootloader following the [bootloader update](https://www.arduino.cc/en/Tutorial/YunUBootReflash) procedure and then proceed with the kernel and rootfs as explained on the same page.*** **Yún Shield owners only** -The [Yún Shield](https://www.arduino.cc/en/Main/ArduinoYunShield) is shipped with a different OpenWRT Linux image which is incompatible with the v1.5.3 Yún update you can find on the main [download page](https://www.arduino.cc/en/Main/Software). The stock OpenWRT Linux image of the Yún Shield has the version number 1.6.2 and there aren't yet available updates. However the sysupgrade image is available for download [here](http://downloads.arduino.cc/openwrtyun/1.6.2/YunSysupgradeImage_v1.6.2.zip). +The [Yún Shield](https://www.arduino.cc/en/Main/ArduinoYunShield) is shipped with a different OpenWRT Linux image which is incompatible with the v1.5.3 Yún update you can find on the main [download page](https://www.arduino.cc/en/Main/Software). The stock OpenWRT Linux image of the Yún Shield has the version number 1.6.2 and there aren't yet available updates. However the sysupgrade image is available for download [here](https://downloads.arduino.cc/openwrtyun/1.6.2/YunSysupgradeImage_v1.6.2.zip). -The list of available packages for the Yún is available [here](http://downloads.arduino.cc/openwrtyun/1.6.2/packages/index.html). +The list of available packages for the Yún is available [here](https://downloads.arduino.cc/openwrtyun/1.6.2/packages/index.html). See the list of [changes](https://github.com/arduino/openwrt-yun-1505/blob/15.05-openwrt-patched/CHANGELOG). **If you erroneously upgraded a Yún board with the image for the Yún Shield (1.6.2) the device won't boot because it has an incompatible bootloader. You can still recover your device following this [Image Restore procedure](https://www.arduino.cc/en/Tutorial/YunSysRestore) and keep your original warranty status.** diff --git a/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/content.md b/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/content.md index 6382a4baac..64ee549dd3 100644 --- a/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/content.md +++ b/content/hardware/04.pro/boards/portenta-h7/tutorials/over-the-air-update/content.md @@ -165,7 +165,7 @@ Once you have done it, you should be able to run the bin2ota.py script successfu Now you can upload your .OTA file to an online reachable location, e.g. *OTA_Usage_Portenta.ino.PORTENTA_H7_M7.ota* has been uploaded to: -http://downloads.arduino.cc/ota/OTA_Usage_Portenta.ino.PORTENTA_H7_M7.ota +https://downloads.arduino.cc/ota/OTA_Usage_Portenta.ino.PORTENTA_H7_M7.ota You can change the default file location on the code by modifying the next line on the ***"OTA_Qspi_Flash"** sketch or in the **"OTA_SD_Portenta"** sketch depending on which method are you going to follow: @@ -246,7 +246,7 @@ The complete script is as follows. static char const SSID[] = SSID_NAME; /* your network SSID (name) */ static char const PASS[] = SSID_PASS; /* your network password (use for WPA, or use as key for WEP) */ -static char const OTA_FILE_LOCATION[] = "http://downloads.arduino.cc/ota/OTA_Usage_Portenta.ino.PORTENTA_H7_M7.ota"; +static char const OTA_FILE_LOCATION[] = "https://downloads.arduino.cc/ota/OTA_Usage_Portenta.ino.PORTENTA_H7_M7.ota"; void setup() { @@ -344,7 +344,7 @@ void loop() static char const SSID[] = SSID_NAME; /* your network SSID (name) */ static char const PASS[] = SSID_PASS; /* your network password (use for WPA, or use as key for WEP) */ -static char const OTA_FILE_LOCATION[] = "http://downloads.arduino.cc/ota/OTA_Usage_Portenta.ino.PORTENTA_H7_M7.ota"; +static char const OTA_FILE_LOCATION[] = "https://downloads.arduino.cc/ota/OTA_Usage_Portenta.ino.PORTENTA_H7_M7.ota"; void setup() {