The branch stable/15 has been updated by emaste:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=4c318cb3320d9aedd17a2e3c07ff5c69225a29eb

commit 4c318cb3320d9aedd17a2e3c07ff5c69225a29eb
Author:     Ed Maste <[email protected]>
AuthorDate: 2025-11-28 21:25:26 +0000
Commit:     Ed Maste <[email protected]>
CommitDate: 2026-01-05 16:15:53 +0000

    linux: Add required symbol to EXPORT_SYMS list
    
    PR:             291270
    (cherry picked from commit 3e2093de47251de5e6e61c08d2955251137afd01)
---
 sys/modules/linux/Makefile        | 1 +
 sys/modules/linux_common/Makefile | 1 +
 2 files changed, 2 insertions(+)

diff --git a/sys/modules/linux/Makefile b/sys/modules/linux/Makefile
index eb4e17ec706b..8904e8005416 100644
--- a/sys/modules/linux/Makefile
+++ b/sys/modules/linux/Makefile
@@ -76,6 +76,7 @@ SRCS+=        imgact_linux.c \
 
 .if ${MACHINE_CPUARCH} == "i386"
 EXPORT_SYMS=
+EXPORT_SYMS+=  linux_device_register_handler
 EXPORT_SYMS+=  linux_get_osname
 EXPORT_SYMS+=  linux_get_osrelease
 EXPORT_SYMS+=  linux_ioctl_register_handler
diff --git a/sys/modules/linux_common/Makefile 
b/sys/modules/linux_common/Makefile
index f9f4c791e9d1..0ef99386dfa9 100644
--- a/sys/modules/linux_common/Makefile
+++ b/sys/modules/linux_common/Makefile
@@ -13,6 +13,7 @@ SRCS+=        linux_x86.c linux_vdso_selector_x86.c
 .endif
 
 EXPORT_SYMS=
+EXPORT_SYMS+=  linux_device_register_handler
 EXPORT_SYMS+=  linux_get_osname
 EXPORT_SYMS+=  linux_get_osrelease
 EXPORT_SYMS+=  linux_use_real_ifname

Reply via email to