[dts] [PATCH V1 1/3] add fips environment variable

Chen, Zhaoyan zhaoyan.chen at intel.com
Wed Oct 9 02:51:15 CEST 2019


Acked-by: Chen, Zhaoyan <zhaoyan.chen at intel.com>



Regards,
Zhaoyan Chen


> -----Original Message-----
> From: dts [mailto:dts-bounces at dpdk.org] On Behalf Of yaobing
> Sent: Tuesday, October 8, 2019 1:29 PM
> To: dts at dpdk.org
> Cc: Yao, BingX Y <bingx.y.yao at intel.com>
> Subject: [dts] [PATCH V1 1/3] add fips environment variable
> 
> add fips_cryptodev environment variable
> 
> Signed-off-by: yaobing <bingx.y.yao at intel.com>
> ---
>  tests/cryptodev_common.py | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)
> 
> diff --git a/tests/cryptodev_common.py b/tests/cryptodev_common.py index
> 2e86bca..f521fbe 100644
> --- a/tests/cryptodev_common.py
> +++ b/tests/cryptodev_common.py
> @@ -44,12 +44,30 @@ def build_dpdk_with_cryptodev(test_case):
>      if "kasumi_lib_path" in test_case.get_suite_cfg():
>          kasumi_lib_path = test_case.get_suite_cfg()["kasumi_lib_path"]
> 
> +    fip_cflags_path = "'-I/opt/openssl-fips-2.0.16/include/'"
> +    if "fip_cflags_path" in test_case.get_suite_cfg():
> +        fip_cflags_path = test_case.get_suite_cfg()["fip_cflags_path"]
> +
> +    fip_ldflags_path = "'-L/opt/openssl-fips-2.0.16/'"
> +    if "fip_ldflags_path" in test_case.get_suite_cfg():
> +        fip_cflags_path = test_case.get_suite_cfg()["fip_ldflags_path"]
> +
> +    fip_library_path = "/opt/openssl-fips-2.0.16/"
> +    if "fip_library_path" in test_case.get_suite_cfg():
> +        fip_cflags_path = test_case.get_suite_cfg()["fip_library_path"]
> +
>      test_case.dut.send_expect(
>          "export LIBSSO_SNOW3G_PATH={}".format(snow3g_lib_path), "#")
>      test_case.dut.send_expect(
>          "export LIBSSO_ZUC_PATH={}".format(zuc_lib_path), "#")
>      test_case.dut.send_expect(
>          "export LIBSSO_KASUMI_PATH={}".format(kasumi_lib_path), "#")
> +    test_case.dut.send_expect(
> +        "export EXTRA_CFLAGS={}".format(fip_cflags_path), "#")
> +    test_case.dut.send_expect(
> +        "export EXTRA_LDFLAGS={}".format(fip_ldflags_path), "#")
> +    test_case.dut.send_expect(
> +        "export LD_LIBRARY_PATH={}".format(fip_library_path), "#")
> 
>      test_case.dut.send_expect(
>          "sed -i
> 's/CONFIG_RTE_LIBRTE_PMD_AESNI_MB=n$/CONFIG_RTE_LIBRTE_PMD_AESNI_MB
> =y/' config/common_base", "# ")
> --
> 2.17.2



More information about the dts mailing list