ro.boot.hardware.revision is used in fastbootd UI, getvar hw-revision output and Settings app. Set based on the RF version so external tools can use it to flash the correct firmware variant and show the HW variant in Settings. Change-Id: Ib92b080ace4d14fc2f13b5b3705249a15f1671c8
21 lines
478 B
Plaintext
21 lines
478 B
Plaintext
#
|
|
# Copyright (C) 2022 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
on property:ro.boot.rf_version=11
|
|
setprop ro.boot.hardware.revision "CN"
|
|
|
|
on property:ro.boot.rf_version=12
|
|
setprop ro.boot.hardware.revision "TMO"
|
|
|
|
on property:ro.boot.rf_version=13
|
|
setprop ro.boot.hardware.revision "IN"
|
|
|
|
on property:ro.boot.rf_version=14
|
|
setprop ro.boot.hardware.revision "EU"
|
|
|
|
on property:ro.boot.rf_version=15
|
|
setprop ro.boot.hardware.revision "NA"
|