mirror of
https://github.com/opnsense/src.git
synced 2026-02-26 19:30:29 -05:00
efi: mark as broken on i386
We're never going to support EFI booting on i386 (32-bit). Start to decommission it, since it's never worked. Sponsored by: Netflix Reviewed by: tsoome, emaste Differential Revision: https://reviews.freebsd.org/D40011
This commit is contained in:
parent
8c3d6917c1
commit
ad9d10a859
1 changed files with 2 additions and 2 deletions
|
|
@ -296,8 +296,8 @@ __DEFAULT_YES_OPTIONS+=LIB32
|
|||
.else
|
||||
BROKEN_OPTIONS+=LIB32
|
||||
.endif
|
||||
# EFI doesn't exist on powerpc (well, officially)
|
||||
.if ${__T:Mpowerpc*}
|
||||
# EFI doesn't exist on powerpc (well, officially) and doesn't work on i386
|
||||
.if ${__T:Mpowerpc*} || ${__T} == "i386"
|
||||
BROKEN_OPTIONS+=EFI
|
||||
.endif
|
||||
# OFW is only for powerpc, exclude others
|
||||
|
|
|
|||
Loading…
Reference in a new issue