Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Document the change in commit 1a95cce1a3c3ed

...

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
languagetext
titleBefore
-include $(TOPDIR)/Make.defs

to this:

Code Block
languagetext
titleAfter
include $(TOPDIR)/Make.defs

See git commit # 1a95cce1a3c3ed8b04d1d86b7bd744352cca45a2 in the main NuttX repository.

Known Problems In This Release

...