From 078a31136c8ce89c23c0fae0b24f98c0bd4d45e6 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sat, 17 Feb 2024 23:28:33 -0700 Subject: [PATCH] boot/universe.sh: Add tests to keep MK_LOADER_BIOS_TEXTONLY working Sponsored by: Netflix --- tools/boot/universe.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tools/boot/universe.sh b/tools/boot/universe.sh index b46c36f173e..3e033ce26ae 100755 --- a/tools/boot/universe.sh +++ b/tools/boot/universe.sh @@ -94,3 +94,12 @@ for i in \ ta=${i##*/} dobuild $ta _.boot.${ta}.no_zfs.log "MK_LOADER_ZFS=no" done + +# Build w/ LOADER_BIOS_TEXTONLY +for i in \ + amd64/amd64 \ + i386/i386 \ + ; do + ta=${i##*/} + dobuild $ta _.boot.${ta}.no_zfs.log "MK_LOADER_BIOS_TEXTONLY=yes" +done