Question
How to enable drivers in kernel using STM32CubeIDE
Is there any way to enable and disable drivers in the kernel from STM32CubeIDE?
For example to enable support for another LCD panel
If I use menuconfig to change configuration, make does not work anymore.
+ case "$command" in
+ exec make -j12 all
***
*** The source tree is not clean, please run 'make mrproper'
*** in /home/st-test/STM32CubeIDE/workspace_1.14.0/panel/CA7/linux-6.1.28/linux-6.1.28
***
make: *** [/home/st-test/STM32CubeIDE/workspace_1.14.0/panel/CA7/linux-6.1.28/linux-6.1.28/Makefile:658: outputmakefile] Error 1
"make -j12 all" terminated with exit code 2. Build might be incomplete.
@if [ -f $(srctree)/.config -o \
-d $(srctree)/include/config -o \
-d $(srctree)/arch/$(SRCARCH)/include/generated ]; then \
echo >&2 "***"; \
echo >&2 "*** The source tree is not clean, please run 'make$(if $(findstring command line, $(origin ARCH)), ARCH=$(ARCH)) mrproper'"; \
echo >&2 "*** in $(abs_srctree)";\
echo >&2 "***"; \
false; \
fi