You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we had the old hardware model, you would specify the revision at the end:
``east build -b plank_mcu_ns@1.0.0`
But now, it happens "in the middle":
``east build -b plank@1.0.0/mcu/ns`
The code linked above assumes that the revision is at the end.
Workaround
If I rename plank_mcu_ns.conf to plank.conf, it gets included in the build.
This is fine for my specific project, but is not a general solution.
Notes/Comments
We are drifting further and further apart from how zephyr collects dts and conf files and how east does it.
I feel like it is time to move to using snippets and stuff from Zephyr :(
The text was updated successfully, but these errors were encountered:
Describe the bug
If I have a board that requires qualifiers in the build command, specifying the board revision stops adding a board specific overlay to the build.
Firmware/Software Version
0.25.2
To Reproduce
Example:
plank
that uses/mcu/ns
and/mcu
qualifiers.1.0.0
(default) and1.1.0
.conf
folder withcommon.conf
andplank_mcu_ns.conf
.If I build without specifying the revision: ˙east --echo build -b plank/mcu/ns`. The echoed build command is:
If I build with specifying the revision: ˙east --echo build -b plank@1.0.0/mcu/ns`. The echoed build command is:
Additional context
I think the error is here.
When we had the old hardware model, you would specify the revision at the end:
``east build -b plank_mcu_ns@1.0.0`
But now, it happens "in the middle":
``east build -b plank@1.0.0/mcu/ns`
The code linked above assumes that the revision is at the end.
Workaround
If I rename
plank_mcu_ns.conf
toplank.conf
, it gets included in the build.This is fine for my specific project, but is not a general solution.
Notes/Comments
We are drifting further and further apart from how zephyr collects dts and conf files and how east does it.
I feel like it is time to move to using snippets and stuff from Zephyr :(
The text was updated successfully, but these errors were encountered: