diff options
-rw-r--r-- | recipes-kernel/pkc-host/pkc-host_git.bb | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/recipes-kernel/pkc-host/pkc-host_git.bb b/recipes-kernel/pkc-host/pkc-host_git.bb index 2d5e316..3bf548f 100644 --- a/recipes-kernel/pkc-host/pkc-host_git.bb +++ b/recipes-kernel/pkc-host/pkc-host_git.bb | |||
@@ -4,30 +4,32 @@ LICENSE = "GPLv2" | |||
4 | LIC_FILES_CHKSUM = "file://Makefile;endline=30;md5=6a26ed8e76a8ea2e019c525369ed0f03" | 4 | LIC_FILES_CHKSUM = "file://Makefile;endline=30;md5=6a26ed8e76a8ea2e019c525369ed0f03" |
5 | 5 | ||
6 | inherit module qoriq_build_64bit_kernel | 6 | inherit module qoriq_build_64bit_kernel |
7 | RDEPENDS_${PN} += "cryptodev-module" | 7 | RDEPENDS_${PN} += "cryptodev-module bc" |
8 | 8 | ||
9 | # Currently pkc-host does not support RSA_KEYGEN, remove this | 9 | # Currently pkc-host does not support RSA_KEYGEN, remove this |
10 | # if it is fixed. | 10 | # if it is fixed. |
11 | REQUIRED_DISTRO_FEATURES = "c29x_pkc" | 11 | REQUIRED_DISTRO_FEATURES = "c29x_pkc" |
12 | 12 | ||
13 | SRC_URI = "git://git.freescale.com/ppc/sdk/pkc-host.git;nobranch=1" | 13 | SRC_URI = "git://git.freescale.com/ppc/sdk/pkc-host.git;nobranch=1" |
14 | SRCREV = "cae512c94e2a26cc6b0d6393d307cdea2d7282c9" | 14 | SRCREV = "564f535d596f43eb2901a7ff77bbe529a118c16e" |
15 | 15 | ||
16 | S = "${WORKDIR}/git" | 16 | S = "${WORKDIR}/git" |
17 | 17 | ||
18 | EXTRA_OEMAKE='KERNEL_DIR="${STAGING_KERNEL_DIR}" PREFIX="${D}"' | 18 | EXTRA_OEMAKE='KERNEL_DIR="${STAGING_KERNEL_DIR}" PREFIX="${D}"' |
19 | 19 | ||
20 | do_install() { | 20 | do_install() { |
21 | install -d ${D}/lib/modules/c2x0 | 21 | oe_runmake INSTALL_MOD_PATH="${D}" modules_install |
22 | install -d ${D}/etc/crypto | 22 | install -d ${D}/etc/crypto |
23 | install -d ${D}/${bindir} | 23 | install -d ${D}/${bindir} |
24 | cp ${S}/*.ko ${D}/lib/modules/c2x0 | ||
25 | cp ${S}/crypto.cfg ${D}/etc/crypto | 24 | cp ${S}/crypto.cfg ${D}/etc/crypto |
26 | cp ${S}/images/pkc-firmware.bin ${D}/etc/crypto | 25 | cp ${S}/images/pkc-firmware.bin ${D}/etc/crypto |
27 | cp ${S}/perf/mini_calc/mini_calc ${D}/${bindir} | ||
28 | cp ${S}/apps/cli/cli ${D}/${bindir} | 26 | cp ${S}/apps/cli/cli ${D}/${bindir} |
29 | cp ${S}/perf/c29x_driver_perf_profile.sh ${D}/${bindir} | 27 | cp ${S}/perf/c29x_driver_perf_profile.sh ${D}/${bindir} |
30 | } | 28 | } |
31 | 29 | ||
32 | 30 | ||
33 | FILES_${PN} += "${bindir}/mini_calc ${bindir}/cli ${bindir}/c29x_driver_perf_profile.sh /etc/crypto/crypto.cfg /etc/crypto/pkc-firmware.bin" | 31 | FILES_${PN} = "${bindir}/cli \ |
32 | ${bindir}/c29x_driver_perf_profile.sh \ | ||
33 | /etc/crypto/crypto.cfg \ | ||
34 | /etc/crypto/pkc-firmware.bin \ | ||
35 | " | ||