96e9480fbc
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for BSD-2c is BSD-2-Clause. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/BSD-2c/BSD-2-Clause/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
682 B
Makefile
22 lines
682 B
Makefile
################################################################################
|
|
#
|
|
# ts4800-mbrboot
|
|
#
|
|
################################################################################
|
|
|
|
TS4800_MBRBOOT_VERSION = cf8f7072ed5a4a4e48fcb9841b2e31e519ec5dca
|
|
TS4800_MBRBOOT_SITE = $(call github,embeddedarm,ts4800-mbrboot,$(TS4800_MBRBOOT_VERSION))
|
|
TS4800_MBRBOOT_LICENSE = BSD-2-Clause
|
|
TS4800_MBRBOOT_LICENSE_FILES = LICENSE
|
|
TS4800_MBRBOOT_INSTALL_IMAGES = YES
|
|
|
|
define TS4800_MBRBOOT_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define TS4800_MBRBOOT_INSTALL_IMAGES_CMDS
|
|
$(INSTALL) -D -m 0644 $(@D)/mbrboot.bin $(BINARIES_DIR)/mbrboot.bin
|
|
endef
|
|
|
|
$(eval $(generic-package))
|