universal7885: Remove risingos vf

This commit is contained in:
Soo-Hwan Na 2024-08-22 11:05:45 +09:00 committed by GitHub
commit 9bc3736454
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,7 +2,7 @@ import os
from os.path import isfile as exists from os.path import isfile as exists
from os.path import dirname, basename from os.path import dirname, basename
debug = True debug = False
DEVICE_BASE = 'device/samsung' DEVICE_BASE = 'device/samsung'
HD_DEVICES=['a10dd', 'a10', 'a20', 'a20e'] HD_DEVICES=['a10dd', 'a10', 'a20', 'a20e']
EX_RUNTIME_STR = 'Vendor config makefile was not found' EX_RUNTIME_STR = 'Vendor config makefile was not found'
@ -85,7 +85,6 @@ class VendorFixer():
return True return True
return False return False
RisingVF = VendorFixer('config/rising.mk', 'rising')
MikuVF = VendorFixer('build/product/miku_product.mk', 'miku') MikuVF = VendorFixer('build/product/miku_product.mk', 'miku')
TestVF = VendorFixer('config/my_ss.mk', 'ss') TestVF = VendorFixer('config/my_ss.mk', 'ss')
@ -93,7 +92,7 @@ def main():
vendors = os.listdir('vendor') vendors = os.listdir('vendor')
ok = False ok = False
for vf in [RisingVF, MikuVF, TestVF]: for vf in [MikuVF, TestVF]:
if vf.check(): if vf.check():
return return