Resolving Hex dependencies... Resolution completed in 0.067s Unchanged: blake2 1.0.4 chacha20 0.3.6 circular_buffer 1.0.0 curve25519 0.1.4 ed25519 0.2.5 elixir_make 0.9.0 equivalex 0.1.4 finch 0.21.0 hpax 1.0.3 interactive_cmd 0.1.4 jason 1.4.4 kcl 0.6.6 mime 2.0.7 mint 1.7.1 nerves 1.14.1 nerves_discovery 0.1.2 nerves_logging 0.2.4 nerves_runtime 0.13.12 nerves_system_bbb 2.29.3 nerves_system_br 1.33.5 nerves_system_grisp2 0.17.3 nerves_system_mangopi_mq_pro 0.15.3 nerves_system_osd32mp1 0.24.3 nerves_system_qemu_aarch64 0.3.3 nerves_system_rpi 2.0.2 nerves_system_rpi0 2.0.2 nerves_system_rpi0_2 2.0.2 nerves_system_rpi2 2.0.2 nerves_system_rpi3 2.0.2 nerves_system_rpi4 2.0.2 nerves_system_rpi5 2.0.2 nerves_system_x86_64 1.33.3 nerves_toolchain_aarch64_nerves_linux_gnu 13.2.0 nerves_toolchain_armv6_nerves_linux_gnueabihf 13.2.0 nerves_toolchain_armv7_nerves_linux_gnueabihf 13.2.0 nerves_toolchain_ctng 1.10.0 nerves_toolchain_riscv64_nerves_linux_gnu 13.2.0 nerves_toolchain_x86_64_nerves_linux_musl 13.2.0 nerves_uevent 0.1.5 nimble_options 1.1.1 nimble_pool 1.1.0 pocketenv_ex 0.1.9 poly1305 0.4.5 property_table 0.3.3 req 0.5.17 ring_logger 0.11.5 salsa20 0.3.4 shoehorn 0.9.3 tablet 0.3.2 telemetry 1.4.1 toolshed 0.4.2 uboot_env 1.0.2 All dependencies have been fetched ==> jason Compiling 10 files (.ex) Generated jason app ==> tablet Compiling 2 files (.ex) Generated tablet app ==> elixir_make Compiling 8 files (.ex) Generated elixir_make app ==> nerves_discovery Compiling 5 files (.ex) Generated nerves_discovery app ==> interactive_cmd Compiling 1 file (.ex) Generated interactive_cmd app ==> nerves HOST_CC port.o HOST_LD port Compiling 50 files (.ex) Generated nerves app ==> nerves_compatibility_test Nerves environment MIX_TARGET: mangopi_mq_pro MIX_ENV: prod Checking for prebuilt Nerves artifacts... Found nerves_toolchain_riscv64_nerves_linux_gnu in cache /home/nerves/.nerves/artifacts/nerves_toolchain_riscv64_nerves_linux_gnu-linux_aarch64-13.2.0 Found nerves_system_mangopi_mq_pro in cache /home/nerves/.nerves/artifacts/nerves_system_mangopi_mq_pro-portable-0.15.3 ==> nerves ==> nerves_system_br Generated nerves_system_br app ==> nerves_toolchain_ctng Compiling 1 file (.ex) Generated nerves_toolchain_ctng app ==> nerves_toolchain_riscv64_nerves_linux_gnu Generated nerves_toolchain_riscv64_nerves_linux_gnu app ==> nerves_system_mangopi_mq_pro Generated nerves_system_mangopi_mq_pro app ==> nerves_compatibility_test Nerves environment MIX_TARGET: mangopi_mq_pro MIX_ENV: prod ==> salsa20 Compiling 1 file (.ex) warning: ^^^ is deprecated. It is typically used as xor but it has the wrong precedence, use Bitwise.bxor/2 instead │ 44 │ z1 = y1 ^^^ (sum(y0,y3) |> rotl(7)) │ ~ │ └─ lib/salsa20.ex:44:13 warning: ^^^ is deprecated. It is typically used as xor but it has the wrong precedence, use Bitwise.bxor/2 instead │ 45 │ z2 = y2 ^^^ (sum(z1,y0) |> rotl(9)) │ ~ │ └─ lib/salsa20.ex:45:13 warning: ^^^ is deprecated. It is typically used as xor but it has the wrong precedence, use Bitwise.bxor/2 instead │ 46 │ z3 = y3 ^^^ (sum(z2,z1) |> rotl(13)) │ ~ │ └─ lib/salsa20.ex:46:13 warning: ^^^ is deprecated. It is typically used as xor but it has the wrong precedence, use Bitwise.bxor/2 instead │ 47 │ z0 = y0 ^^^ (sum(z3,z2) |> rotl(18)) │ ~ │ └─ lib/salsa20.ex:47:13 Generated salsa20 app ==> ed25519 Compiling 1 file (.ex) warning: use Bitwise is deprecated. import Bitwise instead │ 2 │ use Bitwise │ ~~~~~~~~~~~ │ └─ lib/ed25519.ex:2: Ed25519 (module) Generated ed25519 app ==> mime Compiling 1 file (.ex) Generated mime app ==> circular_buffer Compiling 1 file (.ex) Generated circular_buffer app ==> nimble_options Compiling 3 files (.ex) Generated nimble_options app ==> equivalex Compiling 1 file (.ex) warning: missing parentheses for expression following "do:" keyword. Parentheses are required to solve ambiguity inside keywords. This error happens when you have function calls without parentheses inside keywords. For example: function(arg, one: nested_call a, b, c) function(arg, one: if expr, do: :this, else: :that) In the examples above, we don't know if the arguments "b" and "c" apply to the function "function" or "nested_call". Or if the keywords "do" and "else" apply to the function "function" or "if". You can solve this by explicitly adding parentheses: function(arg, one: if(expr, do: :this, else: :that)) function(arg, one: nested_call(a, b, c)) Ambiguity found at: │ 43 │ defp comparison(a,b), do: if a == b, do: 0, else: 1 │ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ │ └─ lib/equivalex.ex:43 warning: use Bitwise is deprecated. import Bitwise instead │ 2 │ use Bitwise │ ~~~~~~~~~~~ │ └─ lib/equivalex.ex:2: Equivalex (module) Generated equivalex app ==> hpax Compiling 4 files (.ex) Generated hpax app ==> mint Compiling 1 file (.erl) Compiling 20 files (.ex) Generated mint app ==> chacha20 Compiling 1 file (.ex) warning: ^^^ is deprecated. It is typically used as xor but it has the wrong precedence, use Bitwise.bxor/2 instead │ 45 │ d = (d ^^^ a) |> rotl(16) │ ~ │ └─ lib/chacha20.ex:45:12 warning: ^^^ is deprecated. It is typically used as xor but it has the wrong precedence, use Bitwise.bxor/2 instead │ 47 │ b = (b ^^^ c) |> rotl(12) │ ~ │ └─ lib/chacha20.ex:47:12 warning: ^^^ is deprecated. It is typically used as xor but it has the wrong precedence, use Bitwise.bxor/2 instead │ 49 │ d = (d ^^^ a) |> rotl(8) │ ~ │ └─ lib/chacha20.ex:49:12 warning: ^^^ is deprecated. It is typically used as xor but it has the wrong precedence, use Bitwise.bxor/2 instead │ 51 │ b = (b ^^^ c) |> rotl(7) │ ~ │ └─ lib/chacha20.ex:51:12 Generated chacha20 app ==> curve25519 Compiling 1 file (.ex) warning: ~~~ is deprecated. Use Bitwise.bnot/1 instead for clarity │ 17 │ c |> band(~~~7) │ ~ │ └─ lib/curve25519.ex:17:15 warning: ~~~ is deprecated. Use Bitwise.bnot/1 instead for clarity │ 18 │ |> band(~~~(128 <<< 8 * 31)) │ ~ │ └─ lib/curve25519.ex:18:15 Generated curve25519 app ==> nerves_logging CC kmsg_tailer.o LD kmsg_tailer Compiling 5 files (.ex) Generated nerves_logging app ==> ring_logger Compiling 7 files (.ex) Generated ring_logger app ==> shoehorn Compiling 8 files (.ex) Generated shoehorn app ==> poly1305 Compiling 1 file (.ex) Generated poly1305 app ==> nerves_compatibility_test ===> Analyzing applications... ===> Compiling telemetry ==> blake2 Compiling 1 file (.ex) Generated blake2 app ==> kcl Compiling 2 files (.ex) Generated kcl app ==> uboot_env Compiling 5 files (.ex) Generated uboot_env app ==> nimble_pool Compiling 2 files (.ex) Generated nimble_pool app ==> finch Compiling 14 files (.ex) Generated finch app ==> req Compiling 19 files (.ex) Generated req app ==> pocketenv_ex Compiling 8 files (.ex) Generated pocketenv_ex app ==> property_table Compiling 8 files (.ex) Generated property_table app ==> nerves_uevent CC uevent.o LD uevent Compiling 5 files (.ex) Generated nerves_uevent app ==> nerves_runtime Compiling 14 files (.ex) Generated nerves_runtime app ==> toolshed Compiling 5 files (.ex) Generated toolshed app ==> nerves_compatibility_test Compiling 2 files (.ex) Generated nerves_compatibility_test app |nerves| Building OTP Release... * [Nerves] validating vm.args * skipping runtime configuration (config/runtime.exs not found) * creating _build/mangopi_mq_pro/rel/nerves_compatibility_test/releases/0.1.0/vm.args Updating base firmware image with Erlang release... Copying rootfs_overlay: /work/proj/_build/mangopi_mq_pro/nerves/rootfs_overlay Copying rootfs_overlay: /work/proj/rootfs_overlay Building /work/proj/_build/mangopi_mq_pro/nerves/images/nerves_compatibility_test.fw... Firmware UUID: grit-certain (562ccbd5-45dd-5711-e845-a3db0e7d7efb) Firmware built successfully! 🎉 Now you may install it to a MicroSD card using `mix burn` or upload it to a device with `mix upload` or `mix firmware.gen.script`+`./upload.sh`. * Cleaning pocketenv_ex ==> nerves ==> nerves_compatibility_test Nerves environment MIX_TARGET: mangopi_mq_pro MIX_ENV: prod ==> pocketenv_ex Compiling 8 files (.ex) Generated pocketenv_ex app ==> nerves_compatibility_test Generated nerves_compatibility_test app |nerves| Building OTP Release... * [Nerves] validating vm.args * skipping runtime configuration (config/runtime.exs not found) * creating _build/mangopi_mq_pro/rel/nerves_compatibility_test/releases/0.1.0/vm.args Updating base firmware image with Erlang release... Copying rootfs_overlay: /work/proj/_build/mangopi_mq_pro/nerves/rootfs_overlay Copying rootfs_overlay: /work/proj/rootfs_overlay Building /work/proj/_build/mangopi_mq_pro/nerves/images/nerves_compatibility_test.fw... Firmware UUID: grit-certain (562ccbd5-45dd-5711-e845-a3db0e7d7efb) Firmware built successfully! 🎉 Now you may install it to a MicroSD card using `mix burn` or upload it to a device with `mix upload` or `mix firmware.gen.script`+`./upload.sh`.