mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix my recent breakage of some modules.
This commit is contained in:
parent
5dc4151c36
commit
aa99bc993e
2 changed files with 8 additions and 1 deletions
|
|
@ -5,5 +5,9 @@ KMOD= digi
|
|||
SRCS= digi.c digi_pci.c digi_isa.c
|
||||
SRCS+= digi.h digi_pci.h digireg.h digi_mod.h
|
||||
SRCS+= bus_if.h pci_if.h device_if.h
|
||||
SRCS+= opt_compat.h
|
||||
|
||||
opt_compat.h:
|
||||
echo "#define COMPAT_43 1" > opt_compat.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
|
|
|
|||
|
|
@ -3,6 +3,9 @@
|
|||
.PATH: ${.CURDIR}/../../dev/rp
|
||||
|
||||
KMOD= rp
|
||||
SRCS= rp.c rp_pci.c device_if.h bus_if.h pci_if.h
|
||||
SRCS= rp.c rp_pci.c device_if.h bus_if.h pci_if.h opt_compat.h
|
||||
|
||||
opt_compat.h:
|
||||
echo "#define COMPAT_43 1" > opt_compat.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
|
|
|
|||
Loading…
Reference in a new issue