From 2df45ae0d02077feb4237ef0fb613bb41d0d8b3c Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Mon, 16 Jul 2018 19:05:50 +0000 Subject: [PATCH] config(8): Bump major version after r335998 config-generated hints.c/env.c from r335998 and later are incompatible with earlier kernels due to no longer setting envmode/hintmode. A minor bump for this is insufficient, as matching major version with a later minor version is still viewed as backwards-compatible. This was an MI kernel change, soo all VERSREQ's are bumped. --- sys/conf/Makefile.amd64 | 2 +- sys/conf/Makefile.arm | 2 +- sys/conf/Makefile.arm64 | 2 +- sys/conf/Makefile.i386 | 2 +- sys/conf/Makefile.mips | 2 +- sys/conf/Makefile.powerpc | 2 +- sys/conf/Makefile.riscv | 2 +- sys/conf/Makefile.sparc64 | 2 +- usr.sbin/config/configvers.h | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/sys/conf/Makefile.amd64 b/sys/conf/Makefile.amd64 index 696ef55a3fb0..208140ce541c 100644 --- a/sys/conf/Makefile.amd64 +++ b/sys/conf/Makefile.amd64 @@ -18,7 +18,7 @@ # # Which version of config(8) is required. -%VERSREQ= 600012 +%VERSREQ= 700000 STD8X16FONT?= iso diff --git a/sys/conf/Makefile.arm b/sys/conf/Makefile.arm index ba01cdc40831..6749a6a6ed01 100644 --- a/sys/conf/Makefile.arm +++ b/sys/conf/Makefile.arm @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 600013 +%VERSREQ= 700000 STD8X16FONT?= iso diff --git a/sys/conf/Makefile.arm64 b/sys/conf/Makefile.arm64 index 324daa7cf17f..67afd46a7014 100644 --- a/sys/conf/Makefile.arm64 +++ b/sys/conf/Makefile.arm64 @@ -18,7 +18,7 @@ # # Which version of config(8) is required. -%VERSREQ= 600012 +%VERSREQ= 700000 .if !defined(S) S= ../../.. diff --git a/sys/conf/Makefile.i386 b/sys/conf/Makefile.i386 index 6b1eca42f1bb..072ca83a4cc9 100644 --- a/sys/conf/Makefile.i386 +++ b/sys/conf/Makefile.i386 @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 600012 +%VERSREQ= 700000 STD8X16FONT?= iso diff --git a/sys/conf/Makefile.mips b/sys/conf/Makefile.mips index de006c018e6d..fa25050ef364 100644 --- a/sys/conf/Makefile.mips +++ b/sys/conf/Makefile.mips @@ -15,7 +15,7 @@ # # Which version of config(8) is required. -%VERSREQ= 600012 +%VERSREQ= 700000 STD8X16FONT?= iso diff --git a/sys/conf/Makefile.powerpc b/sys/conf/Makefile.powerpc index 3d01a342d7df..7a8257adabdb 100644 --- a/sys/conf/Makefile.powerpc +++ b/sys/conf/Makefile.powerpc @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 600012 +%VERSREQ= 700000 STD8X16FONT?= iso diff --git a/sys/conf/Makefile.riscv b/sys/conf/Makefile.riscv index 1285acc886a2..68ab587d4b05 100644 --- a/sys/conf/Makefile.riscv +++ b/sys/conf/Makefile.riscv @@ -19,7 +19,7 @@ # # Which version of config(8) is required. -%VERSREQ= 600012 +%VERSREQ= 700000 .if !defined(S) S= ../../.. diff --git a/sys/conf/Makefile.sparc64 b/sys/conf/Makefile.sparc64 index 736f9cba3638..ae0d6b927949 100644 --- a/sys/conf/Makefile.sparc64 +++ b/sys/conf/Makefile.sparc64 @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 600012 +%VERSREQ= 700000 STD8X16FONT?= iso diff --git a/usr.sbin/config/configvers.h b/usr.sbin/config/configvers.h index 993fb9403cf0..e9e30b5d067d 100644 --- a/usr.sbin/config/configvers.h +++ b/usr.sbin/config/configvers.h @@ -49,5 +49,5 @@ * * $FreeBSD$ */ -#define CONFIGVERS 600015 +#define CONFIGVERS 700000 #define MAJOR_VERS(x) ((x) / 100000)