1# Copyright (C) 2018 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15owner: Platform
16module: "android.sysprop.CarProperties"
17
18prop {
19    api_name: "boot_user_override_id"
20    type: Integer
21    scope: Internal
22    access: ReadWrite
23    prop_name: "android.car.systemuser.bootuseroverrideid"
24}
25
26# String to be prefixed to device name during trusted device enrollment.
27# Max length limit is 4. Chars exceeding length limit will be truncated.
28prop {
29    api_name: "trusted_device_device_name_prefix"
30    type: String
31    scope: Internal
32    access: Readonly
33    prop_name: "ro.android.car.trusteddevice.device_name_prefix"
34}
35
36# Number of warm users pre-created during boot
37prop {
38    api_name: "number_pre_created_users"
39    type: Integer
40    scope: Internal
41    access: ReadWrite
42    prop_name: "android.car.number_pre_created_users"
43}
44
45# Number of warm guest users pre-created during boot
46prop {
47    api_name: "number_pre_created_guests"
48    type: Integer
49    scope: Internal
50    access: ReadWrite
51    prop_name: "android.car.number_pre_created_guests"
52}
53
54# Whether the Vehicle HAL should be used for user management tasks.
55prop {
56    api_name: "user_hal_enabled"
57    type: Boolean
58    scope: Internal
59    access: ReadWrite
60    prop_name: "android.car.user_hal_enabled"
61}
62
63# Timeout (in ms) waiting for Vehicle HAL responses for user management requests.
64prop {
65    api_name: "user_hal_timeout"
66    type: Integer
67    scope: Internal
68    access: ReadWrite
69    prop_name: "android.car.user_hal_timeout"
70}
71