From 98adfe18a6166dc75411d590eb94854c5037fae6 Mon Sep 17 00:00:00 2001 From: Vasilito Date: Tue, 14 Apr 2026 12:13:07 +0100 Subject: [PATCH] Surface VM network validation after Red Bear builds Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- local/scripts/build-redbear.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/local/scripts/build-redbear.sh b/local/scripts/build-redbear.sh index bbe579d4..5d6a3aa7 100755 --- a/local/scripts/build-redbear.sh +++ b/local/scripts/build-redbear.sh @@ -111,6 +111,12 @@ echo "Image: build/$ARCH/$CONFIG/harddrive.img" echo "" echo "To run in QEMU:" echo " make qemu QEMUFLAGS=\"-m 4G\"" +if [ "$CONFIG" = "redbear-minimal" ] || [ "$CONFIG" = "redbear-desktop" ]; then + echo "" + echo "To validate the Phase 2 VM network baseline:" + echo " ./local/scripts/validate-vm-network-baseline.sh" + echo " ./local/scripts/test-vm-network-qemu.sh $CONFIG" +fi echo "" echo "To build live ISO:" echo " make live CONFIG_NAME=$CONFIG"