mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't build syscons, uart or vpo on PPC.
This commit is contained in:
parent
6109ca7e1a
commit
042bbe552f
1 changed files with 8 additions and 3 deletions
|
|
@ -214,7 +214,7 @@ SUBDIR= ${_3dfx} \
|
|||
twe \
|
||||
tx \
|
||||
txp \
|
||||
uart \
|
||||
${_uart} \
|
||||
ubsa \
|
||||
ubsec \
|
||||
ubser \
|
||||
|
|
@ -246,7 +246,7 @@ SUBDIR= ${_3dfx} \
|
|||
${_vesa} \
|
||||
vge \
|
||||
vkbd \
|
||||
vpo \
|
||||
${_vpo} \
|
||||
vr \
|
||||
vx \
|
||||
wb \
|
||||
|
|
@ -259,10 +259,15 @@ SUBDIR= ${_3dfx} \
|
|||
${_xe} \
|
||||
xl
|
||||
|
||||
.if ${MACHINE_ARCH} != "sparc64"
|
||||
.if ${MACHINE_ARCH} != "sparc64" && ${MACHINE_ARCH} != "powerpc"
|
||||
_syscons= syscons
|
||||
.endif
|
||||
|
||||
.if ${MACHINE_ARCH} != "powerpc"
|
||||
_uart= uart
|
||||
_vpo= vpo
|
||||
.endif
|
||||
|
||||
.if defined(ALL_MODULES)
|
||||
_ufs= ufs
|
||||
.endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue