Build booster initramfs if it does not exist
Working from a chroot we need to manually look for the existing kernels and build an initramfs from them. We can not just use the auto detection functionality since it will detect the _HOST_ system's running kernel. Instead we get the kernel module dir(s) and manually build a booster initramfs for each one found.
This commit is contained in:
parent
8a77b201bd
commit
68e1cf4098
1 changed files with 20 additions and 7 deletions
27
guest.yaml
27
guest.yaml
|
@ -37,18 +37,31 @@
|
||||||
community.general.xbps:
|
community.general.xbps:
|
||||||
name: booster
|
name: booster
|
||||||
state: present
|
state: present
|
||||||
changed_when: True
|
|
||||||
notify: installed-booster
|
notify: installed-booster
|
||||||
|
|
||||||
handlers:
|
handlers:
|
||||||
- name: List installed linux kernels
|
- name: List kernel module dirs
|
||||||
find:
|
ansible.builtin.find:
|
||||||
paths: "/usr/lib/modules"
|
paths: "/usr/lib/modules"
|
||||||
register: found_kernel
|
file_type: directory
|
||||||
|
register: found_kernels
|
||||||
listen: installed-booster
|
listen: installed-booster
|
||||||
|
|
||||||
- name: Find kernel
|
- name: Find kernels
|
||||||
debug:
|
ansible.builtin.set_fact:
|
||||||
msg: "{{ found_kernel['files'] | map(attribute='path') | map('regex_replace', '^.*/(.*)$', '\\1') | list }}"
|
kernel_list: "{{ found_kernels['files'] | map(attribute='path') | map('regex_replace', '^.*/(.*)$', '\\1') | list }}"
|
||||||
listen: installed-booster
|
listen: installed-booster
|
||||||
|
|
||||||
|
- name: Create booster initramfs
|
||||||
|
vars:
|
||||||
|
fname: /boot/booster-void
|
||||||
|
ansible.builtin.command:
|
||||||
|
argv:
|
||||||
|
- booster
|
||||||
|
- --verbose
|
||||||
|
- build
|
||||||
|
- --kernel-version={{ item }}
|
||||||
|
- "{{ fname }}-{{ item }}.img"
|
||||||
|
creates: "{{ fname }}-{{ item }}.img"
|
||||||
|
loop: "{{ kernel_list }}"
|
||||||
|
listen: installed-booster
|
||||||
|
|
Loading…
Reference in a new issue