Module Name: src Committed By: pgoyette Date: Mon Sep 9 15:52:31 UTC 2024
Modified Files: src/sys/modules/procfs: Makefile Log Message: Include the SYSV_* entries for modular procfs To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/modules/procfs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/modules/procfs/Makefile diff -u src/sys/modules/procfs/Makefile:1.7 src/sys/modules/procfs/Makefile:1.8 --- src/sys/modules/procfs/Makefile:1.7 Thu Sep 26 17:34:56 2019 +++ src/sys/modules/procfs/Makefile Mon Sep 9 15:52:31 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2019/09/26 17:34:56 christos Exp $ +# $NetBSD: Makefile,v 1.8 2024/09/09 15:52:31 pgoyette Exp $ .include "../Makefile.inc" @@ -9,6 +9,9 @@ .PATH: ${S}/arch/x86/x86 .endif +# enable the SYSV linux nodes +COPTS+= -D SYSVSHM -D SYSVSEM -D SYSVMSG + KMOD= procfs SRCS= procfs_note.c procfs_status.c procfs_subr.c \ procfs_vfsops.c procfs_vnops.c procfs_cmdline.c procfs_limit.c \