()
| 209 | |
| 210 | |
| 211 | def check_kernel_headers(): |
| 212 | # If kernel header is not available, do not attempt to build |
| 213 | # any components that require kernel. |
| 214 | if not is_kernel_header_installed(): |
| 215 | set_config(DPDK_FINAL_CONFIG, 'CONFIG_RTE_EAL_IGB_UIO', 'n') |
| 216 | set_config(DPDK_FINAL_CONFIG, 'CONFIG_RTE_KNI_KMOD', 'n') |
| 217 | set_config(DPDK_FINAL_CONFIG, 'CONFIG_RTE_LIBRTE_KNI', 'n') |
| 218 | set_config(DPDK_FINAL_CONFIG, 'CONFIG_RTE_LIBRTE_PMD_KNI', 'n') |
| 219 | |
| 220 | |
| 221 | def check_bnx(): |
no test coverage detected