diff options
| author | Adrian Chadd <adrian@FreeBSD.org> | 2025-04-24 02:40:06 +0000 |
|---|---|---|
| committer | Adrian Chadd <adrian@FreeBSD.org> | 2025-04-27 18:03:26 +0000 |
| commit | 07b56e2653a29e09801113f0f91067f8dce83ccb (patch) | |
| tree | 6d75ff06b17a56360c67dcdb2c307c53f6e82c59 /sys | |
| parent | 331e1b33b39b87bce0805d01719c3e71c130c631 (diff) | |
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/modules/Makefile | 1 | ||||
| -rw-r--r-- | sys/modules/miiproxy/Makefile | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 1608e47891e1..46fd730463d6 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -252,6 +252,7 @@ SUBDIR= \ mem \ mfi \ mii \ + miiproxy \ mlx \ mlxfw \ ${_mlx4} \ diff --git a/sys/modules/miiproxy/Makefile b/sys/modules/miiproxy/Makefile new file mode 100644 index 000000000000..5173358989da --- /dev/null +++ b/sys/modules/miiproxy/Makefile @@ -0,0 +1,9 @@ +.PATH: ${SRCTOP}/sys/dev/etherswitch + +KMOD = miiproxy + +SRCS= miiproxy.c +SRCS+= mdio_if.h miibus_if.h +CFLAGS+= -I${SRCTOP}/sys/dev/etherswitch + +.include <bsd.kmod.mk> |
