summaryrefslogtreecommitdiff
path: root/tools/make-autosuspend-rules.py
diff options
context:
space:
mode:
authorTim Teichmann <44259103+tteichmann@users.noreply.github.com>2019-10-06 17:59:53 +0200
committerYu Watanabe <watanabe.yu+github@gmail.com>2019-10-07 08:58:13 +0900
commit0490b44031f0406ad053e150349666605b22ab15 (patch)
treec3762a56b01d99532e7afbd129e2a2ab9b0dc028 /tools/make-autosuspend-rules.py
parent581004bd336567d936e94e616d35679da8ce32a0 (diff)
downloadsystemd-0490b44031f0406ad053e150349666605b22ab15.tar.gz
trivial: rename chromeos to chromiumos
Diffstat (limited to 'tools/make-autosuspend-rules.py')
-rwxr-xr-xtools/make-autosuspend-rules.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/make-autosuspend-rules.py b/tools/make-autosuspend-rules.py
index 732731626d..25b261ea0d 100755
--- a/tools/make-autosuspend-rules.py
+++ b/tools/make-autosuspend-rules.py
@@ -2,13 +2,13 @@
# SPDX-License-Identifier: LGPL-2.1+
# Generate autosuspend rules for devices that have been whitelisted (IE tested)
-# by the ChromeOS team. Please keep this script in sync with:
+# 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
-import chromeos.gen_autosuspend_rules
+import chromiumos.gen_autosuspend_rules
if __name__ == '__main__':
if len(sys.argv) > 1:
sys.stdout = open(sys.argv[1], 'w')
- chromeos.gen_autosuspend_rules.main()
+ chromiumos.gen_autosuspend_rules.main()