mirror of
https://github.com/nxp-imx/meta-imx.git
synced 2025-07-19 18:39:09 +02:00
32 lines
874 B
BlitzBasic
32 lines
874 B
BlitzBasic
# Copyright (C) 2019-2021 NXP
|
|
|
|
DESCRIPTION = "ECDSA Verification Engine using HSM"
|
|
SUMMARY = "ECDSA Verification Engine using HSM"
|
|
|
|
LICENSE = "Proprietary"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=44a8052c384584ba09077e85a3d1654f"
|
|
|
|
DEPENDS = "imx-seco-libs openssl"
|
|
|
|
SRC_URI = "${FSL_MIRROR}/${BPN}-${PV}.bin;fsl-eula=true"
|
|
|
|
SRC_URI[sha256sum] = "03edee58baaa09d5060c496d0ba9cf16f58b232d60dbaa664149a1566491ad11"
|
|
|
|
inherit fsl-eula-unpack
|
|
|
|
do_install(){
|
|
install -d ${D}${libdir}
|
|
install -d ${D}${includedir}
|
|
install -d ${D}${bindir}
|
|
|
|
cp -P --no-preserve=ownership ${S}/usr/lib/* ${D}${libdir}
|
|
cp -r --no-preserve=ownership ${S}/usr/include/* ${D}${includedir}
|
|
cp -r --no-preserve=ownership ${S}/usr/bin/* ${D}${bindir}
|
|
}
|
|
|
|
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
|
|
INHIBIT_PACKAGE_STRIP = "1"
|
|
INHIBIT_SYSROOT_STRIP = "1"
|
|
|
|
COMPATIBLE_MACHINE = "(mx8dxl-nxp-bsp)"
|