mirror of
https://github.com/opnsense/src.git
synced 2026-02-26 03:13:02 -05:00
The already-listed APMC0D0F ID belongs to the Ampere eMAG aarch64 platform, but ACPI support was not even built on aarch64. Submitted by: Greg V <greg_unrelenting.technology> Differential Revision: https://reviews.freebsd.org/D21059
14 lines
363 B
Makefile
14 lines
363 B
Makefile
#$FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/ichiic
|
|
KMOD = ig4
|
|
SRCS = acpi_if.h device_if.h bus_if.h iicbus_if.h pci_if.h \
|
|
smbus_if.h ${ig4_acpi} ig4_iic.c ig4_pci.c ig4_reg.h \
|
|
ig4_var.h opt_acpi.h
|
|
|
|
.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "amd64" || \
|
|
${MACHINE_CPUARCH} == "i386"
|
|
ig4_acpi= ig4_acpi.c
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|