diff options
author | Warner Losh <imp@FreeBSD.org> | 2001-05-16 07:35:54 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2001-05-16 07:35:54 +0000 |
commit | 367995aaa28460b72b29162e13a922d82f514fdb (patch) | |
tree | 667a8bdf5911123d3f88638b012ca56028b204c3 | |
parent | 5a695e48787abf2a03dae1ced1a7346c6f4d2930 (diff) | |
download | src-367995aaa28460b72b29162e13a922d82f514fdb.tar.gz src-367995aaa28460b72b29162e13a922d82f514fdb.zip |
Catch up with some recent changes:
1) pcic_isa.c
2) For pc98, add mecia driver and -DPC98 to command line.
3) pcic_p.c -> pcic_pci.c
Notes
Notes:
svn path=/head/; revision=76670
-rw-r--r-- | sys/modules/oldcard/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/modules/oldcard/Makefile b/sys/modules/oldcard/Makefile index 619979e55eeb..51e6bef0c493 100644 --- a/sys/modules/oldcard/Makefile +++ b/sys/modules/oldcard/Makefile @@ -3,9 +3,14 @@ .PATH: ${.CURDIR}/../../pccard ${.CURDIR}/../../pci KMOD= oldcard -SRCS= pccard.c pcic.c pccard_beep.c pccard_nbk.c pcic_p.c \ +SRCS= pccard.c pcic.c pccard_beep.c pccard_nbk.c pcic_pci.c pcic_isa.c \ opt_pcic.h device_if.h bus_if.h isa_if.h pci_if.h \ power_if.h card_if.h power_if.c card_if.c NOMAN= +.if ${MACHINE} == "pc98" +CFLAGS += -DPC98 +SRCS += mecia.c +.endif + .include <bsd.kmod.mk> |