Add buildroot 2018-02

This commit is contained in:
Pascal Vizeli
2018-03-17 23:47:00 +00:00
parent 3776c47f83
commit 67742041ad
10007 changed files with 405098 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
config BR2_PACKAGE_HOST_OMAP_U_BOOT_UTILS
bool "host omap-u-boot-utils"
depends on BR2_arm || BR2_armeb
help
U-Boot Utilities for Texas Instrument's OMAP platforms.
This is a set of tools to control U-Boot from scripts,
generate OMAP-specific signed image files and more.
https://github.com/nmenon/omap-u-boot-utils

View File

@@ -0,0 +1,2 @@
# locally computed
sha256 f9c2553efeff1289b2b964a266a0b4a03a377f84a14d0599a779f6e3d7b75d5f omap-u-boot-utils-3f07426cddc0be9e24702e7aacc7574ddd7fba28.tar.gz

View File

@@ -0,0 +1,22 @@
################################################################################
#
# omap-u-boot-utils
#
################################################################################
OMAP_U_BOOT_UTILS_VERSION = 3f07426cddc0be9e24702e7aacc7574ddd7fba28
OMAP_U_BOOT_UTILS_SITE = $(call github,nmenon,omap-u-boot-utils,$(OMAP_U_BOOT_UTILS_VERSION))
OMAP_U_BOOT_UTILS_LICENSE = GPL-2.0, GPL-2.0+
OMAP_U_BOOT_UTILS_LICENSE_FILES = COPYING
define HOST_OMAP_U_BOOT_UTILS_BUILD_CMDS
$(HOST_MAKE_ENV) $(MAKE) -C $(@D)
endef
define HOST_OMAP_U_BOOT_UTILS_INSTALL_CMDS
for f in gpsign pserial tagger ucmd ukermit ; do \
$(INSTALL) -D -m 755 $(@D)/$$f $(HOST_DIR)/bin/$$f ; \
done
endef
$(eval $(host-generic-package))