mirror of
https://github.com/Freescale/meta-freescale-3rdparty.git
synced 2025-07-05 05:15:24 +02:00

Some checks failed
Update LICENSE file / update-license (push) Has been cancelled
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>
27 lines
792 B
BlitzBasic
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
|
|
}
|