From 49727f17def89839d2a3c08b03efe03a6145d790 Mon Sep 17 00:00:00 2001 From: Cezar Lungu Date: Sat, 1 Mar 2025 17:52:06 +0000 Subject: [PATCH] Update 05-remove-os-information.patch Use the LTS Kernel version - 6.1.0 --- patches/05-remove-os-information.patch | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/patches/05-remove-os-information.patch b/patches/05-remove-os-information.patch index 1d994b1..2884c40 100644 --- a/patches/05-remove-os-information.patch +++ b/patches/05-remove-os-information.patch @@ -34,9 +34,9 @@ index 10a80fa..9219f4f 100644 + __module_os.release = () => { + const matcher = /(\d+\.\d+\.\d+)\.*/ + var result = release.match(matcher); -+ if (result[1]) -+ return result[1]; -+ return "0.0.0"; ++ //if (result[1]) ++ // return result[1]; ++ return "6.1.0"; + } + module.exports = __module_os; }, @@ -56,8 +56,8 @@ index 9716411..ec603d0 100644 + __module_os.release = () => { + const matcher = /(\d+\.\d+\.\d+)\.*/; + var result = release.match(matcher); -+ if (result[1]) return result[1]; -+ return "0.0.0"; ++ //if (result[1]) return result[1]; ++ return "6.1.0"; + }; + module.exports = __module_os; }, @@ -77,8 +77,8 @@ index 7241bcb..fb02453 100644 + __module_os.release = () => { + const matcher = /(\d+\.\d+\.\d+)\.*/; + var result = release.match(matcher); -+ if (result[1]) return result[1]; -+ return "0.0.0"; ++ //if (result[1]) return result[1]; ++ return "6.1.0"; + }; + module.exports = __module_os; }, @@ -98,9 +98,9 @@ index 65520fb..7919288 100644 + __module_os.release = () => { + const matcher = /(\d+\.\d+\.\d+)\.*/ + var result = release.match(matcher); -+ if (result[1]) -+ return result[1]; -+ return "0.0.0"; ++ //if (result[1]) ++ // return result[1]; ++ return "6.1.0"; + } + module.exports = __module_os; },