The branch stable/15 has been updated by zlei: URL: https://cgit.FreeBSD.org/src/commit/?id=027743a7f35500f93a7bc3e924af6ea330e82458
commit 027743a7f35500f93a7bc3e924af6ea330e82458 Author: Zhenlei Huang <[email protected]> AuthorDate: 2026-01-26 08:33:26 +0000 Commit: Zhenlei Huang <[email protected]> CommitDate: 2026-01-26 08:33:26 +0000 modules: miiproxy: Fix standalone build The fix is made in main branch [1] by imp but it appears to be done incidentally. Let's do it directly for stable/15 branch. [1] 8e985774117d kern: Remove needless kern.opts.mk --- sys/modules/miiproxy/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/modules/miiproxy/Makefile b/sys/modules/miiproxy/Makefile index 730bef4220cd..ab92ebe71b43 100644 --- a/sys/modules/miiproxy/Makefile +++ b/sys/modules/miiproxy/Makefile @@ -3,7 +3,7 @@ KMOD = miiproxy SRCS= miiproxy.c -SRCS+= bus_if.h mdio_if.h miibus_if.h opt_platform.h +SRCS+= bus_if.h device_if.h mdio_if.h miibus_if.h opt_platform.h CFLAGS+= -I${SRCTOP}/sys/dev/etherswitch .include <bsd.kmod.mk>
