cpu/mips: deprecate mips cpu#17304
Conversation
| $(shell $(COLOR_ECHO) "$(COLOR_RED)Deprecated modules are in use:$(COLOR_RESET)"\ | ||
| "$(DEPRECATED_MODULES_USED)" 1>&2) | ||
| endif | ||
| # Warn about used deprecated boards |
There was a problem hiding this comment.
I'm not sure this isn't going to cause trouble. does it print when doing, e.g., "BOARD=6lowpan-clicker make info-modules"?
There was a problem hiding this comment.
True, I guarded it with ifneq ($(RIOT_CI_BUILD),1), which should help against automated checks. For the developer just looking at it I don't think the warnings are a problem.
There was a problem hiding this comment.
Yep, same thing is done for BOARDSDIR already this makes sense
|
murdock passes... may I squash? |
| "$(DEPRECATED_MODULES_USED)" 1>&2) | ||
| endif | ||
| # Warn about used deprecated boards | ||
| include $(RIOTMAKE)/deprecated_boards.inc.mk |
There was a problem hiding this comment.
Does this need to run here? Couldn't it be done in Makefile.include? Also can we make it only show up once with:
# Do not warn when set from sub-make
ifeq ($(MAKELEVEL),0)
...
endif
|
I see the call twice when building in docker, but I think that's fine otherwise I get the warning with the shinny red color, and no warning with RIOT_CI_BUILD=1 |
|
LGTM Ok to squash on my side, @kaspar030? |
Hmm I guess the |
Yes but improove later! |
|
Please squash! |
dad949c to
8ae4f61
Compare
|
Done, thanks for the review. |
8ae4f61 to
6e1b4d1
Compare
9003d91 to
3b2f324
Compare
Add deprecate note in the mips cpu. Add warning in make when any mips based board is being used (6lowpan-clicker, pic32-wifire).
3b2f324 to
cf74b26
Compare
|
Enabled auto-merge, go! |
Contribution description
Add deprecate note in the mips cpu.
Add warning in make when any mips based board is being used (6lowpan-clicker, pic32-wifire).
After some discussion on the forum and between some maintainers we have decided to drop mips cpu as nobody is willing to continue to maintain it.
Testing procedure
Read the docs and run:
then check for the error messages.
Issues/PRs references
Related to #11788
[Forum post discussing dropping mips] (https://forum.riot-os.org/t/dropping-support-of-outdated-poorly-supported-boards-and-modules/3343/19)