Is it possible to resolve the dependencies of an option using Kconfig utility?
For instance, I have my .config
and I would like to add an option CONFIG_FOO
and its dependency automatically without using menuconfig
.
Note that using make oldconfig
does not work, it just gets rid of the
additional option CONFIG_FOO
I just added.
I know that there is a Python implementation of Kconfig : Kconfiglib but I have to do it in C.
I did read the C code and I have an overview of what is going on there but I just do not get where is dependency solving for an option.