package/libsepol: fix help text for BR2_PACKAGE_LIBSEPOL_POLICY_VERSION
authorThomas Petazzoni <thomas.petazzoni@bootlin.com>
Fri, 17 Apr 2020 20:27:56 +0000 (22:27 +0200)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Fri, 17 Apr 2020 20:27:56 +0000 (22:27 +0200)
The help text was wrong, as it didn't match the actual default values
we were specifying. Indeed, when we specify:

        default 31 if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_13
        default 30 if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3

It means that the policy version 30 is supported starting from Linux
4.3 included, and that 31 is supported from Linux 4.13 included.

So we shouldn't have:

  > 4.3 <= 4.13    30
  > 4.13           31

but:

  >= 4.3 < 4.13    30
  >= 4.13          31

This patch fixes that for all versions.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/libsepol/Config.in

index 21d4d7865cd438b92ac7ce3c0c6caa39e6c8c5fb..21d9e961790bb6b1c69e231e75109c4b5d4e66eb 100644 (file)
@@ -22,12 +22,12 @@ config BR2_PACKAGE_LIBSEPOL_POLICY_VERSION
 
          Here's a handy table to help you choose:
          kernel version   SElinux policy max version
-         <= 2.6.x         25
-         > 2.6 <= 3.5     26
-         > 3.5 <= 3.14    28 (27 and 28 were added at the same time)
-         > 3.14 <= 4.3    29
-         > 4.3 <= 4.13    30
-         > 4.13           31
+         < 2.6.x          25
+         >= 2.6 < 3.5     26
+         >= 3.5 < 3.14    28 (27 and 28 were added at the same time)
+         >= 3.14 < 4.3    29
+         >= 4.3 < 4.13    30
+         >= 4.13          31
 
 endif