> Congratulations. You are no longer running OpenBSD. Your system > has a significant incompatibility, and now we cannot accept any > bug reports from you anymore. Any bug you hit might be due to that > change you made. You own the change.
How about config(8)? "Use of an alternative kernel configuration is not recommended." Rather mildly written, if it is to be understood like that. -Artturi (i'm not good w/man-pages, so..:) diff --git a/usr.sbin/config/main.c b/usr.sbin/config/main.c index 33d82e1..71c9fc9 100644 --- a/usr.sbin/config/main.c +++ b/usr.sbin/config/main.c @@ -110,6 +110,9 @@ main(int argc, char *argv[]) if (pledge("stdio rpath wpath cpath flock", NULL) == -1) err(1, "pledge"); + (void)fprintf(stderr, "Any bug you hit might be due to that change" + " you made.\n\tYou own the change.\n"); + pflag = eflag = uflag = fflag = 0; while ((ch = getopt(argc, argv, "egpfb:s:o:u")) != -1) { switch (ch) {