yggvault ratatoskr-space connected via regular web
Color theme
also available via yggdrasil mesh http://[203:b338:2a84:a18f:986:47ae:1a4:d8d3]/pkg/meshtastic-firmware/v2.6.11.60ec05e
vault / meshtastic-firmware / v2.6.11.60ec05e

meshtastic-firmware @ v2.6.11.60ec05e

integrity

size
4.0 MiB
downloaded
last checked
detected
raw version: universal archives only
source https://github.com/meshtastic/firmware · available · github

release notes

[!CAUTION]
In older firmware, generated public/private keys may have insufficient entropy, resulting in the possibility of key reuse across devices. This release delays key generation until the user sets a LoRa region, and also mixes in additional sources of randomness. Additionally, if one of the known key collisions are detected, the user is notified, and should regenerate keys as soon as possible.

🚀 Enhancements

🐛 Bug fixes and maintenance

New Contributors

Full Changelog: https://github.com/meshtastic/firmware/compare/v2.6.10.9ce4455...v2.6.11.60ec05e

download

unix · zip
curl -fL -o v2.6.11.60ec05e.zip https://ratatoskr.space/pkg/meshtastic-firmware/v2.6.11.60ec05e.zip
                    printf '%s  %s\n' 'cc9e217ccd6c72b6a56582ab0c1c99ae3281984ca4004353f3dd3216104cc47c' 'v2.6.11.60ec05e.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/v2.6.11.60ec05e.zip"
$out = "v2.6.11.60ec05e.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "cc9e217ccd6c72b6a56582ab0c1c99ae3281984ca4004353f3dd3216104cc47c") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v2.6.11.60ec05e.tar.gz https://ratatoskr.space/pkg/meshtastic-firmware/v2.6.11.60ec05e.tar.gz
                    printf '%s  %s\n' '450bc52135c37c5753b4a21ec841b2e1018447563705fea7ba6e8febe364bf7b' 'v2.6.11.60ec05e.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/v2.6.11.60ec05e.tar.gz"
$out = "v2.6.11.60ec05e.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "450bc52135c37c5753b4a21ec841b2e1018447563705fea7ba6e8febe364bf7b") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v2.6.11.60ec05e.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/v2.6.11.60ec05e.zip
                    printf '%s  %s\n' 'cc9e217ccd6c72b6a56582ab0c1c99ae3281984ca4004353f3dd3216104cc47c' 'v2.6.11.60ec05e.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/v2.6.11.60ec05e.zip"
$out = "v2.6.11.60ec05e.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "cc9e217ccd6c72b6a56582ab0c1c99ae3281984ca4004353f3dd3216104cc47c") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v2.6.11.60ec05e.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/v2.6.11.60ec05e.tar.gz
                    printf '%s  %s\n' '450bc52135c37c5753b4a21ec841b2e1018447563705fea7ba6e8febe364bf7b' 'v2.6.11.60ec05e.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/v2.6.11.60ec05e.tar.gz"
$out = "v2.6.11.60ec05e.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "450bc52135c37c5753b4a21ec841b2e1018447563705fea7ba6e8febe364bf7b") { throw "sha256 mismatch" }
artifact format size hashes
v2.6.11.60ec05e.zip zip 4.1 MiB
blake3-24 fd851f4115c9b23010fb4655afa8066889455f58ab30a96a
sha256 cc9e217ccd6c72b6a56582ab0c1c99ae3281984ca4004353f3dd3216104cc47c
sha1 b9b251a60ad62d1411e02ad836cf4745aa4e3b84
v2.6.11.60ec05e.tar.gz tar.gz 3.4 MiB
blake3-24 0c9e527939c3719a603df8cd48c33df14951aba4494d09d9
sha256 450bc52135c37c5753b4a21ec841b2e1018447563705fea7ba6e8febe364bf7b
sha1 3429eca505c3c58baa532c2404f020dec0f5af7c

install

bazel
http_archive(
    name = "meshtastic-firmware",
    urls = ["https://ratatoskr.space/pkg/meshtastic-firmware/v2.6.11.60ec05e.tar.gz"],
    integrity = "sha256-RQvFITXDfFdTtKIeyEGy4QGER1Y3Bf6num6P6+Nkv3s=",
    strip_prefix = "meshtastic-firmware-v2.6.11.60ec05e",
)
zig
.url = "https://ratatoskr.space/pkg/meshtastic-firmware/v2.6.11.60ec05e.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
    name = "meshtastic-firmware",
    urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/v2.6.11.60ec05e.tar.gz"],
    integrity = "sha256-RQvFITXDfFdTtKIeyEGy4QGER1Y3Bf6num6P6+Nkv3s=",
    strip_prefix = "meshtastic-firmware-v2.6.11.60ec05e",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/v2.6.11.60ec05e.tar.gz",
← v2.7.15.567b8eav2.6.10.9ce4455 →