-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for @repo targets in mfg create #391
base: master
Are you sure you want to change the base?
Conversation
Without the fix, building targets such as target.app: "@mcuboot/boot/mynewt" fails, since the path to the .manifest, .hex and .bin is wrong. This can be fixed by using the target app's FullName() instead of Name(). Signed-off-by: Stefan Diewald <[email protected]>
This use of |
@utzig, here is the output of the current master newt build as it is:
With the fix, the command works for me and outputs the following paths as its inputs:
The nrf52_boot
The
|
@dwld I wonder if this could be a Windows-specific issue you are seeing. Do you think you could show an example without redacting any paths? Unfortunately I don't have a Windows machine available to test this on. |
Sorry for the delay. I was on parental leave and will create new logs with full paths in the next days. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this stil an issue? we use mcuboot for quite some time already and all seems to work for me
Without the fix, mfg create for targets such as
target.app: "@mcuboot/boot/mynewt" fails,
since the path to the .manifest, .hex and .bin is wrong.
This can be fixed by using the target app's FullName() instead of Name().