From 6efe2fb4e1a9f9f06032560d57011829797c8478 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciro=20Santilli=20=E5=85=AD=E5=9B=9B=E4=BA=8B=E4=BB=B6=20?= =?UTF-8?q?=E6=B3=95=E8=BD=AE=E5=8A=9F?= Date: Sat, 20 Feb 2021 00:00:00 +0000 Subject: [PATCH] fix kernel version in common.py --- common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.py b/common.py index 3b35daa..601335c 100644 --- a/common.py +++ b/common.py @@ -43,7 +43,7 @@ common = sys.modules[__name__] # Fixed parameters that don't depend on CLI arguments. consts = {} consts['repo_short_id'] = 'lkmc' -consts['linux_kernel_version'] = '5.9.1' +consts['linux_kernel_version'] = '5.9.2' # https://stackoverflow.com/questions/20010199/how-to-determine-if-a-process-runs-inside-lxc-docker consts['in_docker'] = os.path.exists('/.dockerenv') consts['root_dir'] = os.path.dirname(os.path.abspath(__file__))