a82882ae10
Following our feedback, Marvell has added a README.md file into the branch that contains the firmware. Thereore, this commit bumps the version to the commit that includes the README.md file (it's the only change, the firmware files are unmodified), updates <pkg>_LICENSE_FILES to point to README.md, and adds the hash for this license files. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
749 B
Makefile
21 lines
749 B
Makefile
################################################################################
|
|
#
|
|
# binaries-marvell
|
|
#
|
|
################################################################################
|
|
|
|
BINARIES_MARVELL_VERSION = a8ac27b7884ed2c1efcf9f3326de3e0ed7b94e91
|
|
BINARIES_MARVELL_SITE = $(call github,MarvellEmbeddedProcessors,binaries-marvell,$(BINARIES_MARVELL_VERSION))
|
|
|
|
BINARIES_MARVELL_LICENSE = GPL-2.0 with freertos-exception-2.0
|
|
BINARIES_MARVELL_LICENSE_FILES = README.md
|
|
|
|
BINARIES_MARVELL_IMAGE = $(call qstrip,$(BR2_TARGET_BINARIES_MARVELL_IMAGE))
|
|
BINARIES_MARVELL_INSTALL_IMAGES = YES
|
|
|
|
define BINARIES_MARVELL_INSTALL_IMAGES_CMDS
|
|
$(INSTALL) -D -m 0644 $(@D)/$(BINARIES_MARVELL_IMAGE) $(BINARIES_DIR)/scp-fw.bin
|
|
endef
|
|
|
|
$(eval $(generic-package))
|