diff options
author | Emma Foley <emma.l.foley@intel.com> | 2018-04-11 13:25:56 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-04-11 13:25:56 +0000 |
commit | d2e5307fed153989558aa9506f33e69c74d29675 (patch) | |
tree | 7c2ae0946eb45a07d71e0aaea2984d24890be837 /ansible/roles/install_dpdk_shared/tasks/main.yml | |
parent | ead90064d12be552bd334828d41ffffa75fad01b (diff) | |
parent | a78a2979e872c64800f77683f1bf3b0162b87715 (diff) |
Merge "Add support for dpdk 17.05"
Diffstat (limited to 'ansible/roles/install_dpdk_shared/tasks/main.yml')
-rw-r--r-- | ansible/roles/install_dpdk_shared/tasks/main.yml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/ansible/roles/install_dpdk_shared/tasks/main.yml b/ansible/roles/install_dpdk_shared/tasks/main.yml index 65954be04..94b9215bd 100644 --- a/ansible/roles/install_dpdk_shared/tasks/main.yml +++ b/ansible/roles/install_dpdk_shared/tasks/main.yml @@ -42,6 +42,15 @@ set_fact: RTE_KERNELDIR: "/lib/modules/{{ dpdk_kernel }}/build" +# make clean must be run here as DPDK-shared is a copy of the DPDK directory +# which has already run the make command +# no T= target for clean +- command: make -j {{ ansible_processor_vcpus }} clean O={{ dpdk_make_arch }} + args: + chdir: "{{ dpdk_shared_path }}" + environment: + RTE_KERNELDIR: "{{ RTE_KERNELDIR }}" + - command: make -j {{ ansible_processor_vcpus }} config T={{ dpdk_make_arch }} O={{ dpdk_make_arch }} args: chdir: "{{ dpdk_shared_path }}" @@ -85,13 +94,6 @@ regexp: '^CONFIG_RTE_EAL_PMD_PATH=""' line: 'CONFIG_RTE_EAL_PMD_PATH="{{ dpdk_pmd_path }}"' - # no T= target for clean -- command: make -j {{ ansible_processor_vcpus }} clean O={{ dpdk_make_arch }} - args: - chdir: "{{ dpdk_shared_path }}" - environment: - RTE_KERNELDIR: "{{ RTE_KERNELDIR }}" - # TODO: disable ASLR - command: make -j {{ ansible_processor_vcpus }} |