]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - tools/make-autosuspend-rules.py
trivial: rename chromeos to chromiumos
[thirdparty/systemd.git] / tools / make-autosuspend-rules.py
index 732731626d807e46fad1a9cd2f199b64e2fc62dc..25b261ea0d4a09b0e78543b404089b693211c31b 100755 (executable)
@@ -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()