Please suggest method to install using yocto receipe , i have installed dpdk using bitbake dpdk command, but default it is taking crypto_dpaa2_sec PMD only. Userguide does provide the clear steps with yocto.
when i am verifying with the below commands:
dpdk-test-crypto-perf -c 0x3 --log-level=3 -- --devtype crypto_dpaa2_sec , this commands shows a meaningful result, while with other such as devtype crypto_armv8/crypto_openssl/crypto_null , it is showing "USER1: Failed to initialise requested crypto device type", refer to attachments.
Please add lines below in the recipe of DPDK
EXTRA_OEMESON:append = " \
-Denable_drivers=crypto/dpaa2_sec,crypto/armv8,crypto/openssl,crypto/null \
"
bitbake -e dpdk | grep enable_drivers
bitbake -c clean dpdk
bitbake dpdk
dpdk-test-crypto-perf --list