DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
See git commit # 7faf3c0254bb63af89f9eb59beefacb4cba26dd9 in the main NuttX repository.
Remove Workaround
In your custom board's src/Make.defs or src/Makefile, remove the workaround for missing .config/Make.defs by removing the minus sign in front of include .config. This is not handled in the main Makefile and will print an error message with hint to run tools/configure.sh <target>.
Change this line, located near the top of the file:
| Code Block | ||||
|---|---|---|---|---|
| ||||
-include $(TOPDIR)/Make.defs
|
to this:
| Code Block | ||||
|---|---|---|---|---|
| ||||
include $(TOPDIR)/Make.defs |
See git commit # 1a95cce1a3c3ed8b04d1d86b7bd744352cca45a2 in the main NuttX repository.
Known Problems In This Release
...