mirror of
https://github.com/opnsense/src.git
synced 2026-04-25 16:18:54 -04:00
PC-98 boxes use aic_cbus.c instead of aic_isa.c.
This commit is contained in:
parent
1e7e1ff678
commit
f3474f630e
1 changed files with 8 additions and 1 deletions
|
|
@ -2,8 +2,15 @@
|
|||
|
||||
.PATH: ${.CURDIR}/../../dev/aic
|
||||
KMOD = aic
|
||||
SRCS = aic.c aic_pccard.c aic_isa.c
|
||||
SRCS = aic.c aic_pccard.c
|
||||
SRCS += opt_bdg.h device_if.h bus_if.h pci_if.h isa_if.h
|
||||
SRCS += opt_cam.h opt_scsi.h
|
||||
|
||||
.if ${MACHINE} == "pc98"
|
||||
SRCS += aic_cbus.c
|
||||
CFLAGS += -DPC98
|
||||
.else
|
||||
SRCS += aic_isa.c
|
||||
.endif
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
|
|
|
|||
Loading…
Reference in a new issue