From 236eca68dcef2b810d1790bfc80b703167ea7b63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Go=C5=82a=C5=9B?= Date: Fri, 11 Jul 2025 09:29:44 +0200 Subject: [PATCH 1/2] fedora/ks.cfg: Change both static and transient hostname MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit using `--static` only changed the static hostname which is not displayed in the command prompt. Dropping this option changes both `static` and `transient` and should fix the issue with the prompt being wrong. Signed-off-by: Filip Gołaś --- fedora/ks.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/fedora/ks.cfg b/fedora/ks.cfg index 1df599a..002a684 100644 --- a/fedora/ks.cfg +++ b/fedora/ks.cfg @@ -36,6 +36,7 @@ systemctl enable sshd # Change the hostname hostnamectl set-hostname 3mdeb +echo 3mdeb > /etc/hostname # FULL GRUB CONFIG FOR SERIAL SUPPORT sed -i 's/^GRUB_TIMEOUT=.*/GRUB_TIMEOUT=5/' /etc/default/grub From d08aa65193c26d3de231e429318c56ceb3e15c67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Go=C5=82a=C5=9B?= Date: Wed, 20 Aug 2025 07:42:23 +0200 Subject: [PATCH 2/2] ks.cfg: Increase fedora disk size to ~30GiB 20 GiB was on the edge of being too small for all optional test dependencies, especially docker images for DCU or coreboot sdk --- fedora/ks.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fedora/ks.cfg b/fedora/ks.cfg index 002a684..384e87e 100644 --- a/fedora/ks.cfg +++ b/fedora/ks.cfg @@ -18,7 +18,7 @@ user --name=linux --groups=wheel --password=$6$FY/YSTovPfAOkdg/$o0dGMNyW9Squf/VW reqpart # root partition with 20GB -part btrfs.236 --fstype="btrfs" --size=20480 --maxsize=20480 +part btrfs.236 --fstype="btrfs" --size=30960 --maxsize=30960 btrfs none --label=fedora btrfs.236 btrfs / --subvol --name=root LABEL=fedora @@ -62,4 +62,4 @@ gsettings set org.gnome.SessionManager logout-prompt false || true %end -reboot \ No newline at end of file +reboot