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: "headless_system_user" 20 type: Boolean 21 scope: Internal 22 access: ReadWrite 23 prop_name: "android.car.systemuser.headless" 24} 25 26prop { 27 api_name: "boot_user_override_id" 28 type: Integer 29 scope: Internal 30 access: ReadWrite 31 prop_name: "android.car.systemuser.bootuseroverrideid" 32} 33 34# String to be prefixed to device name during trusted device enrollment. 35# Max length limit is 4. Chars exceeding length limit will be truncated. 36prop { 37 api_name: "trusted_device_device_name_prefix" 38 type: String 39 scope: Internal 40 access: Readonly 41 prop_name: "ro.android.car.trusteddevice.device_name_prefix" 42} 43 44# Number of warm users pre-created during boot 45prop { 46 api_name: "number_pre_created_users" 47 type: Integer 48 scope: Internal 49 access: ReadWrite 50 prop_name: "android.car.number_pre_created_users" 51} 52 53# Number of warm guest users pre-created during boot 54prop { 55 api_name: "number_pre_created_guests" 56 type: Integer 57 scope: Internal 58 access: ReadWrite 59 prop_name: "android.car.number_pre_created_guests" 60} 61