summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-06-20 19:20:54 +0200
committerChristian Breunig <christian@breunig.cc>2024-06-24 08:14:40 +0200
commit067afc29ae43a59df15a33025ff4d112d02a4607 (patch)
tree320cedd49305f4537a077859860ccc4678c65984 /src
parente1c686f33e945ddeb2c45abec636fee398269838 (diff)
downloadvyos-1x-067afc29ae43a59df15a33025ff4d112d02a4607.tar.gz
vyos-1x-067afc29ae43a59df15a33025ff4d112d02a4607.zip
T3202: add single variable for Kernel dynamic debug settings
(cherry picked from commit 9495f904fcc157521ca001ee21cf31be28a6b3a0)
Diffstat (limited to 'src')
-rwxr-xr-xsrc/conf_mode/system_option.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/conf_mode/system_option.py b/src/conf_mode/system_option.py
index 56d608569..ad4c0deae 100755
--- a/src/conf_mode/system_option.py
+++ b/src/conf_mode/system_option.py
@@ -39,6 +39,7 @@ curlrc_config = r'/etc/curlrc'
ssh_config = r'/etc/ssh/ssh_config.d/91-vyos-ssh-client-options.conf'
systemd_action_file = '/lib/systemd/system/ctrl-alt-del.target'
usb_autosuspend = r'/etc/udev/rules.d/40-usb-autosuspend.rules'
+kernel_dynamic_debug = r'/sys/kernel/debug/dynamic_debug/control'
time_format_to_locale = {
'12-hour': 'en_US.UTF-8',
'24-hour': 'en_GB.UTF-8'
@@ -168,9 +169,9 @@ def apply(options):
for module in modules:
if module in modules_enabled:
check_kmod(module)
- write_file('/sys/kernel/debug/dynamic_debug/control', f'module {module} +p')
+ write_file(kernel_dynamic_debug, f'module {module} +p')
else:
- write_file('/sys/kernel/debug/dynamic_debug/control', f'module {module} -p')
+ write_file(kernel_dynamic_debug, f'module {module} -p')
if __name__ == '__main__':
try: