aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/testbed-setup/ansible/roles/dpdk/tasks/main.yaml
blob: 46f942be93edda5a8bd3a5c7625c7a9d385ef241 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
# file: roles/dpdk/tasks/main.yaml

- name: Inst - Update Package Cache (APT)
  apt:
    update_cache: yes
    cache_valid_time: 3600
  when:
    - ansible_distribution|lower == 'ubuntu'
  tags:
    - dpdk-inst-prerequisites

- name: Inst - Prerequisites
  package:
    name: "{{ packages | flatten(levels=1) }}"
    state: latest
  tags:
    - dpdk-inst-prerequisites

- name: Download Release Archive
  get_url:
    url: "{{ dpdk_url }}/dpdk-{{ item }}.tar.xz"
    dest: "{{ dpdk_target_dir }}/dpdk-{{ item }}.tar.xz"
    mode: 0644
  loop: "{{ dpdk_version }}"
  register: "dpdk_downloaded"
  tags:
    - dpdk-inst

- name: Extract Release Archive
  unarchive:
    remote_src: true
    src: "{{ dpdk_target_dir }}/dpdk-{{ item }}.tar.xz"
    dest: "{{ dpdk_target_dir }}/"
    creates: "{{ dpdk_target_dir }}/dpdk-{{ item }}"
  loop: "{{ dpdk_version }}"
  when: "dpdk_downloaded"
  register: "dpdk_extracted"
  tags:
    - dpdk-inst

- name: Build igb_uio by default
  lineinfile:
    dest: "{{ dpdk_target_dir }}/dpdk-{{ item }}/config/common_base"
    regexp: "^CONFIG_RTE_EAL_IGB_UIO"
    line: "CONFIG_RTE_EAL_IGB_UIO=y"
  loop: "{{ dpdk_version }}"
  when: "dpdk_extracted"
  register: "dpdk_configured"
  tags:
    - dpdk-inst

- name: Compile Release I
  become: yes
  command: "make install T={{ dpdk_build_targets[item][ansible_machine] }} DESTDIR={{ dpdk_target_dir }}/dpdk-{{ item }} chdir={{ dpdk_target_dir }}/dpdk-{{ item }}"
  loop: "{{ dpdk_version }}"
  when: "dpdk_configured"
  register: "dpdk_compiled"
  tags:
    - dpdk-inst

- name: Link igb_uio Module
  shell: "ln -fs {{ dpdk_target_dir }}/dpdk-{{ item }}/{{ dpdk_build_targets[item][ansible_machine] }}/kmod/igb_uio.ko /lib/modules/`uname -r`/igb_uio.ko && depmod -a"
  ignore_errors: "yes"
  loop: "{{ dpdk_version }}"
  when: "dpdk_compiled"
  tags:
    - dpdk-inst