universal7885: Organize tree

This commit is contained in:
roynatech2544 2022-09-22 13:31:14 +09:00
commit 340f28fe4b
64 changed files with 1 additions and 1 deletions

View file

@ -1,11 +0,0 @@
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