Skip to content

Commit

Permalink
DLPX-88183 Generate BTF data for ZFS kernel module during git-zfs-make
Browse files Browse the repository at this point in the history
  • Loading branch information
sdimitro committed Oct 3, 2023
1 parent c3aa781 commit 3a84b13
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,15 @@
delay: 30
register: result
until: result is succeeded

#
# XXX Explain
#
- shell: ls /lib/modules
register: kernel_versions

- ansible.builtin.file:
src: '/usr/lib/debug/boot/vmlinux-{{ item }}'
dest: '/usr/src/linux-headers-{{ item }}/vmlinux'
state: link
loop: '{{ kernel_versions.stdout_lines }}'

0 comments on commit 3a84b13

Please sign in to comment.