mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-10 08:22:27 +01:00
Hijack old, broken, obsolete, unsupported pcic module for the NEWCARD
code. You can now build the newcard's pcic driver as a module for all the joy that will bring you, which currently isn't so much joy as it is pain. The old pccard module will never be made to work again, so I think this is OK. Note, it still remains disabled in sys/modules/Makefile on purpose.
This commit is contained in:
parent
e79f2d5bfc
commit
9e2ba5d186
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=53337
@ -1,8 +1,20 @@
|
||||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../pccard
|
||||
S = ${.CURDIR}/../..
|
||||
.PATH: ${.CURDIR}/../../dev/pcic
|
||||
KMOD= pcic
|
||||
SRCS= pcic.c
|
||||
SRCS= i82365.c i82365_isa.c i82365_isasubr.c \
|
||||
device_if.h bus_if.h isa_if.h
|
||||
CLEANFILES+= device_if.h bus_if.h isa_if.h
|
||||
NOMAN=
|
||||
|
||||
device_if.h: $S/kern/makedevops.pl $S/kern/device_if.m
|
||||
perl $S/kern/makedevops.pl -h $S/kern/device_if.m
|
||||
|
||||
bus_if.h: $S/kern/makedevops.pl $S/kern/bus_if.m
|
||||
perl $S/kern/makedevops.pl -h $S/kern/bus_if.m
|
||||
|
||||
isa_if.h: $S/kern/makedevops.pl $S/isa/isa_if.m
|
||||
perl $S/kern/makedevops.pl -h $S/isa/isa_if.m
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
|
Loading…
Reference in New Issue
Block a user