eb4ff3c0fd
* github: bundling debug folder with scripts; docs: fixes & updates; fbt: added FAP_EXAMPLES variable to enable building example apps. Disabled by default. fbt: added TERM to list of proxied environment variables * fbt: better help output; disabled implicit_deps_unchanged; added color to import validator reports * fbt: moved debug configuration to separate tool * fbt: proper dependency tracker for SDK source file; renamed linker script for external apps * fbt: fixed debug elf path * fbt: packaging sdk archive * scripts: fixed sconsdist.py * fbt: reworked sdk packing; docs: updates * docs: info on cli target; linter fixes * fbt: moved main code to scripts folder * scripts: packing update into .tgz * fbt, scripts: reworked copro_dist to build .tgz * scripts: fixed naming for archived updater package * Scripts: fix ぐるぐる回る Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
24 lines
878 B
Python
24 lines
878 B
Python
from fbt.util import link_dir
|
|
|
|
|
|
def link_elf_dir_as_latest(env, elf_node):
|
|
elf_dir = elf_node.Dir(".")
|
|
latest_dir = env.Dir("#build/latest")
|
|
print(f"Setting {elf_dir} as latest built dir (./build/latest/)")
|
|
return link_dir(latest_dir.abspath, elf_dir.abspath, env["PLATFORM"] == "win32")
|
|
|
|
|
|
def should_gen_cdb_and_link_dir(env, requested_targets):
|
|
explicitly_building_updater = False
|
|
# Hacky way to check if updater-related targets were requested
|
|
for build_target in requested_targets:
|
|
if "updater" in str(build_target):
|
|
explicitly_building_updater = True
|
|
|
|
is_updater = not env["IS_BASE_FIRMWARE"]
|
|
# If updater is explicitly requested, link to the latest updater
|
|
# Otherwise, link to firmware
|
|
return (is_updater and explicitly_building_updater) or (
|
|
not is_updater and not explicitly_building_updater
|
|
)
|