From 68e1cf40985a05fe82d180f767452f549a1e28b7 Mon Sep 17 00:00:00 2001
From: Marty Oehme <marty.oehme@gmail.com>
Date: Fri, 21 Feb 2025 12:43:14 +0100
Subject: [PATCH] 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.
---
 guest.yaml | 27 ++++++++++++++++++++-------
 1 file changed, 20 insertions(+), 7 deletions(-)

diff --git a/guest.yaml b/guest.yaml
index b909cdd..2586a9a 100644
--- a/guest.yaml
+++ b/guest.yaml
@@ -37,18 +37,31 @@
       community.general.xbps:
         name: booster
         state: present
-      changed_when: True
       notify: installed-booster
 
   handlers:
-    - name: List installed linux kernels
-      find:
+    - name: List kernel module dirs
+      ansible.builtin.find:
         paths: "/usr/lib/modules"
-      register: found_kernel
+        file_type: directory
+      register: found_kernels
       listen: installed-booster
 
-    - name: Find kernel
-      debug:
-        msg: "{{ found_kernel['files'] | map(attribute='path') | map('regex_replace', '^.*/(.*)$', '\\1') | list }}"
+    - name: Find kernels
+      ansible.builtin.set_fact:
+        kernel_list: "{{ found_kernels['files'] | map(attribute='path') | map('regex_replace', '^.*/(.*)$', '\\1') | list }}"
       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