Re: How to share code and Kconfig between different boards

2021-05-05 Thread Abdelatif Guettouche
> I'm not sure if there's support for custom-board common-code (in the same > sense as for in-tree boards). There is, it works the same way as the in-tree boards. But I think what's being asked here is something common between different boards of different architectures? I think what you

Re: How to share code and Kconfig between different boards

2021-05-05 Thread Matias N.
I'm not sure if there's support for custom-board common-code (in the same sense as for in-tree boards). In any case, we've introduced an external/ directory for the purpose of adding external OS level code. Simply point nuttx/external symlink to your common directory. Best, Matias On Wed, May

How to share code and Kconfig between different boards

2021-05-05 Thread Frank-Christian Kruegel
Hi. I've created several board support packages, each in its own out-of-tree directory. Ive configured them as custom boards with a relative path like ... +- nuttx +- apps +- company-boards | +- board1 | +- board2 | +- board3 +- company-apps | +- app1 | +- app2 ... Works fine. These