mirror of
https://github.com/chararomandroid/android_device_samsung_a20
synced 2026-08-21 11:55:31 -04:00
universal7885: Disable VINTF checks
Change-Id: I1af07b88795f10fc086d4ebbfe35d7ec083d007a
This commit is contained in:
parent
55f0646f0d
commit
4c00f936bc
2 changed files with 13 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
<manifest version="1.0" type="device" target-level="3">
|
<manifest version="1.0" type="device" target-level="legacy">
|
||||||
<hal format="hidl">
|
<hal format="hidl">
|
||||||
<name>android.hardware.audio</name>
|
<name>android.hardware.audio</name>
|
||||||
<transport>hwbinder</transport>
|
<transport>hwbinder</transport>
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,18 @@
|
||||||
|
|
||||||
import common
|
import common
|
||||||
|
|
||||||
|
def FullOTA_Assertions(info):
|
||||||
|
OTA_Assertions(info)
|
||||||
|
return
|
||||||
|
|
||||||
|
def IncrementalOTA_Assertions(info):
|
||||||
|
OTA_Assertions(info)
|
||||||
|
return
|
||||||
|
|
||||||
|
def OTA_Assertions(info):
|
||||||
|
# Disable VINTF checks
|
||||||
|
common.OPTIONS.skip_compatibility_check = True
|
||||||
|
|
||||||
def FullOTA_InstallEnd(info):
|
def FullOTA_InstallEnd(info):
|
||||||
OTA_InstallEnd(info)
|
OTA_InstallEnd(info)
|
||||||
return
|
return
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue