Re: [I] Can't build custom board [nuttx]

2025-04-20 Thread via GitHub
shtirlic commented on issue #12122: URL: https://github.com/apache/nuttx/issues/12122#issuecomment-2817206372 @acassis submited the https://github.com/apache/nuttx/pull/16241 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and

Re: [I] Can't build custom board [nuttx]

2025-04-20 Thread via GitHub
acassis commented on issue #12122: URL: https://github.com/apache/nuttx/issues/12122#issuecomment-2817170946 @shtirlic yes, I think it is a bug that nobody noticed yet. Even in native boards, if the use selected the CONFIG_ARCH_BOARD_COMMON it is not included in the defconfig. So some drive

Re: [I] Can't build custom board [nuttx]

2025-04-19 Thread via GitHub
shtirlic commented on issue #12122: URL: https://github.com/apache/nuttx/issues/12122#issuecomment-2816977995 @fdcavalcanti Thank you, it works, should I submit PR for this? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and

Re: [I] Can't build custom board [nuttx]

2025-04-15 Thread via GitHub
fdcavalcanti commented on issue #12122: URL: https://github.com/apache/nuttx/issues/12122#issuecomment-2804975306 Go to `nuttx/tools/Unix.mk`and modify the `savedefconfig` instruction (around line 748). Add this line: `$(Q) grep "CONFIG_ARCH_BOARD_COMMON=" .config >> defconfig.tmp;

Re: [I] Can't build custom board [nuttx]

2025-04-15 Thread via GitHub
shtirlic commented on issue #12122: URL: https://github.com/apache/nuttx/issues/12122#issuecomment-2804694610 I am using https://github.com/shtirlic/picocalc-nx as out of tree boards, as usual I do `make distclean` then `./tools/configure.sh ../picocalc-nx/configs/nsh` . In this repo defcof

Re: [I] Can't build custom board [nuttx]

2025-04-14 Thread via GitHub
fdcavalcanti commented on issue #12122: URL: https://github.com/apache/nuttx/issues/12122#issuecomment-2802348775 I'm not sure what would be the expected output with out of tree builds, could be a bug. Could you show the steps you take to build until it fails? This way we can use a dummy

Re: [I] Can't build custom board [nuttx]

2025-04-11 Thread via GitHub
shtirlic commented on issue #12122: URL: https://github.com/apache/nuttx/issues/12122#issuecomment-2798480750 Sorry for resurrecting this thread, `CONFIG_ARCH_BOARD_COMMON=y` works fine with my out of tree board, the problem is that after doing `make savedconfig` it vanishes from `defconfig

Re: [I] Can't build custom board [nuttx]

2024-10-16 Thread via GitHub
fdcavalcanti closed issue #12122: Can't build custom board URL: https://github.com/apache/nuttx/issues/12122 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-m

Re: [I] Can't build custom board [nuttx]

2024-04-10 Thread via GitHub
fdcavalcanti commented on issue #12122: URL: https://github.com/apache/nuttx/issues/12122#issuecomment-2048255584 Right, so I got it to compile by reading some issues from `make export` in #10388 Just had to add `CONFIG_ARCH_BOARD_COMMON=y`. I understand that there is a common directo

Re: [I] Can't build custom board [nuttx]

2024-04-10 Thread via GitHub
fdcavalcanti commented on issue #12122: URL: https://github.com/apache/nuttx/issues/12122#issuecomment-2048045912 Hello @TimJTi thanks for the input. Yes I tried. I also applied the modifications in the issue description above. This is really an issue now because I think porting to a si

Re: [I] Can't build custom board [nuttx]

2024-04-10 Thread via GitHub
TimJTi commented on issue #12122: URL: https://github.com/apache/nuttx/issues/12122#issuecomment-2047872943 @fdcavalcanti - have you tried the instructions to move it completely out-of-tree? It works for me. @acassis - I "ported" the custom boards stuff from the old Wiki (Confluence

Re: [I] Can't build custom board [nuttx]

2024-04-10 Thread via GitHub
fdcavalcanti commented on issue #12122: URL: https://github.com/apache/nuttx/issues/12122#issuecomment-2047692910 Hi @acassis. Its not a commercial board. I'm using a Nucleo-144 integrating in a different equipment as a proof of concept. Its just easier for me to version only the board file

Re: [I] Can't build custom board [nuttx]

2024-04-10 Thread via GitHub
acassis commented on issue #12122: URL: https://github.com/apache/nuttx/issues/12122#issuecomment-2047621748 @fdcavalcanti I just saw that our documentation for custom board is very shallow: https://nuttx.apache.org/docs/latest/guides/customboards.html# we need something like Custom Apps th

[I] Can't build custom board [nuttx]

2024-04-10 Thread via GitHub
fdcavalcanti opened a new issue, #12122: URL: https://github.com/apache/nuttx/issues/12122 Hi everyone, I'm trying to create a custom board that is based on a Nucleo-144. I want to have this board versioned so I simply copied the directory `boads/arm/stm32f7/nucleo-144` to my reposit