The branch main has been updated by vexeduxr: URL: https://cgit.FreeBSD.org/src/commit/?id=27699e31fa50e2bee6fdd0b5a0bfb92b4d35d7b7
commit 27699e31fa50e2bee6fdd0b5a0bfb92b4d35d7b7 Author: Ahmad Khalifa <vexed...@freebsd.org> AuthorDate: 2025-09-15 20:15:02 +0000 Commit: Ahmad Khalifa <vexed...@freebsd.org> CommitDate: 2025-09-15 21:38:56 +0000 boot/universe.sh: toggle LOADER_BIOS_TEXTONLY Build without LOADER_BIOS_TEXTONLY since it is now the default. Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D52559 --- tools/boot/universe.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/boot/universe.sh b/tools/boot/universe.sh index e97858ff2bcb..80a9cc0b90ff 100755 --- a/tools/boot/universe.sh +++ b/tools/boot/universe.sh @@ -95,11 +95,11 @@ for i in \ dobuild $ta _.boot.${ta}.no_zfs.log "MK_LOADER_ZFS=no" done -# Build w/ LOADER_BIOS_TEXTONLY +# Build w/o 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" + dobuild $ta _.boot.${ta}.no_zfs.log "MK_LOADER_BIOS_TEXTONLY=no" done