Current section

80 Versions

Jump to

Compare versions

5 files changed
+24 additions
-14 deletions
  @@ -1,5 +1,16 @@
1 1 # Changelog
2 2
3 + ## v0.8.0
4 +
5 + This release updates Buildroot to 2020.02 and upgrades gcc from 8.3 to 9.2.
6 + While this is a minor version bump due to the Buildroot release update, barring
7 + advanced usage of Nerves, this is a straightforward update from v0.7.2.
8 +
9 + * Updated dependencies
10 + * [nerves_system_br v1.11.0](https://github.com/nerves-project/nerves_system_br/releases/tag/v1.11.0)
11 + * linux 4.19.108
12 + * Erlang 22.2.8
13 +
3 14 ## v0.7.2
4 15
5 16 * Updated dependencies
  @@ -1 +1 @@
1 - 0.7.2
1 + 0.8.0
  @@ -5,9 +5,9 @@
5 5 {<<"files">>,
6 6 [<<"fwup_include">>,<<"fwup_include/provisioning.conf">>,
7 7 <<"rootfs_overlay">>,<<"rootfs_overlay/etc">>,
8 - <<"rootfs_overlay/etc/erlinit.config">>,
9 8 <<"rootfs_overlay/etc/fw_env.config">>,
10 - <<"rootfs_overlay/etc/boardid.config">>,<<"CHANGELOG.md">>,
9 + <<"rootfs_overlay/etc/boardid.config">>,
10 + <<"rootfs_overlay/etc/erlinit.config">>,<<"CHANGELOG.md">>,
11 11 <<"fwup-revert.conf">>,<<"fwup.conf">>,<<"grub.cfg">>,<<"LICENSE">>,
12 12 <<"linux-4.19.defconfig">>,<<"mix.exs">>,<<"nerves_defconfig">>,
13 13 <<"post-createfs.sh">>,<<"post-build.sh">>,<<"README.md">>,<<"VERSION">>]}.
  @@ -20,20 +20,20 @@
20 20 {<<"name">>,<<"nerves">>},
21 21 {<<"optional">>,false},
22 22 {<<"repository">>,<<"hexpm">>},
23 - {<<"requirement">>,<<"~> 1.5.0">>}],
23 + {<<"requirement">>,<<"~> 1.5.4 or ~> 1.6.0">>}],
24 24 [{<<"app">>,<<"nerves_system_br">>},
25 25 {<<"name">>,<<"nerves_system_br">>},
26 26 {<<"optional">>,false},
27 27 {<<"repository">>,<<"hexpm">>},
28 - {<<"requirement">>,<<"1.10.2">>}],
28 + {<<"requirement">>,<<"1.11.0">>}],
29 29 [{<<"app">>,<<"nerves_toolchain_x86_64_unknown_linux_musl">>},
30 30 {<<"name">>,<<"nerves_toolchain_x86_64_unknown_linux_musl">>},
31 31 {<<"optional">>,false},
32 32 {<<"repository">>,<<"hexpm">>},
33 - {<<"requirement">>,<<"1.2.0">>}],
33 + {<<"requirement">>,<<"~> 1.3.0">>}],
34 34 [{<<"app">>,<<"nerves_system_linter">>},
35 35 {<<"name">>,<<"nerves_system_linter">>},
36 36 {<<"optional">>,false},
37 37 {<<"repository">>,<<"hexpm">>},
38 38 {<<"requirement">>,<<"~> 0.3.0">>}]]}.
39 - {<<"version">>,<<"0.7.2">>}.
39 + {<<"version">>,<<"0.8.0">>}.
  @@ -47,9 +47,9 @@ defmodule NervesSystemVultr.MixProject do
47 47
48 48 defp deps do
49 49 [
50 - {:nerves, "~> 1.5.0", runtime: false},
51 - {:nerves_system_br, "1.10.2", runtime: false},
52 - {:nerves_toolchain_x86_64_unknown_linux_musl, "1.2.0", runtime: false},
50 + {:nerves, "~> 1.5.4 or ~> 1.6.0", runtime: false},
51 + {:nerves_system_br, "1.11.0", runtime: false},
52 + {:nerves_toolchain_x86_64_unknown_linux_musl, "~> 1.3.0", runtime: false},
53 53 {:nerves_system_linter, "~> 0.3.0", runtime: false},
54 54 {:ex_doc, "~> 0.18", only: [:dev, :test], runtime: false}
55 55 ]
  @@ -4,10 +4,9 @@ BR2_OPTIMIZE_2=y
4 4 BR2_GLOBAL_PATCH_DIR="${BR2_EXTERNAL_NERVES_PATH}/patches"
5 5 BR2_TOOLCHAIN_EXTERNAL=y
6 6 BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD=y
7 - BR2_TOOLCHAIN_EXTERNAL_URL="https://github.com/nerves-project/toolchains/releases/download/v1.2.0/nerves_toolchain_x86_64_unknown_linux_musl-linux_x86_64-1.2.0-4A08025.tar.xz"
7 + BR2_TOOLCHAIN_EXTERNAL_URL="https://github.com/nerves-project/toolchains/releases/download/v1.3.0/nerves_toolchain_x86_64_unknown_linux_musl-linux_x86_64-1.3.0-7418E12.tar.xz"
8 8 BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX="$(ARCH)-unknown-linux-musl"
9 - BR2_TOOLCHAIN_EXTERNAL_GCC_8=y
10 - BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_4=y
9 + BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_14=y
11 10 BR2_TOOLCHAIN_EXTERNAL_CUSTOM_MUSL=y
12 11 BR2_TOOLCHAIN_EXTERNAL_CXX=y
13 12 BR2_ROOTFS_SKELETON_CUSTOM=y
  @@ -19,7 +18,7 @@ BR2_ROOTFS_POST_BUILD_SCRIPT="${NERVES_DEFCONFIG_DIR}/post-build.sh"
19 18 BR2_ROOTFS_POST_IMAGE_SCRIPT="${NERVES_DEFCONFIG_DIR}/post-createfs.sh"
20 19 BR2_LINUX_KERNEL=y
21 20 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
22 - BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.43"
21 + BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.19.108"
23 22 BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
24 23 BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="${NERVES_DEFCONFIG_DIR}/linux-4.19.defconfig"
25 24 BR2_LINUX_KERNEL_XZ=y