Commit 0b1c6d98 by Alexander Popov

Improve normalize_cmdline_options()

parent 34381808
...@@ -604,9 +604,9 @@ def normalize_cmdline_options(option, value): ...@@ -604,9 +604,9 @@ def normalize_cmdline_options(option, value):
return value return value
# Implement a limited part of the kstrtobool() logic # Implement a limited part of the kstrtobool() logic
if value in ('1', 'on', 'On', 'ON', 'y', 'Y', 'yes', 'Yes', 'YES'): if value.lower() in ('1', 'on', 'y', 'yes', 't', 'true'):
return '1' return '1'
if value in ('0', 'off', 'Off', 'OFF', 'n', 'N', 'no', 'No', 'NO'): if value.lower() in ('0', 'off', 'n', 'no', 'f', 'false'):
return '0' return '0'
# Preserve unique values # Preserve unique values
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment