diff options
author | Emmanuel Vadot <manu@FreeBSD.org> | 2021-01-14 11:47:25 +0000 |
---|---|---|
committer | Emmanuel Vadot <manu@FreeBSD.org> | 2021-01-17 16:44:16 +0000 |
commit | d002814d6b8edc9cf85f1653ebb568e59f72f9ad (patch) | |
tree | f577ef9fa51ccbcdd1d6eaf37465971156e74d76 | |
parent | 0f2434ea000e02e6b1f7f40f489c346c64445242 (diff) | |
download | src-d002814d6b8edc9cf85f1653ebb568e59f72f9ad.tar.gz src-d002814d6b8edc9cf85f1653ebb568e59f72f9ad.zip |
loader: Use TERM_EMU for arm and arm64
Even if it didn't behave well previously this is fixed.
Tested on: OrangePi One (armv7 u-boot) (serial only and serial + HDMI)
Tested on: Pine64-LTS (aarch64 u-boot) (serial only and serial + HDMI)
Tested on: Honeycomb (aarch64 EDK2) (serial only)
Reviewed by: imp
Differential Revision: https://reviews.freebsd.org/D28153
-rw-r--r-- | stand/efi/libefi/Makefile | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/stand/efi/libefi/Makefile b/stand/efi/libefi/Makefile index 6d342aaa8007..e838a5a10ac4 100644 --- a/stand/efi/libefi/Makefile +++ b/stand/efi/libefi/Makefile @@ -65,9 +65,6 @@ CFLAGS+= -I${LDRSRC} # Handle FreeBSD specific %b and %D printf format specifiers CFLAGS+= ${FORMAT_EXTENSIONS} -# Do not use TERM_EMU on arm and arm64 as it doesn't behave well with serial console -.if ${MACHINE_CPUARCH} != "arm" && ${MACHINE_CPUARCH} != "aarch64" CFLAGS+= -DTERM_EMU -.endif .include <bsd.lib.mk> |