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

@@ -0,0 +1,7 @@
config BR2_PACKAGE_RTC_TOOLS
bool "rtc-tools"
help
This package provide a set of user-space tools that can be
used to manipulate Real Time Clock Devices.
https://git.kernel.org/pub/scm/linux/kernel/git/abelloni/rtc-tools.git/

View File

@@ -0,0 +1,3 @@
# Locally calculated
sha256 152d8455bae5ad672e99bb91dfbed5b8b4bd8b0325146d1cf1c4d80b6e0d8a16 rtc-tools-33ef4aa1c92b0c92a351284d93d1ac5570de9cc7.tar.gz
sha256 7ae50a5344af14d6231aff6814632a220b3127da4099aea2c6070fd79c407c1a COPYING

View File

@@ -0,0 +1,30 @@
################################################################################
#
# rtc-tools
#
################################################################################
RTC_TOOLS_VERSION = 33ef4aa1c92b0c92a351284d93d1ac5570de9cc7
RTC_TOOLS_SITE = git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/rtc-tools.git
RTC_TOOLS_LICENSE = GPL-2.0
RTC_TOOLS_LICENSE_FILES = COPYING
RTC_TOOLS_BINARIES = rtc rtc-range
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
RTC_TOOLS_BINARIES += rtc-sync
endif
define RTC_TOOLS_BUILD_CMDS
$(foreach bin,$(RTC_TOOLS_BINARIES),\
$(TARGET_CC) $(TARGET_CFLAGS) -o $(@D)/$(bin) $(@D)/$(bin).c
)
endef
define RTC_TOOLS_INSTALL_TARGET_CMDS
$(foreach bin,$(RTC_TOOLS_BINARIES),\
$(INSTALL) -D -m 0755 $(@D)/$(bin) $(TARGET_DIR)/usr/bin/$(bin)
)
endef
$(eval $(generic-package))