From 2b1107c856b9f3303ec51d837644fb4242b95223 Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jackpot51@gmail.com> Date: Fri, 22 Jul 2022 10:30:44 -0600 Subject: [PATCH] Also copy initfs --- src/bin/installer_tui.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/installer_tui.rs b/src/bin/installer_tui.rs index 1692ec5..8e3d0b8 100644 --- a/src/bin/installer_tui.rs +++ b/src/bin/installer_tui.rs @@ -298,10 +298,11 @@ fn main() { } }; - // Copy bootloader, filesystem.toml, and kernel + // Copy bootloader, filesystem.toml, initfs, and kernel let mut files = vec![ "bootloader".to_string(), "filesystem.toml".to_string(), + "initfs".to_string(), "kernel".to_string() ]; -- GitLab