I’ve made some packages in python and made them installed(by pip install . in qemu.sh) when I rebuild the board img. But It is hard to debug them in this way. Should I make 2 board-folds → $BOARDNAME and $BOARDNAME_DEBUG and using pip install -e . in the second one? Or could I pass make variables to the qemu.sh just like make BOARDS=$BOARDNAME DEBUGMODE=TRUE and check DEBUGMODE in qemu.sh?
Any ideas guys?