]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
trivial: rename chromeos to chromiumos
authorTim Teichmann <44259103+tteichmann@users.noreply.github.com>
Sun, 6 Oct 2019 15:59:53 +0000 (17:59 +0200)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 6 Oct 2019 23:58:13 +0000 (08:58 +0900)
README
rules/61-autosuspend-manual.rules
rules/meson.build
tools/chromiumos/LICENSE [moved from tools/chromeos/LICENSE with 100% similarity]
tools/chromiumos/gen_autosuspend_rules.py [moved from tools/chromeos/gen_autosuspend_rules.py with 100% similarity]
tools/make-autosuspend-rules.py

diff --git a/README b/README
index 501d25df50871d98cff9031544b766c8e929fd40..8aa16fe8c906d6474a5751520bb1d614b2b2df52 100644 (file)
--- a/README
+++ b/README
@@ -30,7 +30,7 @@ LICENSE:
         - except src/basic/siphash24.c which is CC0 Public Domain
         - except src/journal/lookup3.c which is Public Domain
         - except src/udev/* which is (currently still) GPLv2, GPLv2+
-        - except tools/chromeos/* which is BSD-style
+        - except tools/chromiumos/* which is BSD-style
 
 REQUIREMENTS:
         Linux kernel >= 3.13
index dcc0405d1980445a6756a903b8aa52ed43f1f248..4ca6e1b11b36f5e24731c9a647735ffd929eb23d 100644 (file)
@@ -1,5 +1,5 @@
 # This udev rule is for any devices that should enter automatic suspend
-# but are not already included in generated rules from ChromeOS via
+# but are not already included in generated rules from Chromium OS via
 # tools/make-autosuspend-rules.py
 #
 
index 57896aa1a4c1a2838ec40fd2fb63b18a98a0784f..13d1d330cf5e2c67d43479b59aacb782101a2306 100644 (file)
@@ -47,8 +47,8 @@ foreach file : rules_in
 endforeach
 
 auto_suspend_rules = custom_target(
-        '60-autosuspend-chromeos.rules',
-        output : '60-autosuspend-chromeos.rules',
+        '60-autosuspend-chromiumos.rules',
+        output : '60-autosuspend-chromiumos.rules',
         command : make_autosuspend_rules_py,
         capture : true,
         install : true,
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()