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
bbbErlang/OTPNervesNerves System BRBuildrootLinux
2.18.026.0~> 1.6.0 or ~> 1.7.15 or ~> 1.81.23.12023.02.25.10
2.17.225.3~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.52022.11.35.10
2.17.125.2.3~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.32022.11.15.10
2.17.025.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.12022.115.10
2.16.225.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.62022.08.35.10
2.16.125.1.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.22022.08.15.10
2.16.025.1.1~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.12022.08.15.10.120
2.15.325.0.4~> 1.6.0 or ~> 1.7.15 or ~> 1.81.20.62022.05.25.10.120
2.15.225.0.3~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.42022.055.10.120
2.15.125.0.2~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.32022.055.10.120
2.15.025.0.2~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.32022.055.15.44
2.14.025.0~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.19.02022.02.15.10.100
2.13.424.3.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.62021.11.25.10.100
2.13.324.2.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.52021.11.25.10.87
2.13.224.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.42021.11.15.10.87
2.13.124.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.18.32021.115.10.65
2.13.024.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.18.22021.115.10.65
2.12.324.1.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.42021.08.25.4.52
2.12.224.1.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.32021.08.15.4.52
2.12.124.1.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.12021.08.15.4.52
2.12.024.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.02021.085.4.52
2.11.224.0.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.16.42021.05.15.4.52
2.11.124.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.16.12021.055.4.52
2.11.024.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.16.02021.055.4.52
2.10.123.3.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.15.12021.02.15.4.52
2.10.023.2.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.15.02021.025.4.52
2.9.023.2.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.14.42020.11.25.4.52
2.8.323.1.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.72020.08.25.4.52
2.8.223.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.52020.08.25.4.52
2.8.123.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.42020.08.15.4.52
2.8.023.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.22020.084.19.120
2.7.223.0.3~> 1.5.4 or ~> 1.6.01.12.42020.05.14.19.120
2.7.123.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19.120
2.7.023.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19.120
2.6.222.3.4~> 1.5.4 or ~> 1.6.01.11.42020.02.14.19.103
2.6.122.3.1~> 1.5.4 or ~> 1.6.01.11.22020.024.19.103
2.6.022.2.8~> 1.5.4 or ~> 1.6.01.11.02020.024.19.103
2.5.222.2.4~> 1.5.01.10.22019.11.14.19.72
2.5.122.2.2~> 1.5.01.10.12019.11.14.19.72
2.5.022.1.5~> 1.5.01.10.02019.114.19.72
2.4.222.1.5~> 1.5.01.9.52019.08.24.19.50
2.4.122.1.1~> 1.5.01.9.42019.08.14.19.50
2.4.022.0.7~> 1.5.01.9.22019.084.19.50
2.3.222.0.7~> 1.5.01.8.52019.05.14.19.50
2.3.122.0.7~> 1.5.01.8.42019.05.14.19.37
2.3.022.0.3~> 1.41.8.22019.054.19.37
2.2.221.3.6~> 1.31.7.22019.024.19.26
2.2.121.2.7~> 1.31.7.12019.024.19.26
2.2.021.2.7~> 1.31.7.02019.024.19.26
2.1.321.2.6~> 1.31.6.82018.11.14.19.10
nerves_system_rpi
rpiErlang/OTPNervesNerves System BRBuildrootLinux
1.23.026.0~> 1.6.0 or ~> 1.7.15 or ~> 1.81.23.12023.02.25.15
1.22.225.3~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.52022.11.35.15
1.22.125.2.3~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.32022.11.15.15
1.22.025.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.12022.115.15
1.21.225.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.62022.08.35.15
1.21.125.1.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.22022.08.15.15
1.21.025.1.1~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.12022.08.15.15
1.20.225.0.4~> 1.6.0 or ~> 1.7.15 or ~> 1.81.20.62022.05.25.15
1.20.125.0.3~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.42022.055.15
1.20.025.0.2~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.32022.055.15
1.19.025.0~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.19.02022.02.15.10
1.18.424.3.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.62021.11.25.10
1.18.324.2.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.52021.11.25.10
1.18.224.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.42021.11.15.10
1.18.124.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.18.32021.115.10
1.18.024.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.18.22021.115.10
1.17.324.1.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.42021.08.25.10
1.17.224.1.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.32021.08.15.10
1.17.124.1.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.12021.08.15.4
1.17.024.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.02021.085.4
1.16.224.0.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.16.42021.05.15.4
1.16.124.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.16.12021.055.4
1.16.024.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.16.02021.055.4
1.15.123.3.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.15.12021.02.15.4
1.15.023.2.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.15.02021.025.4
1.14.123.2.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.14.42020.11.25.4
1.14.023.2.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.14.42020.11.25.4
1.13.323.1.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.72020.08.25.4
1.13.223.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.52020.08.25.4
1.13.123.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.42020.08.15.4
1.13.023.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.22020.084.19
1.12.223.0.3~> 1.5.4 or ~> 1.6.01.12.42020.05.14.19
1.12.123.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19
1.12.023.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19
1.11.222.3.4~> 1.5.4 or ~> 1.6.01.11.42020.02.14.19
1.11.122.3.1~> 1.5.4 or ~> 1.6.01.11.22020.024.19
1.11.022.2.8~> 1.5.4 or ~> 1.6.01.11.02020.024.19
1.10.222.2.4~> 1.5.01.10.22019.11.14.19
1.10.122.2.2~> 1.5.01.10.12019.11.14.19
1.10.022.1.5~> 1.5.01.10.02019.114.19
1.9.222.1.5~> 1.5.01.9.52019.08.24.19
1.9.122.1.1~> 1.5.01.9.42019.08.14.19
1.9.022.0.7~> 1.5.01.9.22019.084.19
1.8.222.0.7~> 1.5.01.8.52019.05.14.19
1.8.122.0.7~> 1.5.01.8.42019.05.14.19
1.8.022.0.3~> 1.41.8.22019.054.19
1.7.221.3.6~> 1.31.7.22019.024.19
1.7.121.2.7~> 1.31.7.12019.024.19
1.7.021.2.7~> 1.31.7.02019.024.19
1.6.321.2.6~> 1.31.6.82018.11.14.14
nerves_system_rpi0
rpi0Erlang/OTPNervesNerves System BRBuildrootLinux
1.23.026.0~> 1.6.0 or ~> 1.7.15 or ~> 1.81.23.12023.02.25.15
1.22.225.3~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.52022.11.35.15
1.22.125.2.3~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.32022.11.15.15
1.22.025.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.12022.115.15
1.21.225.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.62022.08.35.15
1.21.125.1.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.22022.08.15.15
1.21.025.1.1~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.12022.08.15.15
1.20.225.0.4~> 1.6.0 or ~> 1.7.15 or ~> 1.81.20.62022.05.25.15
1.20.125.0.3~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.42022.055.15
1.20.025.0.2~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.32022.055.15
1.19.025.0~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.19.02022.02.15.10
1.18.424.3.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.62021.11.25.10
1.18.324.2.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.52021.11.25.10
1.18.224.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.42021.11.15.10
1.18.124.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.18.32021.115.10
1.18.024.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.18.22021.115.10
1.17.324.1.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.42021.08.25.10
1.17.224.1.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.32021.08.15.10
1.17.124.1.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.12021.08.15.4
1.17.024.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.02021.085.4
1.16.224.0.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.16.42021.05.15.4
1.16.124.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.16.12021.055.4
1.16.024.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.16.02021.055.4
1.15.123.3.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.15.12021.02.15.4
1.15.023.2.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.15.02021.025.4
1.14.123.2.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.14.42020.11.25.4
1.14.023.2.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.14.42020.11.25.4
1.13.323.1.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.72020.08.25.4
1.13.223.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.52020.08.25.4
1.13.123.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.42020.08.15.4
1.13.023.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.22020.084.19
1.12.223.0.3~> 1.5.4 or ~> 1.6.01.12.42020.05.14.19
1.12.123.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19
1.12.023.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19
1.11.222.3.4~> 1.5.4 or ~> 1.6.01.11.42020.02.14.19
1.11.122.3.1~> 1.5.4 or ~> 1.6.01.11.22020.024.19
1.11.022.2.8~> 1.5.4 or ~> 1.6.01.11.02020.024.19
1.10.222.2.4~> 1.5.01.10.22019.11.14.19
1.10.122.2.2~> 1.5.01.10.12019.11.14.19
1.10.022.1.5~> 1.5.01.10.02019.114.19
1.9.222.1.5~> 1.5.01.9.52019.08.24.19
1.9.122.1.1~> 1.5.01.9.42019.08.14.19
1.9.022.0.7~> 1.5.01.9.22019.084.19
1.8.222.0.7~> 1.5.01.8.52019.05.14.19
1.8.122.0.7~> 1.5.01.8.42019.05.14.19
1.8.022.0.3~> 1.41.8.22019.054.19
1.7.221.3.6~> 1.31.7.22019.024.19
1.7.121.2.7~> 1.31.7.12019.024.19
1.7.021.2.7~> 1.31.7.02019.024.19
1.6.321.2.6~> 1.31.6.82018.11.14.14
nerves_system_rpi2
rpi2Erlang/OTPNervesNerves System BRBuildrootLinux
1.23.026.0~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.23.12023.02.25.15
1.22.225.3~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.52022.11.35.15
1.22.125.2.3~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.32022.11.15.15
1.22.025.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.12022.115.15
1.21.225.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.62022.08.35.15
1.21.125.1.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.22022.08.15.15
1.21.025.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.12022.08.15.15
1.20.225.0.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.20.62022.05.25.15
1.20.125.0.3~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.42022.055.15
1.20.025.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.32022.055.15
1.19.025.0~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.19.02022.02.15.10
1.18.424.3.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.62021.11.25.10
1.18.324.2.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.52021.11.25.10
1.18.224.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.42021.11.15.10
1.18.124.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.18.32021.115.10
1.18.024.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.18.22021.115.10
1.17.324.1.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.42021.08.25.10
1.17.224.1.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.32021.08.15.10
1.17.124.1.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.12021.08.15.4
1.17.024.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.02021.085.4
1.16.224.0.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.16.42021.05.15.4
1.16.124.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.16.12021.055.4
1.16.024.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.16.02021.055.4
1.15.123.3.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.15.12021.02.15.4
1.15.023.2.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.15.02021.025.4
1.14.023.2.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.14.42020.11.25.4
1.13.323.1.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.72020.08.25.4
1.13.223.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.52020.08.25.4
1.13.123.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.42020.08.15.4
1.13.023.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.22020.084.19
1.12.223.0.3~> 1.5.4 or ~> 1.6.01.12.42020.05.14.19
1.12.123.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19
1.12.023.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19
1.11.222.3.4~> 1.5.4 or ~> 1.6.01.11.42020.02.14.19
1.11.122.3.1~> 1.5.4 or ~> 1.6.01.11.22020.024.19
1.11.022.2.8~> 1.5.4 or ~> 1.6.01.11.02020.024.19
1.10.222.2.4~> 1.5.01.10.22019.11.14.19
1.10.122.2.2~> 1.5.01.10.12019.11.14.19
1.10.022.1.5~> 1.5.01.10.02019.114.19
1.9.222.1.5~> 1.5.01.9.52019.08.24.19
1.9.122.1.1~> 1.5.01.9.42019.08.14.19
1.9.022.0.7~> 1.5.01.9.22019.084.19
1.8.222.0.7~> 1.5.01.8.52019.05.14.19
1.8.122.0.7~> 1.5.01.8.42019.05.14.19
1.8.022.0.3~> 1.41.8.22019.054.19
1.7.221.3.6~> 1.31.7.22019.024.19
1.7.121.2.7~> 1.31.7.12019.024.19
1.7.021.2.7~> 1.31.7.02019.024.19
1.6.321.2.6~> 1.31.6.82018.11.14.14
1.6.221.2.4~> 1.31.6.62018.11.14.14
nerves_system_rpi3
rpi3Erlang/OTPNervesNerves System BRBuildrootLinux
1.23.026.0~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.23.12023.02.25.15
1.22.225.3~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.52022.11.35.15
1.22.125.2.3~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.32022.11.15.15
1.22.025.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.12022.115.15
1.21.225.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.62022.08.35.15
1.21.125.1.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.22022.08.15.15
1.21.025.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.12022.08.15.15
1.20.225.0.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.20.62022.05.25.15
1.20.125.0.3~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.42022.055.15
1.20.025.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.32022.055.15
1.19.025.0~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.19.02022.02.15.10
1.18.424.3.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.62021.11.25.10
1.18.324.2.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.52021.11.25.10
1.18.224.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.42021.11.15.10
1.18.124.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.18.32021.115.10
1.18.024.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.18.22021.115.10
1.17.424.1.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.42021.08.25.10
1.17.324.1.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.32021.08.15.10
1.17.224.1.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.12021.08.15.4
1.17.124.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.02021.085.4
1.17.024.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.02021.085.4
1.16.224.0.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.16.42021.05.15.4
1.16.124.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.16.12021.055.4
1.16.024.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.16.02021.055.4
1.15.123.3.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.15.12021.02.15.4
1.15.023.2.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.15.02021.025.4
1.14.023.2.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.14.42020.11.25.4
1.13.323.1.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.72020.08.25.4
1.13.223.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.52020.08.25.4
1.13.123.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.42020.08.15.4
1.13.023.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.22020.084.19
1.12.223.0.3~> 1.5.4 or ~> 1.6.01.12.42020.05.14.19
1.12.123.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19
1.12.023.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19
1.11.222.3.4~> 1.5.4 or ~> 1.6.01.11.42020.02.14.19
1.11.122.3.1~> 1.5.4 or ~> 1.6.01.11.22020.024.19
1.11.022.2.8~> 1.5.4 or ~> 1.6.01.11.02020.024.19
1.10.222.2.4~> 1.5.01.10.22019.11.14.19
1.10.122.2.2~> 1.5.01.10.12019.11.14.19
1.10.022.1.5~> 1.5.01.10.02019.114.19
1.9.222.1.5~> 1.5.01.9.52019.08.24.19
1.9.122.1.1~> 1.5.01.9.42019.08.14.19
1.9.022.0.7~> 1.5.01.9.22019.084.19
1.8.222.0.7~> 1.5.01.8.52019.05.14.19
1.8.122.0.7~> 1.5.01.8.42019.05.14.19
1.8.022.0.3~> 1.41.8.22019.054.19
1.7.221.3.6~> 1.31.7.22019.024.19
1.7.121.2.7~> 1.31.7.12019.024.19
1.7.021.2.7~> 1.31.7.02019.024.19
1.6.321.2.6~> 1.31.6.82018.11.14.14
nerves_system_rpi3a
rpi3aErlang/OTPNervesNerves System BRBuildrootLinux
1.23.026.0~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.23.12023.02.25.15
1.22.225.3~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.52022.11.35.15
1.22.125.2.3~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.32022.11.15.15
1.22.025.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.12022.115.15
1.21.225.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.62022.08.35.15
1.21.125.1.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.22022.08.15.15
1.21.025.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.12022.08.15.15
1.20.225.0.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.20.62022.05.25.15
1.20.125.0.3~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.42022.055.15
1.20.025.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.32022.055.15
1.19.025.0~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.19.02022.02.15.10
1.18.424.3.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.62021.11.25.10
1.18.324.2.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.52021.11.25.10
1.18.224.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.42021.11.15.10
1.18.124.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.18.32021.115.10
1.18.024.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.18.22021.115.10
1.17.324.1.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.42021.08.25.10
1.17.224.1.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.32021.08.15.10
1.17.124.1.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.12021.08.15.4
1.17.024.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.02021.085.4
1.16.224.0.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.16.42021.05.15.4
1.16.124.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.16.12021.055.4
1.16.024.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.16.02021.055.4
1.15.123.3.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.15.12021.02.15.4
1.15.023.2.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.15.02021.025.4
1.14.023.2.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.14.42020.11.25.4
1.13.323.1.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.72020.08.25.4
1.13.223.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.52020.08.25.4
1.13.123.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.42020.08.15.4
1.13.023.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.22020.084.19
1.12.223.0.3~> 1.5.4 or ~> 1.6.01.12.42020.05.14.19
1.12.123.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19
1.12.023.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19
1.11.222.3.4~> 1.5.4 or ~> 1.6.01.11.42020.02.14.19
1.11.122.3.1~> 1.5.4 or ~> 1.6.01.11.22020.024.19
1.11.022.2.8~> 1.5.4 or ~> 1.6.01.11.02020.024.19
1.10.222.2.4~> 1.5.01.10.22019.11.14.19
1.10.122.2.2~> 1.5.01.10.12019.11.14.19
1.10.022.1.5~> 1.5.01.10.02019.114.19
1.9.222.1.5~> 1.5.01.9.52019.08.24.19
1.9.122.1.1~> 1.5.01.9.42019.08.14.19
1.9.022.0.7~> 1.5.01.9.22019.084.19
1.8.222.0.7~> 1.5.01.8.52019.05.14.19
1.8.122.0.7~> 1.5.01.8.42019.05.14.19
1.8.022.0.3~> 1.41.8.22019.054.19
1.7.221.3.6~> 1.31.7.22019.024.19
1.7.121.2.7~> 1.31.7.12019.024.19
1.7.021.2.7~> 1.31.7.02019.024.19
1.6.321.2.6~> 1.31.6.82018.11.14.14
1.6.221.2.4~> 1.31.6.62018.11.14.14
nerves_system_rpi4
rpi4Erlang/OTPNervesNerves System BRBuildrootLinux
1.23.026.0~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.23.12023.02.26.1
1.22.225.3~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.52022.11.35.15
1.22.125.2.3~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.32022.11.15.15
1.22.025.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.12022.115.15
1.21.225.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.62022.08.35.15
1.21.125.1.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.22022.08.15.15
1.21.025.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.12022.08.15.15
1.20.225.0.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.20.62022.05.25.15
1.20.125.0.3~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.42022.055.15
1.20.025.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.32022.055.15
1.19.025.0~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.19.02022.02.15.10
1.18.424.3.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.62021.11.25.10
1.18.324.2.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.52021.11.25.10
1.18.224.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.42021.11.15.10
1.18.124.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.18.32021.115.10
1.18.024.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.18.22021.115.10
1.17.324.1.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.42021.08.25.10
1.17.224.1.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.32021.08.15.10
1.17.124.1.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.12021.08.15.4
1.17.024.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.17.02021.085.4
1.16.324.0.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.16.52021.05.15.4
1.16.224.0.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.16.42021.05.15.4
1.16.124.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.16.12021.055.4
1.16.024.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.16.02021.055.4
1.15.123.3.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.15.12021.02.15.4
1.15.023.2.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.15.02021.025.4
1.14.023.2.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.31.14.42020.11.25.4
1.13.523.1.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.72020.08.25.4
1.13.323.1.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.72020.08.25.4
1.13.223.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.52020.08.25.4
1.13.123.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.42020.08.15.4
1.13.023.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.22020.084.19
1.12.223.0.3~> 1.5.4 or ~> 1.6.01.12.42020.05.14.19
1.12.123.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19
1.12.023.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19
1.11.322.3.4~> 1.5.4 or ~> 1.6.01.11.42020.02.14.19
1.11.222.3.1~> 1.5.4 or ~> 1.6.01.11.22020.024.19
1.11.122.2.8~> 1.5.4 or ~> 1.6.01.11.02020.024.19
1.11.022.2.8~> 1.5.4 or ~> 1.6.01.11.02020.024.19
1.10.222.2.4~> 1.51.10.22019.11.14.19
1.10.122.2.2~> 1.51.10.12019.11.14.19
1.10.022.1.5~> 1.51.10.02019.114.19
1.9.222.1.5~> 1.51.9.52019.08.24.19
1.9.122.1.1~> 1.51.9.42019.08.14.19
1.9.022.0.7~> 1.51.9.22019.084.19
1.8.222.0.7~> 1.51.8.52019.05.14.19
1.8.122.0.7~> 1.51.8.42019.05.14.19
nerves_system_osd32mp1
osd32mp1Erlang/OTPNervesNerves System BRBuildrootLinux
0.14.026.0~> 1.6.0 or ~> 1.7.15 or ~> 1.81.23.12023.02.25.4
0.13.225.3~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.52022.11.35.4
0.13.125.2.3~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.32022.11.15.4
0.13.025.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.12022.115.4
0.12.225.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.62022.08.35.4
0.12.125.1.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.22022.08.15.4
0.12.025.1.1~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.12022.08.15.4.41
0.11.225.0.4~> 1.6.0 or ~> 1.7.15 or ~> 1.81.20.62022.05.25.4.41
0.11.125.0.3~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.42022.055.4.41
0.11.025.0.2~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.32022.055.4.41
0.10.025.0~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.19.02022.02.15.4.41
0.9.424.3.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.62021.11.25.4.41
0.9.324.2.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.52021.11.25.4.41
0.9.224.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.42021.11.15.4.41
0.9.124.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.18.32021.115.4.41
0.9.024.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.18.22021.115.4.41
0.8.324.1.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.42021.08.25.4.41
0.8.224.1.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.32021.08.15.4.41
0.8.124.1.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.12021.08.15.4.41
0.8.024.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.02021.085.4.41
0.7.224.0.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.16.42021.05.15.4.41
0.7.124.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.16.12021.055.4.41
0.7.024.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.16.02021.055.4.41
0.6.123.3.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.15.12021.02.15.4.41
0.6.023.2.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.15.02021.025.4.41
0.5.023.2.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.14.42020.11.25.4.41
0.4.323.1.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.72020.08.25.4.41
0.4.223.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.52020.08.25.4.41
0.4.123.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.42020.08.15.4.41
0.4.023.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.22020.085.4.41
0.3.223.0.3~> 1.5.4 or ~> 1.6.01.12.42020.05.15.4.41
0.3.123.0.2~> 1.5.4 or ~> 1.6.01.12.02020.055.4.41
0.3.023.0.2~> 1.5.4 or ~> 1.6.01.12.02020.055.4.41
0.2.022.3.4~> 1.5.4 or ~> 1.6.01.11.42020.02.15.4.41
0.1.022.3.4~> 1.5.4 or ~> 1.6.01.11.42020.02.15.4.41
nerves_system_x86_64
x86_64Erlang/OTPNervesNerves System BRBuildrootLinux
1.23.026.0~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.23.12023.02.25.4
1.22.225.3~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.52022.11.35.4
1.22.125.2.3~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.32022.11.15.4
1.22.025.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.12022.115.4
1.21.225.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.62022.08.35.4
1.21.125.1.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.22022.08.15.4
1.21.025.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.12022.08.15.4.204
1.20.325.0.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.81.20.62022.05.25.4.204
1.20.225.0.3~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.42022.055.4.204
1.20.125.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.32022.055.4.204
1.20.025.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.32022.055.4.51
1.19.025.0~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.19.02022.02.15.4.51
1.18.424.3.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.62021.11.25.4.51
1.18.324.2.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.52021.11.25.4.51
1.18.224.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.151.18.42021.11.15.4.51
1.18.124.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.18.32021.115.4.51
1.18.024.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.18.22021.115.4.51
1.17.324.1.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.42021.08.25.4.51
1.17.224.1.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.32021.08.15.4.51
1.17.124.1.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.12021.08.15.4.51
1.17.024.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.17.02021.085.4.51
1.16.224.0.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.16.42021.05.15.4.51
1.16.124.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.16.12021.055.4.51
1.16.024.0.2~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.16.02021.055.4.51
1.15.123.3.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.15.12021.02.15.4.51
1.15.023.2.7~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.15.02021.025.4.51
1.14.023.2.4~> 1.5.4 or ~> 1.6.0 or ~> 1.7.41.14.42020.11.25.4.51
1.13.423.1.5~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.72020.08.25.4.51
1.13.323.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.52020.08.25.4.51
1.13.223.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.42020.08.15.4.51
1.13.123.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.42020.08.15.4.51
1.13.023.1.1~> 1.5.4 or ~> 1.6.0 or ~> 1.7.01.13.22020.084.19.108
1.12.223.0.3~> 1.5.4 or ~> 1.6.01.12.42020.05.14.19.108
1.12.123.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19.108
1.12.023.0.2~> 1.5.4 or ~> 1.6.01.12.02020.054.19.108
1.11.222.3.4~> 1.5.4 or ~> 1.6.01.11.42020.02.14.19.108
1.11.122.3.1~> 1.5.4 or ~> 1.6.01.11.22020.024.19.108
1.11.022.2.8~> 1.5.4 or ~> 1.6.01.11.02020.024.19.108
1.10.222.2.4~> 1.5.01.10.22019.11.14.19.87
1.10.122.2.2~> 1.5.01.10.12019.11.14.19.87
1.10.022.1.5~> 1.5.01.10.02019.114.19.87
1.9.222.1.5~> 1.5.01.9.52019.08.24.19.43
1.9.122.1.1~> 1.5.01.9.42019.08.14.19.43
1.9.022.0.7~> 1.5.01.9.22019.084.19.43
1.8.222.0.7~> 1.5.01.8.52019.05.14.19.43
1.8.122.0.7~> 1.5.01.8.42019.05.14.19.43
1.8.022.0.3~> 1.41.8.22019.054.19.43
1.7.221.3.6~> 1.31.7.22019.024.19.29
1.7.121.2.7~> 1.31.7.12019.024.19.29
1.7.021.2.7~> 1.31.7.02019.024.19.29
nerves_system_grisp2
grisp2Erlang/OTPNervesNerves System BRBuildrootLinux
0.7.026.0~> 1.6.0 or ~> 1.7.15 or ~> 1.81.23.12023.02.25.10
0.6.225.3~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.52022.11.35.10
0.6.125.2.3~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.32022.11.15.10
0.6.025.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.12022.115.10
0.5.225.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.62022.08.35.10
0.5.125.1.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.22022.08.15.10
0.5.025.1.1~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.12022.08.15.10
0.4.225.0.4~> 1.6.0 or ~> 1.7.15 or ~> 1.81.20.62022.05.25.10
0.4.125.0.3~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.42022.055.10
0.4.025.0.2~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.32022.055.10
0.3.025.0~> 1.6.0 or ~> 1.7.151.19.02022.02.15.10
0.2.324.3.2~> 1.6.0 or ~> 1.7.151.18.62021.11.25.10
0.2.224.2.2~> 1.6.0 or ~> 1.7.151.18.52021.11.25.10
0.2.124.2.2~> 1.6.0 or ~> 1.7.151.18.52021.11.25.10
0.2.024.2~> 1.6.0 or ~> 1.7.151.18.42021.11.15.10
nerves_system_mangopi_mq_pro
mangopi_mq_proErlang/OTPNervesNerves System BRBuildrootLinux
0.5.026.0~> 1.6.0 or ~> 1.7.15 or ~> 1.81.23.12023.02.26.1
0.4.325.3~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.52022.11.36.1
0.4.225.2.3~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.32022.11.16.1
0.4.125.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.12022.116.1
0.4.025.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.22.12022.116.1
0.3.225.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.62022.08.35.19
0.3.125.1.2~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.22022.08.15.19
0.3.025.1.1~> 1.6.0 or ~> 1.7.15 or ~> 1.81.21.12022.08.15.19
0.2.525.0.4~> 1.6.0 or ~> 1.7.15 or ~> 1.81.20.62022.05.25.19
0.2.425.0.3~> 1.6.0 or ~> 1.7.15 or ~> 1.81.20.42022.055.19
0.2.325.0.3~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.42022.055.19
0.2.225.0.3~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.42022.055.19
0.2.125.0.2~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.32022.055.19
0.2.025.0.2~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.32022.055.18
0.1.125.0.2~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.32022.055.14
0.1.025.0.2~> 1.6.0 or ~> 1.7.15 or ~> 1.8.01.20.22022.055.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:

  1. The compilers must include :nerves_package compiler after Mix.compilers.
  2. There must be a dependency for the toolchain and the build platform.
  3. The package must specify all the required files so they are present when downloading from Hex.
  4. 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:

  1. type: The type of Nerves Package.

    Options are: system, system_compiler, system_platform, system_package, toolchain, toolchain_compiler, toolchain_platform.

  2. 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 with username, token, and tag 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")}}]}
  3. platform: The build platform to use for the system or toolchain.

  4. platform_config: Configuration options for the build platform.

    In this example, the defconfig option for the Nerves.System.BR platform points to the Buildroot defconfig fragment file used to build the system.

  5. 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 use Nerves.Artifact.BuildRunners.Local. Specifying a build_runner module in the package config could be used to force the build_runner.

  6. 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
  7. 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.

Customizing Your Own Nerves System

This document has been moved