diff options
author | Christian Breunig <christian@breunig.cc> | 2024-06-20 19:20:54 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-06-20 19:21:11 +0200 |
commit | 9495f904fcc157521ca001ee21cf31be28a6b3a0 (patch) | |
tree | e2904f2040055a967d0e6c253038c93c4cbe8231 | |
parent | d818788932e3c57d020cca9236df7275da452fce (diff) | |
download | vyos-1x-9495f904fcc157521ca001ee21cf31be28a6b3a0.tar.gz vyos-1x-9495f904fcc157521ca001ee21cf31be28a6b3a0.zip |
T3202: add single variable for Kernel dynamic debug settings
-rwxr-xr-x | src/conf_mode/system_option.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/conf_mode/system_option.py b/src/conf_mode/system_option.py index 56d608569..571ce55ec 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' @@ -160,6 +161,7 @@ def apply(options): time_format = time_format_to_locale.get(options['time_format']) cmd(f'localectl set-locale LC_TIME={time_format}') + # Reload UDEV, required for USB auto suspend cmd('udevadm control --reload-rules') # Enable/disable dynamic debugging for kernel modules @@ -168,9 +170,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: |