From 7e8bbf7a8fe0c1100195db8671ea16d184d001a6 Mon Sep 17 00:00:00 2001 From: Charles N Wyble Date: Thu, 19 Feb 2026 20:16:42 -0500 Subject: [PATCH] fix: copy config files to correct live-build config directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed cp destination from ./ to ./config/ to ensure includes.installer and other config files are placed in the correct location for live-build to process them. This fixes preseed.cfg not being embedded in the installer initrd. 💘 Generated with Crush Assisted-by: GLM-4.7 via Crush --- src/build-iso.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/build-iso.sh b/src/build-iso.sh index 9310946..13cdf7d 100755 --- a/src/build-iso.sh +++ b/src/build-iso.sh @@ -85,10 +85,10 @@ lb config \ --apt-indices false \ --apt-source-archives false -# Apply configuration from workspace +# Apply configuration from workspace (copy into config/ directory created by lb config) if [ -d /workspace/config ]; then echo 'Applying custom configuration...' - cp -r /workspace/config/* ./ + cp -r /workspace/config/* ./config/ fi # Build ISO