-
Notifications
You must be signed in to change notification settings - Fork 2k
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
boards: move remaining uses of USEMODULE from Makefile.include to Makefile.dep #13291
Conversation
@@ -1,5 +1,3 @@ | |||
USEMODULE += boards_common_arduino-atmega |
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.
did this one got lost? or did I overlooked it?
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.
no idea, did you change this recently ?
IMHO, we should use again |
Wait a bit @gschorcht, Murdock is reporting a lot of failures. I'd like to fix them first. |
@aabadie I have the script already running, but for current master first. This will be needed anyway. |
As I have seen only for 4 boards |
@gschorcht, I pushed a fix that I hope should improve the situation. |
I will take a look to the problem with the |
@aabadie I figured out a problem for all ESP32 boards in The And here we encounter the problem of the order in which Maybe we could solve this problem using |
@gschorcht, I'll remove the changes related to the esp32 board for the moment. I agree that having features for esp_eth, esp_wifi, esp_now could help with the dependency resolution. |
bf0f15c
to
0e9c7a5
Compare
No more build failures on Murdock, OK to squash @gschorcht ? |
Should we first have the results of |
That would help indeed. Let's wait for the results. |
I ran
is completely identical. However the output from
differs slightly. But the only difference is that the list of used module in Without having a deep look why the |
@aabadie Please squash. |
0e9c7a5
to
713fead
Compare
Done |
It's all green @gschorcht ! |
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.
ACK
@aabadie Thanks for the contribution. |
Contribution description
This PR moves all remaining uses of
USEMODULE += <module>
from boards Makefile.include to the corresponding Makefile.dep.Testing procedure
Issues/PRs references
#9913