summaryrefslogtreecommitdiffstats
path: root/meta-integrity/recipes-kernel/linux/linux-yocto-integrity.inc
blob: a9e5a9310def58f679526af4ca4cf1c5bd7d7078 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FILESEXTRAPATHS_prepend := "${THISDIR}/linux-yocto:"

IMA_ENABLED = "${@bb.utils.contains('DISTRO_FEATURES', 'ima', '1', '0', d)}"

DEPENDS += "${@'key-store openssl-native' if d.getVar('IMA_ENABLED', True) == '1' else ''}"

SRC_URI += "\
    ${@'file://ima.scc file://ima.cfg file://integrity.scc file://integrity.cfg' \
       if d.getVar('IMA_ENABLED', True) == '1' else ''} \
"

do_configure_prepend() {
    cert="${STAGING_DIR_TARGET}${sysconfdir}/keys/system_trusted_key.crt"

    if [ -f "$cert" ]; then
        install -m 0644 "$cert" "${B}"
    else
        true
    fi
}