changed
CHANGELOG.md
|
@@ -1,5 +1,14 @@
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+ ## v0.1.4
|
4
|
+
|
5
|
+ * Updates
|
6
|
+ * Bump Busybox to 1.31.1. This is the latest stable release.
|
7
|
+
|
8
|
+ * Bug fixes
|
9
|
+ * Remove parallel build. This causes issues on Macs and it's not clear why. It
|
10
|
+ seems simpler to remove it for now.
|
11
|
+
|
3
12
|
## v0.1.3
|
4
13
|
|
5
14
|
* Bug fixes
|
changed
Makefile
|
@@ -14,7 +14,7 @@
|
14
14
|
# CFLAGS compiler flags for compiling all C files
|
15
15
|
# LDFLAGS linker flags for linking all binaries
|
16
16
|
|
17
|
- BUSYBOX_VERSION = 1.30.1
|
17
|
+ BUSYBOX_VERSION = 1.31.1
|
18
18
|
|
19
19
|
TOP := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))
|
20
20
|
SRC_TOP = $(TOP)/busybox-$(BUSYBOX_VERSION)
|
changed
README.md
|
@@ -1,7 +1,8 @@
|
1
1
|
# BusyBox for Elixir programs
|
2
2
|
|
3
|
- [![CircleCI](https://circleci.com/gh/nerves-networking/elixir_busybox.svg?style=svg)](https://circleci.com/gh/nerves-networking/elixir_busybox)
|
4
3
|
[![Hex version](https://img.shields.io/hexpm/v/busybox.svg "Hex version")](https://hex.pm/packages/busybox)
|
4
|
+ [![API docs](https://img.shields.io/hexpm/v/busybox.svg?label=hexdocs "API docs")](https://hexdocs.pm/busybox/Busybox.html)
|
5
|
+ [![CircleCI](https://circleci.com/gh/nerves-networking/elixir_busybox.svg?style=svg)](https://circleci.com/gh/nerves-networking/elixir_busybox)
|
5
6
|
|
6
7
|
[BusyBox](https://www.busybox.net/) is a C program that provides implementations
|
7
8
|
of many Unix utilities in one small package. It is frequently used in embedded
|
changed
busybox.hash
|
@@ -1 +1 @@
|
1
|
- 3d1d04a4dbd34048f4794815a5c48ebb9eb53c5277e09ffffc060323b95dfbdc busybox-1.30.1.tar.bz2
|
1
|
+ d0f940a72f648943c1f2211e0e3117387c31d765137d92bd8284a3fb9752a998 busybox-1.31.1.tar.bz2
|
changed
hex_metadata.config
|
@@ -18,4 +18,4 @@
|
18
18
|
{<<"optional">>,false},
|
19
19
|
{<<"repository">>,<<"hexpm">>},
|
20
20
|
{<<"requirement">>,<<"~> 0.5">>}]]}.
|
21
|
- {<<"version">>,<<"0.1.3">>}.
|
21
|
+ {<<"version">>,<<"0.1.4">>}.
|
changed
mix.exs
|
@@ -1,7 +1,7 @@
|
1
1
|
defmodule Busybox.MixProject do
|
2
2
|
use Mix.Project
|
3
3
|
|
4
|
- @version "0.1.3"
|
4
|
+ @version "0.1.4"
|
5
5
|
|
6
6
|
def project do
|
7
7
|
[
|
|
@@ -11,7 +11,7 @@ defmodule Busybox.MixProject do
|
11
11
|
compilers: [:elixir_make | Mix.compilers()],
|
12
12
|
make_targets: ["all"],
|
13
13
|
make_clean: ["clean"],
|
14
|
- make_args: make_args(),
|
14
|
+ make_error_message: "",
|
15
15
|
start_permanent: Mix.env() == :prod,
|
16
16
|
build_embedded: true,
|
17
17
|
deps: deps(),
|
|
@@ -63,9 +63,4 @@ defmodule Busybox.MixProject do
|
63
63
|
source_url: "https://github.com/nerves-networking/elixir_busybox"
|
64
64
|
]
|
65
65
|
end
|
66
|
-
|
67
|
- defp make_args do
|
68
|
- # Tell make to use all cores when building
|
69
|
- ["-j", to_string(:erlang.system_info(:schedulers))]
|
70
|
- end
|
71
66
|
end
|