- 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
# 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
#
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,
# 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()