Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Nov 2023 22:06:11 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: e256f71389fb - main - kernel: add missed FEATUREs compat_freebsd 8-14
Message-ID:  <202311162206.3AGM6BWh071571@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by kib:

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

commit e256f71389fbf0ef6cf8f547342d5f789e69f918
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2023-11-16 20:47:18 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2023-11-16 22:04:55 +0000

    kernel: add missed FEATUREs compat_freebsd 8-14
    
    Sponsored by:   The FreeBSD Foundation
    MFC after:      1 week
---
 sys/kern/kern_mib.c | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/sys/kern/kern_mib.c b/sys/kern/kern_mib.c
index 2298f942da6b..b60c3c689449 100644
--- a/sys/kern/kern_mib.c
+++ b/sys/kern/kern_mib.c
@@ -630,6 +630,34 @@ FEATURE(compat_freebsd6, "Compatible with FreeBSD 6");
 FEATURE(compat_freebsd7, "Compatible with FreeBSD 7");
 #endif
 
+#ifdef COMPAT_FREEBSD8
+FEATURE(compat_freebsd8, "Compatible with FreeBSD 8");
+#endif
+
+#ifdef COMPAT_FREEBSD9
+FEATURE(compat_freebsd9, "Compatible with FreeBSD 9");
+#endif
+
+#ifdef COMPAT_FREEBSD10
+FEATURE(compat_freebsd10, "Compatible with FreeBSD 10");
+#endif
+
+#ifdef COMPAT_FREEBSD11
+FEATURE(compat_freebsd11, "Compatible with FreeBSD 11");
+#endif
+
+#ifdef COMPAT_FREEBSD12
+FEATURE(compat_freebsd12, "Compatible with FreeBSD 12");
+#endif
+
+#ifdef COMPAT_FREEBSD13
+FEATURE(compat_freebsd13, "Compatible with FreeBSD 13");
+#endif
+
+#ifdef COMPAT_FREEBSD14
+FEATURE(compat_freebsd14, "Compatible with FreeBSD 14");
+#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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202311162206.3AGM6BWh071571>