Lines Matching full:join

25 sign_tool = os.path.join("tools", "sign_tool", "sign_tool")
26 link_path = os.path.join(env_cfg.root, "build", "link", "flashboot_sha256.lds")
27 encrypt_key_path = os.path.join('tools', 'sign_tool', 'aes_key.txt')
29 link_path = os.path.join(env_cfg.root, "build", "link", "flashboot_sha256.lds")
31 link_path = os.path.join(env_cfg.root, "build", "link", "flashboot_rsa.lds")
32 root_key_path = os.path.join('tools', 'sign_tool', 'root_rsa.pem')
33 sub_key_path = os.path.join('tools', 'sign_tool', 'sub_rsa.pem')
36 link_path = os.path.join(env_cfg.root, "build", "link", "flashboot_rsa.lds")
37 root_key_path = os.path.join('tools', 'sign_tool', 'root_rsa.pem')
38 sub_key_path = os.path.join('tools', 'sign_tool', 'sub_rsa.pem')
41 link_path = os.path.join(env_cfg.root, "build", "link", "flashboot_ecc.lds")
42 root_key_path = os.path.join('tools', 'sign_tool', 'root_ecc.pem')
43 sub_key_path = os.path.join('tools', 'sign_tool', 'sub_ecc.pem')
56 env.Append(LIBPATH=os.path.join('-Lbuild', 'libs', 'boot_libs'))
66 incs = [os.path.join('#', 'boot', 'flashboot', 'fixed', 'include'), os.path.join('#', 'boot', 'flashboot', 'upg'),
67 os.path.join('#', 'boot', 'flashboot', 'include'), os.path.join('#', 'boot', 'flashboot', 'drivers', 'lsadc'), os.path.join('#', 'boot', 'flashboot', 'drivers', 'efuse'),
68 os.path.join('#', 'boot', 'flashboot', 'include', 'lzma'), os.path.join('#', 'boot', 'flashboot', 'drivers', 'gpio'), os.path.join('#', 'boot', 'flashboot', 'drivers', 'io'),
69 os.path.join('#', 'third_party', 'u-boot-v2019.07', 'u-boot-v2019.07', 'lib', 'lzma'), os.path.join('#', 'boot', 'flashboot', 'secure'), os.path.join('#', 'boot', 'commonboot')]
103 path = src if '..' not in src else os.path.relpath(os.path.realpath(os.path.abspath(src)), os.path.join(env_cfg.root))
104 objs += env.SConscript(os.path.join(src, 'SConscript'), {'env':env,}, variant_dir = os.path.join('#', obj_path, "flashboot", path), duplicate=0)
106 boot_elf = env.Command(target=os.path.join("#", cache_path, "flash_boot.elf"), source=sorted(objs), action="$LINK $LINKFLAGS -T%s $LIBPATH $SOURCES -o $TARGET --start-group $LIBS --end-group"%(link_path))
107 boot_bin = env.Command(target=os.path.join("#", cache_path, "hi_flash_boot.bin"), source=boot_elf,
110 boot_bin_B = os.path.join(bin_path, "%s_boot_signed_B.bin"%(CONFIG_TARGET_BIN_NAME))
112 boot_signed_bin = env.Command(target=os.path.join("#", bin_path, "%s_boot_signed.bin"%(CONFIG_TARGET_BIN_NAME)), source=boot_bin,
116 boot_signed_bin = env.Command(target=os.path.join("#", bin_path, "%s_boot_signed.bin"%(CONFIG_TARGET_BIN_NAME)), source=boot_bin,
119 boot_signed_bin = env.Command(target=os.path.join("#", bin_path, "%s_boot_signed.bin"%(CONFIG_TARGET_BIN_NAME)), source=boot_bin,