fbt: Deterministic STARTUP order & additional checks (#4179)

* unit_tests: clear startup order

* fam: ensure unique STARTUP order

* fbt: warn on same .order values within a group leading to non-determinitic builds

* fbt: better formatting for app order warning

---------

Co-authored-by: hedger <hedger@nanode.su>
This commit is contained in:
Anna Antonenko
2025-04-07 16:45:09 +04:00
committed by GitHub
parent eb0f5ef8c0
commit 3d02063bce
14 changed files with 28 additions and 16 deletions

View File

@@ -27,7 +27,7 @@ App(
provides=["updater_start"],
entry_point="updater_srv",
stack_size=2 * 1024,
order=10,
order=20,
)
App(
@@ -35,5 +35,5 @@ App(
apptype=FlipperAppType.STARTUP,
entry_point="updater_on_system_start",
requires=["updater_app"],
order=110,
order=90,
)