1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-28 11:55:44 +03:00
systemd/tools/make-autosuspend-rules.py

15 lines
510 B
Python
Raw Normal View History

#!/usr/bin/env python3
# SPDX-License-Identifier: LGPL-2.1+
# Generate autosuspend rules for devices that have been whitelisted (IE tested)
2019-10-06 18:59:53 +03:00
# by the Chromium OS team. Please keep this script in sync with:
# https://chromium.googlesource.com/chromiumos/platform2/+/master/power_manager/udev/gen_autosuspend_rules.py
import sys
2019-10-06 18:59:53 +03:00
import chromiumos.gen_autosuspend_rules
if __name__ == '__main__':
if len(sys.argv) > 1:
sys.stdout = open(sys.argv[1], 'w')
2019-10-06 18:59:53 +03:00
chromiumos.gen_autosuspend_rules.main()