From f4ca42378b26bfc1b98f5b87de26b9948039d319 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sat, 26 Apr 2025 06:43:33 +0200 Subject: [PATCH] Fix. --- bookworm/preseed.cfg | 6 ++++++ bookworm/scripts/lib/core_setup | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/bookworm/preseed.cfg b/bookworm/preseed.cfg index f2a9281..2905302 100644 --- a/bookworm/preseed.cfg +++ b/bookworm/preseed.cfg @@ -1,5 +1,8 @@ #_preseed_V1 +# "Keymap to use" +d-i keyboard-configuration/xkb-keymap select us + # "Select a language" d-i debian-installer/language string en d-i debian-installer/country string US @@ -121,3 +124,6 @@ d-i grub-installer/enable_os_prober_otheros_no false # "Finish the installation" clock-setup clock-setup/utc boolean true d-i finish-install/reboot_in_progress note + +# config script +d-i preseed/late_command string echo -e "#!/usr/bin/sh\nset -e\ngit clone https://plomlompom.com/repos/clone/config\nconfig/testing/scripts/setup_desktop.sh t490s" > /target/root/run.sh && chmod a+x /target/root/run.sh diff --git a/bookworm/scripts/lib/core_setup b/bookworm/scripts/lib/core_setup index cdd6db9..9440541 100644 --- a/bookworm/scripts/lib/core_setup +++ b/bookworm/scripts/lib/core_setup @@ -10,7 +10,7 @@ core_setup() { _EXTERNAL_IP="$3" _INSTALL_TAGS="$4" - echo '· Installing and/or keeping only what's required by us or Debian.' + echo "· Installing and/or keeping only what's required by us or Debian." # mark non-requireds auto _PATH_LIST_PREFIX=/tmp/list_ -- 2.30.2