diff options
-rw-r--r-- | sys/modules/Makefile | 2 | ||||
-rw-r--r-- | sys/modules/bios/Makefile | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index d7c5624..b0bbcb2 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -544,6 +544,7 @@ _igb= igb _agp= agp _an= an _aout= aout +_bios= bios _bktr= bktr _bxe= bxe _cardbus= cardbus @@ -726,7 +727,6 @@ _wds= wds .if ${MK_EISA} != "no" _ahb= ahb .endif -_bios= bios _cm= cm .if ${MK_SOURCELESS_UCODE} != "no" _ctau= ctau diff --git a/sys/modules/bios/Makefile b/sys/modules/bios/Makefile index d150806..7d255a9 100644 --- a/sys/modules/bios/Makefile +++ b/sys/modules/bios/Makefile @@ -1,6 +1,10 @@ # $FreeBSD$ # -SUBDIR= smapi smbios vpd +SUBDIR= smbios vpd + +.if ${MACHINE_ARCH} == "i386" +SUBDIR+= smapi +.endif .include <bsd.subdir.mk> |