View Source Systems
Using a Nerves System
When you generate a new Nerves project using the mix nerves.new
task, you will
end up with something like the following in your mix.exs
configuration:
# ...
@target System.get_env("MIX_TARGET") || "host"
# ...
defp deps do
[
{:nerves, "~> 1.3", runtime: false},
{:shoehorn, "~> 0.4"},
{:ring_logger, "~> 0.4"}
] ++ deps(@target)
end
defp deps("host"), do: []
defp deps(target) do
[
{:nerves_runtime, "~> 0.6"}
] ++ system(target)
end
def system("rpi"), do: {:nerves_system_rpi, "~> 1.0", runtime: false}
def system("rpi0"), do: {:nerves_system_rpi0, "~> 1.0", runtime: false}
# ...
def system(target), do: Mix.raise "Unknown MIX_TARGET: #{target}"
This allows Nerves to load one or more target-specific dependencies when a
MIX_TARGET
system environment variable is specified. The official
nerves_system-*
dependencies contain the standard Buildroot configuration for
the Nerves platform on a given hardware target and have a dependency on the
appropriate toolchain for that target. The system and toolchain also reference a
pre-compiled version of the relevant artifact so that Mix can simply download
them instead of having to compile them (which takes quite a while).
Compatibility
The Nerves System (nerves_system_*
) dependency determines the OTP version
running on the target. It is possible that a recent update to the Nerves
System pulled in a new version of Erlang/OTP. If you are using an official
Nerves System, you can verify this by reviewing the chart below or
Changelog that comes with the release.
nerves_system_bbb
bbb | Erlang/OTP | Nerves | Nerves System BR | Buildroot | Linux |
---|---|---|---|---|---|
2.22.1 | 26.2.5 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.2 | 2024.02.1 | 6.6.15 |
2.22.0 | 26.2.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.0 | 2024.02 | 6.6.15 |
2.21.0 | 26.2.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.26.1 | 2023.11.1 | 6.1.69 |
2.20.2 | 26.2.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.3 | 2023.08.4 | 6.1.46 |
2.20.1 | 26.1.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.2 | 2023.08.4 | 6.1.46 |
2.20.0 | 26.1.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.2 | 2023.08.4 | 6.1.46 |
2.19.1 | 26.1.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.1 | 2023.05.3 | 5.10 |
2.19.0 | 26.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.0 | 2023.05.2 | 5.10 |
2.18.2 | 26.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.3 | 2023.02.3 | 5.10 |
2.18.1 | 26.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.2 | 2023.02.3 | 5.10 |
2.18.0 | 26.0 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.1 | 2023.02.2 | 5.10 |
2.17.2 | 25.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.5 | 2022.11.3 | 5.10 |
2.17.1 | 25.2.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.3 | 2022.11.1 | 5.10 |
2.17.0 | 25.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.1 | 2022.11 | 5.10 |
2.16.2 | 25.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.6 | 2022.08.3 | 5.10 |
2.16.1 | 25.1.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.2 | 2022.08.1 | 5.10 |
2.16.0 | 25.1.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.1 | 2022.08.1 | 5.10.120 |
2.15.3 | 25.0.4 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.20.6 | 2022.05.2 | 5.10.120 |
2.15.2 | 25.0.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.4 | 2022.05 | 5.10.120 |
2.15.1 | 25.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.3 | 2022.05 | 5.10.120 |
2.15.0 | 25.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.3 | 2022.05 | 5.15.44 |
2.14.0 | 25.0 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.19.0 | 2022.02.1 | 5.10.100 |
2.13.4 | 24.3.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.6 | 2021.11.2 | 5.10.100 |
2.13.3 | 24.2.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.5 | 2021.11.2 | 5.10.87 |
2.13.2 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.4 | 2021.11.1 | 5.10.87 |
2.13.1 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.18.3 | 2021.11 | 5.10.65 |
2.13.0 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.18.2 | 2021.11 | 5.10.65 |
2.12.3 | 24.1.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.4 | 2021.08.2 | 5.4.52 |
2.12.2 | 24.1.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.3 | 2021.08.1 | 5.4.52 |
2.12.1 | 24.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.1 | 2021.08.1 | 5.4.52 |
2.12.0 | 24.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.0 | 2021.08 | 5.4.52 |
2.11.2 | 24.0.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.16.4 | 2021.05.1 | 5.4.52 |
2.11.1 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.16.1 | 2021.05 | 5.4.52 |
2.11.0 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.16.0 | 2021.05 | 5.4.52 |
2.10.1 | 23.3.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.15.1 | 2021.02.1 | 5.4.52 |
2.10.0 | 23.2.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.15.0 | 2021.02 | 5.4.52 |
2.9.0 | 23.2.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.14.4 | 2020.11.2 | 5.4.52 |
2.8.3 | 23.1.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.7 | 2020.08.2 | 5.4.52 |
2.8.2 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.5 | 2020.08.2 | 5.4.52 |
2.8.1 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.4 | 2020.08.1 | 5.4.52 |
2.8.0 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.2 | 2020.08 | 4.19.120 |
2.7.2 | 23.0.3 | ~> 1.5.4 or ~> 1.6.0 | 1.12.4 | 2020.05.1 | 4.19.120 |
2.7.1 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19.120 |
2.7.0 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19.120 |
2.6.2 | 22.3.4 | ~> 1.5.4 or ~> 1.6.0 | 1.11.4 | 2020.02.1 | 4.19.103 |
2.6.1 | 22.3.1 | ~> 1.5.4 or ~> 1.6.0 | 1.11.2 | 2020.02 | 4.19.103 |
2.6.0 | 22.2.8 | ~> 1.5.4 or ~> 1.6.0 | 1.11.0 | 2020.02 | 4.19.103 |
2.5.2 | 22.2.4 | ~> 1.5.0 | 1.10.2 | 2019.11.1 | 4.19.72 |
2.5.1 | 22.2.2 | ~> 1.5.0 | 1.10.1 | 2019.11.1 | 4.19.72 |
2.5.0 | 22.1.5 | ~> 1.5.0 | 1.10.0 | 2019.11 | 4.19.72 |
nerves_system_rpi
rpi | Erlang/OTP | Nerves | Nerves System BR | Buildroot | Linux |
---|---|---|---|---|---|
1.27.1 | 26.2.5 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.2 | 2024.02.1 | 6.1 |
1.27.0 | 26.2.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.0 | 2024.02 | 6.1 |
1.26.0 | 26.2.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.26.1 | 2023.11.1 | 6.1 |
1.25.1 | 26.2.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.3 | 2023.08.4 | 6.1 |
1.25.0 | 26.1.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.2 | 2023.08.4 | 6.1 |
1.24.1 | 26.1.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.1 | 2023.05.3 | 5.15 |
1.24.0 | 26.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.0 | 2023.05.2 | 5.15 |
1.23.2 | 26.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.3 | 2023.02.3 | 5.15 |
1.23.1 | 26.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.2 | 2023.02.3 | 5.15 |
1.23.0 | 26.0 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.1 | 2023.02.2 | 5.15 |
1.22.2 | 25.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.5 | 2022.11.3 | 5.15 |
1.22.1 | 25.2.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.3 | 2022.11.1 | 5.15 |
1.22.0 | 25.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.1 | 2022.11 | 5.15 |
1.21.2 | 25.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.6 | 2022.08.3 | 5.15 |
1.21.1 | 25.1.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.2 | 2022.08.1 | 5.15 |
1.21.0 | 25.1.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.1 | 2022.08.1 | 5.15 |
1.20.2 | 25.0.4 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.20.6 | 2022.05.2 | 5.15 |
1.20.1 | 25.0.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.4 | 2022.05 | 5.15 |
1.20.0 | 25.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.3 | 2022.05 | 5.15 |
1.19.0 | 25.0 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.19.0 | 2022.02.1 | 5.10 |
1.18.4 | 24.3.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.6 | 2021.11.2 | 5.10 |
1.18.3 | 24.2.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.5 | 2021.11.2 | 5.10 |
1.18.2 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.4 | 2021.11.1 | 5.10 |
1.18.1 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.18.3 | 2021.11 | 5.10 |
1.18.0 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.18.2 | 2021.11 | 5.10 |
1.17.3 | 24.1.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.4 | 2021.08.2 | 5.10 |
1.17.2 | 24.1.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.3 | 2021.08.1 | 5.10 |
1.17.1 | 24.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.1 | 2021.08.1 | 5.4 |
1.17.0 | 24.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.0 | 2021.08 | 5.4 |
1.16.2 | 24.0.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.16.4 | 2021.05.1 | 5.4 |
1.16.1 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.16.1 | 2021.05 | 5.4 |
1.16.0 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.16.0 | 2021.05 | 5.4 |
1.15.1 | 23.3.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.15.1 | 2021.02.1 | 5.4 |
1.15.0 | 23.2.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.15.0 | 2021.02 | 5.4 |
1.14.1 | 23.2.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.14.4 | 2020.11.2 | 5.4 |
1.14.0 | 23.2.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.14.4 | 2020.11.2 | 5.4 |
1.13.3 | 23.1.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.7 | 2020.08.2 | 5.4 |
1.13.2 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.5 | 2020.08.2 | 5.4 |
1.13.1 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.4 | 2020.08.1 | 5.4 |
1.13.0 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.2 | 2020.08 | 4.19 |
1.12.2 | 23.0.3 | ~> 1.5.4 or ~> 1.6.0 | 1.12.4 | 2020.05.1 | 4.19 |
1.12.1 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19 |
1.12.0 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19 |
1.11.2 | 22.3.4 | ~> 1.5.4 or ~> 1.6.0 | 1.11.4 | 2020.02.1 | 4.19 |
1.11.1 | 22.3.1 | ~> 1.5.4 or ~> 1.6.0 | 1.11.2 | 2020.02 | 4.19 |
1.11.0 | 22.2.8 | ~> 1.5.4 or ~> 1.6.0 | 1.11.0 | 2020.02 | 4.19 |
1.10.2 | 22.2.4 | ~> 1.5.0 | 1.10.2 | 2019.11.1 | 4.19 |
1.10.1 | 22.2.2 | ~> 1.5.0 | 1.10.1 | 2019.11.1 | 4.19 |
1.10.0 | 22.1.5 | ~> 1.5.0 | 1.10.0 | 2019.11 | 4.19 |
1.9.2 | 22.1.5 | ~> 1.5.0 | 1.9.5 | 2019.08.2 | 4.19 |
nerves_system_rpi0
rpi0 | Erlang/OTP | Nerves | Nerves System BR | Buildroot | Linux |
---|---|---|---|---|---|
1.27.1 | 26.2.5 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.2 | 2024.02.1 | 6.1 |
1.27.0 | 26.2.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.0 | 2024.02 | 6.1 |
1.26.0 | 26.2.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.26.1 | 2023.11.1 | 6.1 |
1.25.1 | 26.2.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.3 | 2023.08.4 | 6.1 |
1.25.0 | 26.1.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.2 | 2023.08.4 | 6.1 |
1.24.1 | 26.1.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.1 | 2023.05.3 | 5.15 |
1.24.0 | 26.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.0 | 2023.05.2 | 5.15 |
1.23.2 | 26.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.3 | 2023.02.3 | 5.15 |
1.23.1 | 26.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.2 | 2023.02.3 | 5.15 |
1.23.0 | 26.0 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.1 | 2023.02.2 | 5.15 |
1.22.2 | 25.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.5 | 2022.11.3 | 5.15 |
1.22.1 | 25.2.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.3 | 2022.11.1 | 5.15 |
1.22.0 | 25.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.1 | 2022.11 | 5.15 |
1.21.2 | 25.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.6 | 2022.08.3 | 5.15 |
1.21.1 | 25.1.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.2 | 2022.08.1 | 5.15 |
1.21.0 | 25.1.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.1 | 2022.08.1 | 5.15 |
1.20.2 | 25.0.4 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.20.6 | 2022.05.2 | 5.15 |
1.20.1 | 25.0.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.4 | 2022.05 | 5.15 |
1.20.0 | 25.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.3 | 2022.05 | 5.15 |
1.19.0 | 25.0 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.19.0 | 2022.02.1 | 5.10 |
1.18.4 | 24.3.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.6 | 2021.11.2 | 5.10 |
1.18.3 | 24.2.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.5 | 2021.11.2 | 5.10 |
1.18.2 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.4 | 2021.11.1 | 5.10 |
1.18.1 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.18.3 | 2021.11 | 5.10 |
1.18.0 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.18.2 | 2021.11 | 5.10 |
1.17.3 | 24.1.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.4 | 2021.08.2 | 5.10 |
1.17.2 | 24.1.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.3 | 2021.08.1 | 5.10 |
1.17.1 | 24.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.1 | 2021.08.1 | 5.4 |
1.17.0 | 24.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.0 | 2021.08 | 5.4 |
1.16.2 | 24.0.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.16.4 | 2021.05.1 | 5.4 |
1.16.1 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.16.1 | 2021.05 | 5.4 |
1.16.0 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.16.0 | 2021.05 | 5.4 |
1.15.1 | 23.3.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.15.1 | 2021.02.1 | 5.4 |
1.15.0 | 23.2.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.15.0 | 2021.02 | 5.4 |
1.14.1 | 23.2.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.14.4 | 2020.11.2 | 5.4 |
1.14.0 | 23.2.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.14.4 | 2020.11.2 | 5.4 |
1.13.3 | 23.1.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.7 | 2020.08.2 | 5.4 |
1.13.2 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.5 | 2020.08.2 | 5.4 |
1.13.1 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.4 | 2020.08.1 | 5.4 |
1.13.0 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.2 | 2020.08 | 4.19 |
1.12.2 | 23.0.3 | ~> 1.5.4 or ~> 1.6.0 | 1.12.4 | 2020.05.1 | 4.19 |
1.12.1 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19 |
1.12.0 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19 |
1.11.2 | 22.3.4 | ~> 1.5.4 or ~> 1.6.0 | 1.11.4 | 2020.02.1 | 4.19 |
1.11.1 | 22.3.1 | ~> 1.5.4 or ~> 1.6.0 | 1.11.2 | 2020.02 | 4.19 |
1.11.0 | 22.2.8 | ~> 1.5.4 or ~> 1.6.0 | 1.11.0 | 2020.02 | 4.19 |
1.10.2 | 22.2.4 | ~> 1.5.0 | 1.10.2 | 2019.11.1 | 4.19 |
1.10.1 | 22.2.2 | ~> 1.5.0 | 1.10.1 | 2019.11.1 | 4.19 |
1.10.0 | 22.1.5 | ~> 1.5.0 | 1.10.0 | 2019.11 | 4.19 |
1.9.2 | 22.1.5 | ~> 1.5.0 | 1.9.5 | 2019.08.2 | 4.19 |
nerves_system_rpi2
rpi2 | Erlang/OTP | Nerves | Nerves System BR | Buildroot | Linux |
---|---|---|---|---|---|
1.27.1 | 26.2.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.2 | 2024.02.1 | 6.1 |
1.27.0 | 26.2.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.0 | 2024.02 | 6.1 |
1.26.0 | 26.2.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.26.1 | 2023.11.1 | 6.1 |
1.25.1 | 26.2.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.3 | 2023.08.4 | 6.1 |
1.25.0 | 26.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.2 | 2023.08.4 | 6.1 |
1.24.1 | 26.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.1 | 2023.05.3 | 5.15 |
1.24.0 | 26.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.0 | 2023.05.2 | 5.15 |
1.23.2 | 26.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.3 | 2023.02.3 | 5.15 |
1.23.1 | 26.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.2 | 2023.02.3 | 5.15 |
1.23.0 | 26.0 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.1 | 2023.02.2 | 5.15 |
1.22.2 | 25.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.5 | 2022.11.3 | 5.15 |
1.22.1 | 25.2.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.3 | 2022.11.1 | 5.15 |
1.22.0 | 25.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.1 | 2022.11 | 5.15 |
1.21.2 | 25.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.6 | 2022.08.3 | 5.15 |
1.21.1 | 25.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.2 | 2022.08.1 | 5.15 |
1.21.0 | 25.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.1 | 2022.08.1 | 5.15 |
1.20.2 | 25.0.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.20.6 | 2022.05.2 | 5.15 |
1.20.1 | 25.0.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.4 | 2022.05 | 5.15 |
1.20.0 | 25.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.3 | 2022.05 | 5.15 |
1.19.0 | 25.0 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.19.0 | 2022.02.1 | 5.10 |
1.18.4 | 24.3.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.6 | 2021.11.2 | 5.10 |
1.18.3 | 24.2.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.5 | 2021.11.2 | 5.10 |
1.18.2 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.4 | 2021.11.1 | 5.10 |
1.18.1 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.18.3 | 2021.11 | 5.10 |
1.18.0 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.18.2 | 2021.11 | 5.10 |
1.17.3 | 24.1.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.4 | 2021.08.2 | 5.10 |
1.17.2 | 24.1.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.3 | 2021.08.1 | 5.10 |
1.17.1 | 24.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.1 | 2021.08.1 | 5.4 |
1.17.0 | 24.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.0 | 2021.08 | 5.4 |
1.16.2 | 24.0.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.16.4 | 2021.05.1 | 5.4 |
1.16.1 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.16.1 | 2021.05 | 5.4 |
1.16.0 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.16.0 | 2021.05 | 5.4 |
1.15.1 | 23.3.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.15.1 | 2021.02.1 | 5.4 |
1.15.0 | 23.2.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.15.0 | 2021.02 | 5.4 |
1.14.0 | 23.2.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.14.4 | 2020.11.2 | 5.4 |
1.13.3 | 23.1.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.7 | 2020.08.2 | 5.4 |
1.13.2 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.5 | 2020.08.2 | 5.4 |
1.13.1 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.4 | 2020.08.1 | 5.4 |
1.13.0 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.2 | 2020.08 | 4.19 |
1.12.2 | 23.0.3 | ~> 1.5.4 or ~> 1.6.0 | 1.12.4 | 2020.05.1 | 4.19 |
1.12.1 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19 |
1.12.0 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19 |
1.11.2 | 22.3.4 | ~> 1.5.4 or ~> 1.6.0 | 1.11.4 | 2020.02.1 | 4.19 |
1.11.1 | 22.3.1 | ~> 1.5.4 or ~> 1.6.0 | 1.11.2 | 2020.02 | 4.19 |
1.11.0 | 22.2.8 | ~> 1.5.4 or ~> 1.6.0 | 1.11.0 | 2020.02 | 4.19 |
1.10.2 | 22.2.4 | ~> 1.5.0 | 1.10.2 | 2019.11.1 | 4.19 |
1.10.1 | 22.2.2 | ~> 1.5.0 | 1.10.1 | 2019.11.1 | 4.19 |
1.10.0 | 22.1.5 | ~> 1.5.0 | 1.10.0 | 2019.11 | 4.19 |
1.9.2 | 22.1.5 | ~> 1.5.0 | 1.9.5 | 2019.08.2 | 4.19 |
1.9.1 | 22.1.1 | ~> 1.5.0 | 1.9.4 | 2019.08.1 | 4.19 |
nerves_system_rpi3
rpi3 | Erlang/OTP | Nerves | Nerves System BR | Buildroot | Linux |
---|---|---|---|---|---|
1.27.1 | 26.2.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.2 | 2024.02.1 | 6.1 |
1.27.0 | 26.2.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.0 | 2024.02 | 6.1 |
1.26.0 | 26.2.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.26.1 | 2023.11.1 | 6.1 |
1.25.2 | 26.2.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.3 | 2023.08.4 | 6.1 |
1.25.1 | 26.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.2 | 2023.08.4 | 6.1 |
1.25.0 | 26.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.2 | 2023.08.4 | 6.1 |
1.24.1 | 26.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.1 | 2023.05.3 | 5.15 |
1.24.0 | 26.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.0 | 2023.05.2 | 5.15 |
1.23.2 | 26.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.3 | 2023.02.3 | 5.15 |
1.23.1 | 26.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.2 | 2023.02.3 | 5.15 |
1.23.0 | 26.0 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.1 | 2023.02.2 | 5.15 |
1.22.2 | 25.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.5 | 2022.11.3 | 5.15 |
1.22.1 | 25.2.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.3 | 2022.11.1 | 5.15 |
1.22.0 | 25.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.1 | 2022.11 | 5.15 |
1.21.2 | 25.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.6 | 2022.08.3 | 5.15 |
1.21.1 | 25.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.2 | 2022.08.1 | 5.15 |
1.21.0 | 25.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.1 | 2022.08.1 | 5.15 |
1.20.2 | 25.0.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.20.6 | 2022.05.2 | 5.15 |
1.20.1 | 25.0.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.4 | 2022.05 | 5.15 |
1.20.0 | 25.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.3 | 2022.05 | 5.15 |
1.19.0 | 25.0 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.19.0 | 2022.02.1 | 5.10 |
1.18.4 | 24.3.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.6 | 2021.11.2 | 5.10 |
1.18.3 | 24.2.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.5 | 2021.11.2 | 5.10 |
1.18.2 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.4 | 2021.11.1 | 5.10 |
1.18.1 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.18.3 | 2021.11 | 5.10 |
1.18.0 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.18.2 | 2021.11 | 5.10 |
1.17.4 | 24.1.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.4 | 2021.08.2 | 5.10 |
1.17.3 | 24.1.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.3 | 2021.08.1 | 5.10 |
1.17.2 | 24.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.1 | 2021.08.1 | 5.4 |
1.17.1 | 24.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.0 | 2021.08 | 5.4 |
1.17.0 | 24.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.0 | 2021.08 | 5.4 |
1.16.2 | 24.0.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.16.4 | 2021.05.1 | 5.4 |
1.16.1 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.16.1 | 2021.05 | 5.4 |
1.16.0 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.16.0 | 2021.05 | 5.4 |
1.15.1 | 23.3.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.15.1 | 2021.02.1 | 5.4 |
1.15.0 | 23.2.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.15.0 | 2021.02 | 5.4 |
1.14.0 | 23.2.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.14.4 | 2020.11.2 | 5.4 |
1.13.3 | 23.1.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.7 | 2020.08.2 | 5.4 |
1.13.2 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.5 | 2020.08.2 | 5.4 |
1.13.1 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.4 | 2020.08.1 | 5.4 |
1.13.0 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.2 | 2020.08 | 4.19 |
1.12.2 | 23.0.3 | ~> 1.5.4 or ~> 1.6.0 | 1.12.4 | 2020.05.1 | 4.19 |
1.12.1 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19 |
1.12.0 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19 |
1.11.2 | 22.3.4 | ~> 1.5.4 or ~> 1.6.0 | 1.11.4 | 2020.02.1 | 4.19 |
1.11.1 | 22.3.1 | ~> 1.5.4 or ~> 1.6.0 | 1.11.2 | 2020.02 | 4.19 |
1.11.0 | 22.2.8 | ~> 1.5.4 or ~> 1.6.0 | 1.11.0 | 2020.02 | 4.19 |
1.10.2 | 22.2.4 | ~> 1.5.0 | 1.10.2 | 2019.11.1 | 4.19 |
1.10.1 | 22.2.2 | ~> 1.5.0 | 1.10.1 | 2019.11.1 | 4.19 |
1.10.0 | 22.1.5 | ~> 1.5.0 | 1.10.0 | 2019.11 | 4.19 |
nerves_system_rpi3a
rpi3a | Erlang/OTP | Nerves | Nerves System BR | Buildroot | Linux |
---|---|---|---|---|---|
1.27.1 | 26.2.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.2 | 2024.02.1 | 6.1 |
1.27.0 | 26.2.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.0 | 2024.02 | 6.1 |
1.26.0 | 26.2.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.26.1 | 2023.11.1 | 6.1 |
1.25.1 | 26.2.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.3 | 2023.08.4 | 6.1 |
1.25.0 | 26.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.2 | 2023.08.4 | 6.1 |
1.24.1 | 26.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.1 | 2023.05.3 | 5.15 |
1.24.0 | 26.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.0 | 2023.05.2 | 5.15 |
1.23.2 | 26.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.3 | 2023.02.3 | 5.15 |
1.23.1 | 26.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.2 | 2023.02.3 | 5.15 |
1.23.0 | 26.0 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.1 | 2023.02.2 | 5.15 |
1.22.2 | 25.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.5 | 2022.11.3 | 5.15 |
1.22.1 | 25.2.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.3 | 2022.11.1 | 5.15 |
1.22.0 | 25.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.1 | 2022.11 | 5.15 |
1.21.2 | 25.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.6 | 2022.08.3 | 5.15 |
1.21.1 | 25.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.2 | 2022.08.1 | 5.15 |
1.21.0 | 25.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.1 | 2022.08.1 | 5.15 |
1.20.2 | 25.0.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.20.6 | 2022.05.2 | 5.15 |
1.20.1 | 25.0.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.4 | 2022.05 | 5.15 |
1.20.0 | 25.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.3 | 2022.05 | 5.15 |
1.19.0 | 25.0 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.19.0 | 2022.02.1 | 5.10 |
1.18.4 | 24.3.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.6 | 2021.11.2 | 5.10 |
1.18.3 | 24.2.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.5 | 2021.11.2 | 5.10 |
1.18.2 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.4 | 2021.11.1 | 5.10 |
1.18.1 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.18.3 | 2021.11 | 5.10 |
1.18.0 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.18.2 | 2021.11 | 5.10 |
1.17.3 | 24.1.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.4 | 2021.08.2 | 5.10 |
1.17.2 | 24.1.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.3 | 2021.08.1 | 5.10 |
1.17.1 | 24.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.1 | 2021.08.1 | 5.4 |
1.17.0 | 24.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.0 | 2021.08 | 5.4 |
1.16.2 | 24.0.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.16.4 | 2021.05.1 | 5.4 |
1.16.1 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.16.1 | 2021.05 | 5.4 |
1.16.0 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.16.0 | 2021.05 | 5.4 |
1.15.1 | 23.3.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.15.1 | 2021.02.1 | 5.4 |
1.15.0 | 23.2.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.15.0 | 2021.02 | 5.4 |
1.14.0 | 23.2.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.14.4 | 2020.11.2 | 5.4 |
1.13.3 | 23.1.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.7 | 2020.08.2 | 5.4 |
1.13.2 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.5 | 2020.08.2 | 5.4 |
1.13.1 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.4 | 2020.08.1 | 5.4 |
1.13.0 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.2 | 2020.08 | 4.19 |
1.12.2 | 23.0.3 | ~> 1.5.4 or ~> 1.6.0 | 1.12.4 | 2020.05.1 | 4.19 |
1.12.1 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19 |
1.12.0 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19 |
1.11.2 | 22.3.4 | ~> 1.5.4 or ~> 1.6.0 | 1.11.4 | 2020.02.1 | 4.19 |
1.11.1 | 22.3.1 | ~> 1.5.4 or ~> 1.6.0 | 1.11.2 | 2020.02 | 4.19 |
1.11.0 | 22.2.8 | ~> 1.5.4 or ~> 1.6.0 | 1.11.0 | 2020.02 | 4.19 |
1.10.2 | 22.2.4 | ~> 1.5.0 | 1.10.2 | 2019.11.1 | 4.19 |
1.10.1 | 22.2.2 | ~> 1.5.0 | 1.10.1 | 2019.11.1 | 4.19 |
1.10.0 | 22.1.5 | ~> 1.5.0 | 1.10.0 | 2019.11 | 4.19 |
1.9.2 | 22.1.5 | ~> 1.5.0 | 1.9.5 | 2019.08.2 | 4.19 |
1.9.1 | 22.1.1 | ~> 1.5.0 | 1.9.4 | 2019.08.1 | 4.19 |
nerves_system_rpi4
rpi4 | Erlang/OTP | Nerves | Nerves System BR | Buildroot | Linux |
---|---|---|---|---|---|
1.27.1 | 26.2.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.2 | 2024.02.1 | 6.1 |
1.27.0 | 26.2.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.0 | 2024.02 | 6.1 |
1.26.0 | 26.2.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.26.1 | 2023.11.1 | 6.1 |
1.25.1 | 26.2.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.3 | 2023.08.4 | 6.1 |
1.25.0 | 26.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.2 | 2023.08.4 | 6.1 |
1.24.1 | 26.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.1 | 2023.05.3 | 6.1 |
1.24.0 | 26.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.0 | 2023.05.2 | 6.1 |
1.23.2 | 26.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.3 | 2023.02.3 | 6.1 |
1.23.1 | 26.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.2 | 2023.02.3 | 6.1 |
1.23.0 | 26.0 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.1 | 2023.02.2 | 6.1 |
1.22.2 | 25.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.5 | 2022.11.3 | 5.15 |
1.22.1 | 25.2.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.3 | 2022.11.1 | 5.15 |
1.22.0 | 25.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.1 | 2022.11 | 5.15 |
1.21.2 | 25.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.6 | 2022.08.3 | 5.15 |
1.21.1 | 25.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.2 | 2022.08.1 | 5.15 |
1.21.0 | 25.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.1 | 2022.08.1 | 5.15 |
1.20.2 | 25.0.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.20.6 | 2022.05.2 | 5.15 |
1.20.1 | 25.0.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.4 | 2022.05 | 5.15 |
1.20.0 | 25.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.3 | 2022.05 | 5.15 |
1.19.0 | 25.0 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.19.0 | 2022.02.1 | 5.10 |
1.18.4 | 24.3.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.6 | 2021.11.2 | 5.10 |
1.18.3 | 24.2.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.5 | 2021.11.2 | 5.10 |
1.18.2 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.4 | 2021.11.1 | 5.10 |
1.18.1 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.18.3 | 2021.11 | 5.10 |
1.18.0 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.18.2 | 2021.11 | 5.10 |
1.17.3 | 24.1.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.4 | 2021.08.2 | 5.10 |
1.17.2 | 24.1.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.3 | 2021.08.1 | 5.10 |
1.17.1 | 24.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.1 | 2021.08.1 | 5.4 |
1.17.0 | 24.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.17.0 | 2021.08 | 5.4 |
1.16.3 | 24.0.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.16.5 | 2021.05.1 | 5.4 |
1.16.2 | 24.0.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.16.4 | 2021.05.1 | 5.4 |
1.16.1 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.16.1 | 2021.05 | 5.4 |
1.16.0 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.16.0 | 2021.05 | 5.4 |
1.15.1 | 23.3.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.15.1 | 2021.02.1 | 5.4 |
1.15.0 | 23.2.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.15.0 | 2021.02 | 5.4 |
1.14.0 | 23.2.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.3 | 1.14.4 | 2020.11.2 | 5.4 |
1.13.5 | 23.1.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.7 | 2020.08.2 | 5.4 |
1.13.3 | 23.1.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.7 | 2020.08.2 | 5.4 |
1.13.2 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.5 | 2020.08.2 | 5.4 |
1.13.1 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.4 | 2020.08.1 | 5.4 |
1.13.0 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.2 | 2020.08 | 4.19 |
1.12.2 | 23.0.3 | ~> 1.5.4 or ~> 1.6.0 | 1.12.4 | 2020.05.1 | 4.19 |
1.12.1 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19 |
1.12.0 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19 |
1.11.3 | 22.3.4 | ~> 1.5.4 or ~> 1.6.0 | 1.11.4 | 2020.02.1 | 4.19 |
1.11.2 | 22.3.1 | ~> 1.5.4 or ~> 1.6.0 | 1.11.2 | 2020.02 | 4.19 |
1.11.1 | 22.2.8 | ~> 1.5.4 or ~> 1.6.0 | 1.11.0 | 2020.02 | 4.19 |
1.11.0 | 22.2.8 | ~> 1.5.4 or ~> 1.6.0 | 1.11.0 | 2020.02 | 4.19 |
1.10.2 | 22.2.4 | ~> 1.5 | 1.10.2 | 2019.11.1 | 4.19 |
1.10.1 | 22.2.2 | ~> 1.5 | 1.10.1 | 2019.11.1 | 4.19 |
nerves_system_osd32mp1
osd32mp1 | Erlang/OTP | Nerves | Nerves System BR | Buildroot | Linux |
---|---|---|---|---|---|
0.18.1 | 26.2.5 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.2 | 2024.02.1 | 5.4 |
0.18.0 | 26.2.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.0 | 2024.02 | 5.4 |
0.17.0 | 26.2.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.26.1 | 2023.11.1 | 5.4 |
0.16.1 | 26.2.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.3 | 2023.08.4 | 5.4 |
0.16.0 | 26.1.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.2 | 2023.08.4 | 5.4 |
0.15.1 | 26.1.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.1 | 2023.05.3 | 5.4 |
0.15.0 | 26.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.0 | 2023.05.2 | 5.4 |
0.14.2 | 26.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.3 | 2023.02.3 | 5.4 |
0.14.1 | 26.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.2 | 2023.02.3 | 5.4 |
0.14.0 | 26.0 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.1 | 2023.02.2 | 5.4 |
0.13.2 | 25.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.5 | 2022.11.3 | 5.4 |
0.13.1 | 25.2.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.3 | 2022.11.1 | 5.4 |
0.13.0 | 25.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.1 | 2022.11 | 5.4 |
0.12.2 | 25.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.6 | 2022.08.3 | 5.4 |
0.12.1 | 25.1.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.2 | 2022.08.1 | 5.4 |
0.12.0 | 25.1.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.1 | 2022.08.1 | 5.4.41 |
0.11.2 | 25.0.4 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.20.6 | 2022.05.2 | 5.4.41 |
0.11.1 | 25.0.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.4 | 2022.05 | 5.4.41 |
0.11.0 | 25.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.3 | 2022.05 | 5.4.41 |
0.10.0 | 25.0 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.19.0 | 2022.02.1 | 5.4.41 |
0.9.4 | 24.3.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.6 | 2021.11.2 | 5.4.41 |
0.9.3 | 24.2.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.5 | 2021.11.2 | 5.4.41 |
0.9.2 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.4 | 2021.11.1 | 5.4.41 |
0.9.1 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.18.3 | 2021.11 | 5.4.41 |
0.9.0 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.18.2 | 2021.11 | 5.4.41 |
0.8.3 | 24.1.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.4 | 2021.08.2 | 5.4.41 |
0.8.2 | 24.1.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.3 | 2021.08.1 | 5.4.41 |
0.8.1 | 24.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.1 | 2021.08.1 | 5.4.41 |
0.8.0 | 24.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.0 | 2021.08 | 5.4.41 |
0.7.2 | 24.0.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.16.4 | 2021.05.1 | 5.4.41 |
0.7.1 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.16.1 | 2021.05 | 5.4.41 |
0.7.0 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.16.0 | 2021.05 | 5.4.41 |
0.6.1 | 23.3.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.15.1 | 2021.02.1 | 5.4.41 |
0.6.0 | 23.2.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.15.0 | 2021.02 | 5.4.41 |
0.5.0 | 23.2.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.14.4 | 2020.11.2 | 5.4.41 |
0.4.3 | 23.1.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.7 | 2020.08.2 | 5.4.41 |
0.4.2 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.5 | 2020.08.2 | 5.4.41 |
0.4.1 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.4 | 2020.08.1 | 5.4.41 |
0.4.0 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.2 | 2020.08 | 5.4.41 |
0.3.2 | 23.0.3 | ~> 1.5.4 or ~> 1.6.0 | 1.12.4 | 2020.05.1 | 5.4.41 |
0.3.1 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 5.4.41 |
0.3.0 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 5.4.41 |
0.2.0 | 22.3.4 | ~> 1.5.4 or ~> 1.6.0 | 1.11.4 | 2020.02.1 | 5.4.41 |
0.1.0 | 22.3.4 | ~> 1.5.4 or ~> 1.6.0 | 1.11.4 | 2020.02.1 | 5.4.41 |
nerves_system_x86_64
x86_64 | Erlang/OTP | Nerves | Nerves System BR | Buildroot | Linux |
---|---|---|---|---|---|
1.27.1 | 26.2.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.2 | 2024.02.1 | 5.4 |
1.27.0 | 26.2.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.0 | 2024.02 | 5.4 |
1.26.0 | 26.2.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.26.1 | 2023.11.1 | 5.4 |
1.25.1 | 26.2.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.3 | 2023.08.4 | 5.4 |
1.25.0 | 26.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.2 | 2023.08.4 | 5.4 |
1.24.1 | 26.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.1 | 2023.05.3 | 5.4 |
1.24.0 | 26.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.0 | 2023.05.2 | 5.4 |
1.23.2 | 26.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.3 | 2023.02.3 | 5.4 |
1.23.1 | 26.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.2 | 2023.02.3 | 5.4 |
1.23.0 | 26.0 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.1 | 2023.02.2 | 5.4 |
1.22.2 | 25.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.5 | 2022.11.3 | 5.4 |
1.22.1 | 25.2.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.3 | 2022.11.1 | 5.4 |
1.22.0 | 25.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.1 | 2022.11 | 5.4 |
1.21.2 | 25.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.6 | 2022.08.3 | 5.4 |
1.21.1 | 25.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.2 | 2022.08.1 | 5.4 |
1.21.0 | 25.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.1 | 2022.08.1 | 5.4.204 |
1.20.3 | 25.0.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.20.6 | 2022.05.2 | 5.4.204 |
1.20.2 | 25.0.3 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.4 | 2022.05 | 5.4.204 |
1.20.1 | 25.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.3 | 2022.05 | 5.4.204 |
1.20.0 | 25.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.3 | 2022.05 | 5.4.51 |
1.19.0 | 25.0 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.19.0 | 2022.02.1 | 5.4.51 |
1.18.4 | 24.3.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.6 | 2021.11.2 | 5.4.51 |
1.18.3 | 24.2.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.5 | 2021.11.2 | 5.4.51 |
1.18.2 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 | 1.18.4 | 2021.11.1 | 5.4.51 |
1.18.1 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.18.3 | 2021.11 | 5.4.51 |
1.18.0 | 24.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.18.2 | 2021.11 | 5.4.51 |
1.17.3 | 24.1.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.4 | 2021.08.2 | 5.4.51 |
1.17.2 | 24.1.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.3 | 2021.08.1 | 5.4.51 |
1.17.1 | 24.1.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.1 | 2021.08.1 | 5.4.51 |
1.17.0 | 24.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.17.0 | 2021.08 | 5.4.51 |
1.16.2 | 24.0.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.16.4 | 2021.05.1 | 5.4.51 |
1.16.1 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.16.1 | 2021.05 | 5.4.51 |
1.16.0 | 24.0.2 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.16.0 | 2021.05 | 5.4.51 |
1.15.1 | 23.3.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.15.1 | 2021.02.1 | 5.4.51 |
1.15.0 | 23.2.7 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.15.0 | 2021.02 | 5.4.51 |
1.14.0 | 23.2.4 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.4 | 1.14.4 | 2020.11.2 | 5.4.51 |
1.13.4 | 23.1.5 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.7 | 2020.08.2 | 5.4.51 |
1.13.3 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.5 | 2020.08.2 | 5.4.51 |
1.13.2 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.4 | 2020.08.1 | 5.4.51 |
1.13.1 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.4 | 2020.08.1 | 5.4.51 |
1.13.0 | 23.1.1 | ~> 1.5.4 or ~> 1.6.0 or ~> 1.7.0 | 1.13.2 | 2020.08 | 4.19.108 |
1.12.2 | 23.0.3 | ~> 1.5.4 or ~> 1.6.0 | 1.12.4 | 2020.05.1 | 4.19.108 |
1.12.1 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19.108 |
1.12.0 | 23.0.2 | ~> 1.5.4 or ~> 1.6.0 | 1.12.0 | 2020.05 | 4.19.108 |
1.11.2 | 22.3.4 | ~> 1.5.4 or ~> 1.6.0 | 1.11.4 | 2020.02.1 | 4.19.108 |
1.11.1 | 22.3.1 | ~> 1.5.4 or ~> 1.6.0 | 1.11.2 | 2020.02 | 4.19.108 |
1.11.0 | 22.2.8 | ~> 1.5.4 or ~> 1.6.0 | 1.11.0 | 2020.02 | 4.19.108 |
1.10.2 | 22.2.4 | ~> 1.5.0 | 1.10.2 | 2019.11.1 | 4.19.87 |
1.10.1 | 22.2.2 | ~> 1.5.0 | 1.10.1 | 2019.11.1 | 4.19.87 |
1.10.0 | 22.1.5 | ~> 1.5.0 | 1.10.0 | 2019.11 | 4.19.87 |
nerves_system_grisp2
grisp2 | Erlang/OTP | Nerves | Nerves System BR | Buildroot | Linux |
---|---|---|---|---|---|
0.11.1 | 26.2.5 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.2 | 2024.02.1 | 5.15 |
0.11.0 | 26.2.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.0 | 2024.02 | 5.15 |
0.10.0 | 26.2.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.26.1 | 2023.11.1 | 5.15 |
0.9.1 | 26.2.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.3 | 2023.08.4 | 5.15 |
0.9.0 | 26.1.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.2 | 2023.08.4 | 5.15 |
0.8.1 | 26.1.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.1 | 2023.05.3 | 5.15 |
0.8.0 | 26.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.0 | 2023.05.2 | 5.15 |
0.7.3 | 26.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.3 | 2023.02.3 | 5.15 |
0.7.2 | 26.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.2 | 2023.02.3 | 5.15 |
0.7.1 | 26.0 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.1 | 2023.02.2 | 5.15 |
0.7.0 | 26.0 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.1 | 2023.02.2 | 5.10 |
0.6.2 | 25.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.5 | 2022.11.3 | 5.10 |
0.6.1 | 25.2.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.3 | 2022.11.1 | 5.10 |
0.6.0 | 25.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.1 | 2022.11 | 5.10 |
0.5.2 | 25.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.6 | 2022.08.3 | 5.10 |
0.5.1 | 25.1.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.2 | 2022.08.1 | 5.10 |
0.5.0 | 25.1.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.1 | 2022.08.1 | 5.10 |
0.4.2 | 25.0.4 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.20.6 | 2022.05.2 | 5.10 |
0.4.1 | 25.0.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.4 | 2022.05 | 5.10 |
0.4.0 | 25.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.3 | 2022.05 | 5.10 |
0.3.0 | 25.0 | ~> 1.6.0 or ~> 1.7.15 | 1.19.0 | 2022.02.1 | 5.10 |
0.2.3 | 24.3.2 | ~> 1.6.0 or ~> 1.7.15 | 1.18.6 | 2021.11.2 | 5.10 |
0.2.2 | 24.2.2 | ~> 1.6.0 or ~> 1.7.15 | 1.18.5 | 2021.11.2 | 5.10 |
0.2.1 | 24.2.2 | ~> 1.6.0 or ~> 1.7.15 | 1.18.5 | 2021.11.2 | 5.10 |
0.2.0 | 24.2 | ~> 1.6.0 or ~> 1.7.15 | 1.18.4 | 2021.11.1 | 5.10 |
nerves_system_mangopi_mq_pro
mangopi_mq_pro | Erlang/OTP | Nerves | Nerves System BR | Buildroot | Linux |
---|---|---|---|---|---|
0.9.1 | 26.2.5 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.2 | 2024.02.1 | 6.1 |
0.9.0 | 26.2.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.27.0 | 2024.02 | 6.1 |
0.8.0 | 26.2.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.26.1 | 2023.11.1 | 6.1 |
0.7.1 | 26.2.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.3 | 2023.08.4 | 6.1 |
0.7.0 | 26.1.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.25.2 | 2023.08.4 | 6.1 |
0.6.1 | 26.1.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.1 | 2023.05.3 | 6.1 |
0.6.0 | 26.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.24.0 | 2023.05.2 | 6.1 |
0.5.2 | 26.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.3 | 2023.02.3 | 6.1 |
0.5.1 | 26.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.2 | 2023.02.3 | 6.1 |
0.5.0 | 26.0 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.23.1 | 2023.02.2 | 6.1 |
0.4.3 | 25.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.5 | 2022.11.3 | 6.1 |
0.4.2 | 25.2.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.3 | 2022.11.1 | 6.1 |
0.4.1 | 25.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.1 | 2022.11 | 6.1 |
0.4.0 | 25.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.22.1 | 2022.11 | 6.1 |
0.3.2 | 25.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.6 | 2022.08.3 | 5.19 |
0.3.1 | 25.1.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.2 | 2022.08.1 | 5.19 |
0.3.0 | 25.1.1 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.21.1 | 2022.08.1 | 5.19 |
0.2.5 | 25.0.4 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.20.6 | 2022.05.2 | 5.19 |
0.2.4 | 25.0.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8 | 1.20.4 | 2022.05 | 5.19 |
0.2.3 | 25.0.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.4 | 2022.05 | 5.19 |
0.2.2 | 25.0.3 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.4 | 2022.05 | 5.19 |
0.2.1 | 25.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.3 | 2022.05 | 5.19 |
0.2.0 | 25.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.3 | 2022.05 | 5.18 |
0.1.1 | 25.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.3 | 2022.05 | 5.14 |
0.1.0 | 25.0.2 | ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.0 | 1.20.2 | 2022.05 | 5.14 |
Run mix deps
to see the Nerves System version and go to that system's
repository on https://github.com/nerves-project.
If you need to run a particular version of Erlang/OTP on your target, you can
either lock the nerves_system_*
dependency in your mix.exs
to an older
version. Note that this route prevents you from receiving security updates
from the official systems. The other option is to build a custom Nerves
system. See the Nerves documentation for building a custom system and then
run make menuconfig
and look for the Erlang options.
Anatomy of a Nerves System
Nerves system dependencies are a collection of configurations to be fed into the system build platform. Currently, Nerves systems are all built using the Buildroot platform. The project structure of a Nerves system is as follows:
nerves_system_rpi3
├── LICENSE
├── README.md
├── VERSION
├── cmdline.txt
├── config.txt
├── fwup.conf
├── linux-4.4.defconfig
├── mix.exs
├── nerves_defconfig
├── post-createfs.sh
└── rootfs-overlay
└── etc
└── erlinit.config
└── fw_env.config
The mix.exs
defines the toolchain and build platform, for example:
def project do
[ # ...
nerves_package: nerves_package(),
compilers: Mix.compilers ++ [:nerves_package],
aliases: [loadconfig: [&bootstrap/1]]]
end
# ...
def nerves_package do
[
type: :system,
artifact_sites: [
{:github_releases, "nerves-project/#{@app}",
],
platform: Nerves.System.BR,
platform_config: [
defconfig: "nerves_defconfig"
],
checksum: [
"nerves_defconfig",
"rootfs_overlay",
"linux-4.4.defconfig",
"fwup.conf",
"cmdline.txt",
"config.txt",
"post-createfs.sh",
"VERSION"
]
]
end
# ...
defp deps do
[
{:nerves, "~> 1.0", runtime: false},
{:nerves_system_br, "~> 1.0", runtime: false},
{:nerves_toolchain_arm_unknown_linux_gnueabihf, "~> 1.0", runtime: false}
]
end
# ...
defp package do
[ # ...
files: ["LICENSE", "mix.exs", "<other files>"],
licenses: ["Apache 2.0"],
links: %{"Github" => "https://github.com/nerves-project/nerves_system_rpi3"}]
end
Nerves systems have a few requirements in the mix file:
- The
compilers
must include:nerves_package
compiler afterMix.compilers
. - There must be a dependency for the toolchain and the build platform.
- The
package
must specify all the requiredfiles
so they are present when downloading from Hex. - The
nerves_package
key should contain nerves package configuration metadata as described in the next section.
Nerves Package Configuration
The mix.exs
project configuration contains a special configuration key nerves_package
. This key
contains configuration information that Nerves loads before any application or
dependency code is compiled. It is used to store metadata about a package. Here
is an example from the mix.exs
file for nerves_system_rpi3
:
# ...
def project do
[ # ...
nerves_package: nerves_package(),
# ...
]
end
# ....
defp nerves_package do
[
type: :system,
artifact_sites: [
{:github_releases, "nerves-project/#{@app}"}
],
platform: Nerves.System.BR,
platform_config: [
defconfig: "nerves_defconfig"
],
checksum: package_files()
]
end
The following keys are supported:
type
: The type of Nerves Package.Options are:
system
,system_compiler
,system_platform
,system_package
,toolchain
,toolchain_compiler
,toolchain_platform
.artifact_sites
(optional): Artifacts for Nerves systems and toolchains are too large for most package managers and must be stored externally. Artifact sites specify how to download artifacts and are attempted in order until one is successfully downloaded.Supported artifact sites:
{:github_releases, "organization/project"} {:github_api, "organization/project", username: System.get_env("GITHUB_USER"), token: System.get_env("GITHUB_TOKEN"), tag: @version} {:prefix, "http://myserver.com/artifacts"} {:prefix, "file:///my_artifacts/"} {:prefix, "/users/my_user/artifacts/"} {:prefix, "http://myserver.com/artifacts", headers: [{"Authorization", "Basic 12345"}]} {:prefix, "http://myserver.com/artifacts", query_params: %{"id" => "1234"}}
For official Nerves systems and toolchains, we upload the artifacts to GitHub Releases.
For an artifact site that uses GitHub Releases in a private repo, create a personal access token and use
:github_api
withusername
,token
, andtag
options:{:github_api, "owner/repo", username: "skroob", token: "1234567", tag: "v0.1.0"}
Artifact sites can pass options as a third parameter for adding headers or query string parameters.
{:prefix, "https://my-organization.com", query_params: %{"id" => "1234567", "token" => "abcd"}, headers: [{"Content-Type", "application/octet-stream"}] }
You can also use this to add an authorization header for files behind basic auth.
{:prefix, "http://my-organization.com/", headers: [{"Authorization", "Basic " <> System.get_env("BASIC_AUTH")}}]}
platform
: The build platform to use for the system or toolchain.platform_config
: Configuration options for the build platform.In this example, the
defconfig
option for theNerves.System.BR
platform points to the Buildroot defconfig fragment file used to build the system.build_runner
: Optional - The build_runner that should be used to build the artifact.If this key is not defined, Nerves will choose a default build_runner that should be used to build the artifact based on information about the host computer that you are building on. For example, Mac OS will use
Nerves.Artifact.BuildRunners.Docker
where as Linux will useNerves.Artifact.BuildRunners.Local
. Specifying a build_runner module in the package config could be used to force the build_runner.build_runner_opts
: Optional - A keyword list of options to pass to the build_runner module.make_args:
- Extra arguments to be passed to make.For example:
You can configure the number of parallel jobs that Buildroot can use for execution. This is useful for situations where you may have a machine with a lot of CPUs but not enough ram.
defp nerves_package do [ # ... build_runner_opts: [make_args: ["PARALLEL_JOBS=8"]], ] end
checksum
: The list of files for which checksums are calculated and stored in the artifact cache.This checksum is used to match the cached Nerves artifact on disk with its source files, so that it will be re-compiled instead of using the cache if the source files no longer match.