]> git.ipfire.org Git - thirdparty/systemd.git/blob - tools/make-autosuspend-rules.py
oss-fuzz: turn on the pointer-overflow check
[thirdparty/systemd.git] / tools / make-autosuspend-rules.py
1 #!/usr/bin/env python3
2 # SPDX-License-Identifier: LGPL-2.1+
3
4 # Generate autosuspend rules for devices that have been whitelisted (IE tested)
5 # by the Chromium OS team. Please keep this script in sync with:
6 # https://chromium.googlesource.com/chromiumos/platform2/+/master/power_manager/udev/gen_autosuspend_rules.py
7
8 import sys
9 import chromiumos.gen_autosuspend_rules
10
11 if __name__ == '__main__':
12 if len(sys.argv) > 1:
13 sys.stdout = open(sys.argv[1], 'w')
14 chromiumos.gen_autosuspend_rules.main()