Bump buidlroot version to 2018.02.6

This commit is contained in:
jbnadal
2018-10-22 14:55:59 +02:00
parent 222960cedb
commit bec94fdb63
6150 changed files with 84803 additions and 117446 deletions

View File

@@ -0,0 +1,8 @@
config BR2_PACKAGE_IMX_M4FWLOADER
bool "imx-m4fwloader"
depends on BR2_arm # Only relevant for i.MX
help
This package provides a tool to load a firmware to the
Cortex-M4 core available in some i.MX processors.
https://github.com/codeauroraforum/imx-m4fwloader

View File

@@ -0,0 +1,3 @@
# Locally computed
sha256 fb6334900972fe389e808845417dd9045fb0f7eb47952fc22a00f4cdaf94af1a imx-m4fwloader-8cf4d17a09ba23250d43381b49ba00d92406fad9.tar.gz
sha256 c03cea027b4b40e4402fabd08557736727ec3d5bc54ad64ab6472de432198cad LICENSE

View File

@@ -0,0 +1,22 @@
################################################################################
#
# imx-m4fwloader
#
################################################################################
IMX_M4FWLOADER_VERSION = 8cf4d17a09ba23250d43381b49ba00d92406fad9
IMX_M4FWLOADER_SITE = $(call github,codeauroraforum,imx-m4fwloader,$(IMX_M4FWLOADER_VERSION))
IMX_M4FWLOADER_LICENSE = GPL-2.0+
IMX_M4FWLOADER_LICENSE_FILES = LICENSE
define IMX_M4FWLOADER_BUILD_CMDS
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) -o $(@D)/imx-m4fwloader \
$(@D)/m4fwloader.c
endef
define IMX_M4FWLOADER_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 755 $(@D)/imx-m4fwloader \
$(TARGET_DIR)/usr/sbin/imx-m4fwloader
endef
$(eval $(generic-package))