diff options
| author | Ahmad Khalifa <vexeduxr@FreeBSD.org> | 2025-09-15 20:15:02 +0000 |
|---|---|---|
| committer | Ahmad Khalifa <vexeduxr@FreeBSD.org> | 2025-09-15 21:38:56 +0000 |
| commit | 27699e31fa50e2bee6fdd0b5a0bfb92b4d35d7b7 (patch) | |
| tree | 011d4e42968fd54b88966329c4148ed3867e3e9b | |
| parent | 6d83ae143b1f598b5f8868508f6e8a7d3440f568 (diff) | |
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
| -rwxr-xr-x | tools/boot/universe.sh | 4 |
1 files 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 |
