af31c309e7
We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
666 B
Makefile
22 lines
666 B
Makefile
################################################################################
|
|
#
|
|
# mkpimage
|
|
#
|
|
################################################################################
|
|
|
|
HOST_MKPIMAGE_LICENSE = GPL-2.0
|
|
|
|
# source included in the package
|
|
# came from barebox's repository:
|
|
# https://git.pengutronix.de/cgit/barebox/tree/scripts/socfpga_mkimage.c?id=55d29525146dcd280987dfd565bfd34f08858fb3
|
|
define HOST_MKPIMAGE_BUILD_CMDS
|
|
$(HOSTCC) $(HOST_CFLAGS) $(HOST_LDFLAGS) \
|
|
package/mkpimage/mkpimage.c -o $(@D)/mkpimage
|
|
endef
|
|
|
|
define HOST_MKPIMAGE_INSTALL_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/mkpimage $(HOST_DIR)/usr/bin/mkpimage
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|