From 962bc741aab7fcee801137d78a4d737ce6a1f070 Mon Sep 17 00:00:00 2001 From: vxtls <187420201+vxtls@users.noreply.github.com> Date: Tue, 17 Mar 2026 21:23:32 -0400 Subject: [PATCH] fix(network): run IP bringup for all non-chroot boots --- steps/helpers.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/steps/helpers.sh b/steps/helpers.sh index 5df59621..eeb037b0 100755 --- a/steps/helpers.sh +++ b/steps/helpers.sh @@ -282,9 +282,9 @@ ensure_network_ready() { return fi - # Resumed QEMU boots (e.g. from stage0-work.img) can lose configured links. + # Non-chroot boots can lose configured links (e.g. resumed QEMU stage images). # Bring the interface up deterministically before any source download. - if [ "${QEMU}" = "True" ] && [ "${CHROOT}" != "True" ]; then + if [ "${CHROOT}" != "True" ]; then dhcpcd --waitip=4 fi