diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2008-06-24 21:08:30 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2008-06-24 21:08:30 +0000 |
| commit | eea5876f94d4c122460659d93f5a089d1dd4a945 (patch) | |
| tree | df83ac084f3dabbc0e977b3bd983d92811bc74a6 | |
| parent | 5b18f32e0e061d21cdecc10775a56436b01e79aa (diff) | |
Notes
| -rw-r--r-- | sys/kern/kern_mib.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/kern/kern_mib.c b/sys/kern/kern_mib.c index 319651060722..802a4d18d91e 100644 --- a/sys/kern/kern_mib.c +++ b/sys/kern/kern_mib.c @@ -38,6 +38,7 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include "opt_compat.h" #include "opt_posix.h" #include <sys/param.h> @@ -304,6 +305,14 @@ SYSCTL_ULONG(_kern, KERN_HOSTID, hostid, CTLFLAG_RW, &hostid, 0, "Host ID"); SYSCTL_NODE(_kern, OID_AUTO, features, CTLFLAG_RD, 0, "Kernel Features"); +#ifdef COMPAT_FREEBSD4 +FEATURE(compat_freebsd4, "Compatible with FreeBSD 4"); +#endif + +#ifdef COMPAT_FREEBSD5 +FEATURE(compat_freebsd5, "Compatible with FreeBSD 5"); +#endif + /* * This is really cheating. These actually live in the libc, something * which I'm not quite sure is a good idea anyway, but in order for |
