android_device_samsung_a20/universal7885-common/host-tools/makefile_generator.py
2022-09-22 13:31:14 +09:00

11 lines
460 B
Python

import os
blacklist = ["qcom", "nxp","pixel-framework", "lawnchair" ,"support", "overlay","samsung", "gapps", "google", "gms", "codeaurora", "addons", "overlays", "xtras", "themes"]
vendors = os.listdir("vendor")
for vendor in vendors:
common = "vendor/"+vendor+"/config/common.mk"
if os.path.isfile(common) and vendor not in blacklist:
f = open("device/samsung/universal7885-common/vendor_name", "a")
f.write(vendor)
f.close()
break