From fce23aa2dc66dd8660cc6116e815080f7c19e8f1 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 16 Jul 2026 14:07:34 +0200 Subject: [PATCH] refactor: install linux kernel in the root filesystem --- build-rootfs.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-rootfs.sh b/build-rootfs.sh index 88c1684..22b5bf6 100644 --- a/build-rootfs.sh +++ b/build-rootfs.sh @@ -217,6 +217,8 @@ chroot "$ROOTFS" rc-update add devfs sysinit || true chroot "$ROOTFS" rc-update add procfs boot || true chroot "$ROOTFS" rc-update add sysfs boot || true +echo "[+] Installing Linux" +chroot "$ROOTFS" apt install linux-image-amd64 echo "[+] Cleaning"