forked from openkylin/platform_build
Add default LMK properties to GSI
These LMK properties are product properties. The configuration will be absent when GSI is installed as GSI doesn't mount the product partition. Without these settings, some CTS test cases could fail due to an aggressive LMK. The patch puts these properties in GSI as default values. Bug: 136212765 Bug: 134460917 Test: `run cts -m CtsFileSystemTestCases`, all pass Change-Id: I6fde8db51debcb9bb269aece3a3e4c7e5bb991f6
This commit is contained in:
parent
d8d0821252
commit
9547929af4
|
@ -12,3 +12,8 @@ persist.sys.disable_rescue=true
|
|||
|
||||
# TODO(b/78105955): disable privapp_permissions checking before the bug solved
|
||||
ro.control_privapp_permissions=disable
|
||||
|
||||
# TODO(b/136212765): the default for LMK
|
||||
ro.lmk.kill_heaviest_task=true
|
||||
ro.lmk.kill_timeout_ms=100
|
||||
ro.lmk.use_minfree_levels=true
|
||||
|
|
|
@ -9,3 +9,8 @@ persist.sys.disable_rescue=true
|
|||
|
||||
# TODO(b/78105955): disable privapp_permissions checking before the bug solved
|
||||
ro.control_privapp_permissions=disable
|
||||
|
||||
# TODO(b/136212765): the default for LMK
|
||||
ro.lmk.kill_heaviest_task=true
|
||||
ro.lmk.kill_timeout_ms=100
|
||||
ro.lmk.use_minfree_levels=true
|
||||
|
|
Loading…
Reference in New Issue