6b6ea44802
* fbt: added separate script for Windows env setup; moved flash targets from firmware.scons to SConstruct; added Blackmagic support with automatic probe port resolution; added apps.c rebuild on any manifest.fam changes; fixed simultaneous flash & debug ops * fbt: added networked BlackmagicResolver mode; added `get_blackmagic` target for IDE integration * fbt: cleanup * fbt: docs update; fixed blackmagic lookup on certain usb hubs * fbt: removed explicit python serial port import * fbt: cleanup * fbt: raising exception on multiple serial blackmagic probes
50 lines
1.3 KiB
Python
50 lines
1.3 KiB
Python
import posixpath
|
|
import os
|
|
|
|
|
|
def BuildModule(env, module):
|
|
src_dir = str(env.Dir(".").srcdir or os.getcwd())
|
|
module_sconscript = posixpath.join(src_dir, module, "SConscript")
|
|
if not os.path.exists(module_sconscript):
|
|
module_sconscript = posixpath.join(src_dir, f"{module}.scons")
|
|
if not os.path.exists(module_sconscript):
|
|
print(f"Cannot build module {module}: scons file not found")
|
|
Exit(2)
|
|
|
|
return env.SConscript(
|
|
module_sconscript,
|
|
variant_dir=posixpath.join(env.subst("$BUILD_DIR"), module),
|
|
duplicate=0,
|
|
)
|
|
|
|
|
|
def BuildModules(env, modules):
|
|
result = []
|
|
for module in modules:
|
|
build_res = env.BuildModule(module)
|
|
# print("module ", module, build_res)
|
|
if build_res is None:
|
|
continue
|
|
result.append(build_res)
|
|
return result
|
|
|
|
|
|
def PhonyTarget(env, name, action, source=None, **kw):
|
|
if not source:
|
|
source = []
|
|
phony_name = "phony_" + name
|
|
env.Pseudo(phony_name)
|
|
command = env.Command(phony_name, source, action, **kw)
|
|
env.AlwaysBuild(env.Alias(name, command))
|
|
return command
|
|
|
|
|
|
def generate(env):
|
|
env.AddMethod(BuildModule)
|
|
env.AddMethod(BuildModules)
|
|
env.AddMethod(PhonyTarget)
|
|
|
|
|
|
def exists(env):
|
|
return True
|