diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2025-11-28 21:25:26 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2025-12-29 16:39:28 +0000 |
| commit | 3e2093de47251de5e6e61c08d2955251137afd01 (patch) | |
| tree | ba3c70f804bf0fe836ebb6d965016c709e7560e4 | |
| parent | 6ea05372bea5bdb19ca329c27c4c6510cbeed7c8 (diff) | |
linux: Add required symbol to EXPORT_SYMS list
PR: 291270
| -rw-r--r-- | sys/modules/linux/Makefile | 1 | ||||
| -rw-r--r-- | sys/modules/linux_common/Makefile | 1 |
2 files changed, 2 insertions, 0 deletions
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 291fc6d25f8c..1fa740b8b823 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 |
