mirror of
https://github.com/chararomandroid/android_device_samsung_a20
synced 2026-08-21 11:55:31 -04:00
universal7885: Remove risingos vf
This commit is contained in:
parent
6fa552a487
commit
9bc3736454
1 changed files with 2 additions and 3 deletions
|
|
@ -2,7 +2,7 @@ import os
|
|||
from os.path import isfile as exists
|
||||
from os.path import dirname, basename
|
||||
|
||||
debug = True
|
||||
debug = False
|
||||
DEVICE_BASE = 'device/samsung'
|
||||
HD_DEVICES=['a10dd', 'a10', 'a20', 'a20e']
|
||||
EX_RUNTIME_STR = 'Vendor config makefile was not found'
|
||||
|
|
@ -85,7 +85,6 @@ class VendorFixer():
|
|||
return True
|
||||
return False
|
||||
|
||||
RisingVF = VendorFixer('config/rising.mk', 'rising')
|
||||
MikuVF = VendorFixer('build/product/miku_product.mk', 'miku')
|
||||
TestVF = VendorFixer('config/my_ss.mk', 'ss')
|
||||
|
||||
|
|
@ -93,7 +92,7 @@ def main():
|
|||
vendors = os.listdir('vendor')
|
||||
ok = False
|
||||
|
||||
for vf in [RisingVF, MikuVF, TestVF]:
|
||||
for vf in [MikuVF, TestVF]:
|
||||
if vf.check():
|
||||
return
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue