meta-freescale-3rdparty/recipes-bsp/mqxboot/mqxboot_1.0.1.bb
Otavio Salvador 627381007d
Some checks failed
Update LICENSE file / update-license (push) Has been cancelled
treewide: Remove all references to SRC_URI[md5sum] hashes
Drop md5sum check as  no longer mandated in Yocto Project.

SRC_URI[md5sum] used to also be commonly used, but it is deprecated and
should be replaced by SRC_URI[sha256sum] when updating existing recipes. See:

 - https://docs.yoctoproject.org/dev/singleindex.html#fetching-code
 - https://docs.yoctoproject.org/dev/singleindex.html#src-uri-checksum-behaviour

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2025-01-13 17:21:58 -03:00

27 lines
792 B
BlitzBasic

# Copyright (C) 2013 Timesys Corporation
SUMMARY = "MQX Image loader - starts an MQX image on the M4"
LICENSE = "GPL-2.0-only | BSD"
LIC_FILES_CHKSUM = "file://LICENSE;md5=c49712341497d0b5f2e40c30dff2af9d \
file://BSD_LICENSE;md5=10695b8f86532e5e44640acf4d92a2ef"
DEPENDS = "virtual/kernel-module-mcc"
SRC_URI = " \
http://repository.timesys.com/buildsources/m/mqxboot/mqxboot-${PV}/mqxboot-${PV}.tar.bz2 \
file://0001-Makefile-use-OE-ldflags.patch \
"
SRC_URI[sha256sum] = "32444409de5e809b9347e275a3bf78623a89e9ecce3188ebac79318b2b7c39b3"
S = "${WORKDIR}/mqxboot-${PV}"
CFLAGS += "-I${STAGING_KERNEL_DIR}/include"
RDEPENDS:${PN} = "virtual/kernel-module-mcc"
COMPATIBLE_MACHINE = "(vf-generic-bsp)"
do_install() {
oe_runmake 'DESTDIR=${D}' install
}