From: Michael Jeanson Date: Wed, 14 Aug 2024 20:03:41 +0000 (-0400) Subject: ansible: add kernel headers for arm64 and armhf X-Git-Url: http://git.lttng.org./?a=commitdiff_plain;h=378a7085a298cde856c1ea381e406e65db1043ee;p=lttng-ci.git ansible: add kernel headers for arm64 and armhf Change-Id: If27a1528514d7c7493c48c5e49ab4710560bdcad Signed-off-by: Michael Jeanson --- diff --git a/automation/ansible/roles/common-node/tasks/setup-Debian.yml b/automation/ansible/roles/common-node/tasks/setup-Debian.yml index 0c45d6b..fdca850 100644 --- a/automation/ansible/roles/common-node/tasks/setup-Debian.yml +++ b/automation/ansible/roles/common-node/tasks/setup-Debian.yml @@ -16,6 +16,14 @@ when: ansible_architecture == 'x86_64' and ansible_distribution == 'Debian' apt: name: ['linux-headers-amd64'] + - name: Install armhf linux headers Debian + when: ansible_architecture == 'armv7l' and ansible_distribution == 'Debian' + apt: + name: ['linux-headers-armmp-lpae'] + - name: Install arm64 linux headers Debian + when: ansible_architecture == 'aarch64' and ansible_distribution == 'Debian' + apt: + name: ['linux-headers-arm64'] - name: Install linux headers Ubuntu when: ansible_distribution == 'Ubuntu' apt: