Update Buildroot to 2019.02.3 (#415)

* Update Buildroot to 2019-02.3

* Fix enter script

* Update ova_defconfig

* Fix network manager

* Remove runc patches

* Use same docker version

* Fix build

* Fix vmtools

* Fix depens

* Fix handling with tempfiles

* Fix permission handling

* Fix cp

* Cleanup

* Fix mounts
This commit is contained in:
Pascal Vizeli
2019-06-27 11:58:50 +02:00
committed by GitHub
parent bb201fb842
commit 41d3f59002
2416 changed files with 36288 additions and 21885 deletions

View File

@@ -94,6 +94,13 @@ define install-rebar-deps
$(REBAR_$(2)_DEPS_DIR)/$($(PKG)_ERLANG_APP)
endef
# Remove the "deps" statement from a rebar.config file
define remove-rebar-config-dependencies
$(SED) '/^{deps.*}\.$$/d' -e '/^{deps/,/}\.$$/d' \
$($(PKG)_DIR)/rebar.config
endef
################################################################################
# inner-rebar-package -- defines how the configuration, compilation
# and installation of a rebar package should be done, implements a few
@@ -227,6 +234,14 @@ $(2)_REBAR = rebar
$(2)_DEPENDENCIES += host-erlang-rebar
endif
$(2)_KEEP_DEPENDENCIES ?= NO
# Remove dependencies listed in rebar.config unless the package says
# otherwise
ifeq ($$($(2)_KEEP_DEPENDENCIES),NO)
$(2)_POST_PATCH_HOOKS += remove-rebar-config-dependencies
endif
# The package sub-infra to use
#
ifeq ($$($(2)_USE_AUTOCONF),YES)