summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/kernel-modules/kernel-module-ar_git.bb
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-kernel/kernel-modules/kernel-module-ar_git.bb')
-rw-r--r--recipes-kernel/kernel-modules/kernel-module-ar_git.bb13
1 files changed, 8 insertions, 5 deletions
diff --git a/recipes-kernel/kernel-modules/kernel-module-ar_git.bb b/recipes-kernel/kernel-modules/kernel-module-ar_git.bb
index 054cb1fb9..9303459a0 100644
--- a/recipes-kernel/kernel-modules/kernel-module-ar_git.bb
+++ b/recipes-kernel/kernel-modules/kernel-module-ar_git.bb
@@ -1,11 +1,14 @@
1SUMMARY = "Auto Response Control Module" 1SUMMARY = "Auto Response Control Module"
2DESCRIPTION = "Kernel module providing QorIQ SEC auto-response control."
3HOMEPAGE = "https://github.com/nxp-qoriq-yocto-sdk/auto-resp"
4SECTION = "kernel"
2LICENSE = "GPL-2.0-only & BSD" 5LICENSE = "GPL-2.0-only & BSD"
3LIC_FILES_CHKSUM = "file://COPYING;md5=b5881ecf398da8a03a3f4c501e29d287" 6LIC_FILES_CHKSUM = "file://COPYING;md5=b5881ecf398da8a03a3f4c501e29d287"
4 7
5inherit module 8inherit module
6 9
7SRC_URI = "git://github.com/nxp-qoriq-yocto-sdk/auto-resp;branch=nxp/sdk-v2.0.x;protocol=https" 10SRC_URI = "git://github.com/nxp-qoriq-yocto-sdk/auto-resp;branch=nxp/sdk-v2.0.x;protocol=https"
8SRCREV = "9a74743167dcfcfbca5056eedbff9a52337c9712" 11SRCREV = "9a74743167dcfcfbca5056eedbff9a52337c9712"
9 12
10EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} SYSROOT=${STAGING_DIR_TARGET}" 13EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} SYSROOT=${STAGING_DIR_TARGET}"
11export KERNEL_PATH 14export KERNEL_PATH
@@ -17,10 +20,10 @@ do_compile:prepend() {
17} 20}
18 21
19do_install(){ 22do_install(){
20 install -d ${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION} 23 install -d ${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}
21 install -d ${D}${bindir} 24 install -d ${D}${bindir}
22 install -m 644 ${B}/bin/ar.ko ${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/ 25 install -m 644 ${B}/bin/ar.ko ${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/
23 cp -f ${S}/bin/ar_* ${D}${bindir}/ 26 cp -f ${S}/bin/ar_* ${D}${bindir}/
24} 27}
25 28
26FILES:${PN} += "${bindir}/" 29FILES:${PN} += "${bindir}/"