Lines Matching refs:sp
86 def get_sp_pkg(sp, args :dict): argument
123 def gen_fdt_sources(sp_layout, sp, args :dict): argument
125 manifest_path = get_sp_manifest_full_path(sp_layout[sp], args)
130 def gen_sptool_args(sp_layout, sp, args :dict): argument
132 sp_pkg = get_sp_pkg(sp, args)
133 sp_dtb_name = os.path.basename(get_file_from_layout(sp_layout[sp]["pm"]))[:-1] + "b"
142 pm_offset = get_pm_offset(sp_layout[sp])
144 image_offset = get_image_offset(sp_layout[sp])
161 owners = [sp_layout[sp].get("owner") for sp in sp_layout]
173 def gen_crt_args(sp_layout, sp, args :dict): argument
179 if sp_layout[sp].get("owner") == "Plat":
190 sp_pkg_idx = [k for k in sp_layout.keys()].index(sp) + 1
195 def gen_fiptool_args(sp_layout, sp, args :dict): argument
197 if "uuid" in sp_layout[sp]:
199 uuid_std = uuid.UUID(sp_layout[sp]['uuid'])
201 with open(get_sp_manifest_full_path(sp_layout[sp], args), "r") as pm_f: