Lines Matching full:dependency

119   This defines a dependency for this menu entry. If multiple
157 from a direct dependency or with a visible prompt.
198 FOO should imply not only BAZ, but also its dependency BAR::
237 module state. Dependency expressions have the following syntax::
296 the menu entry, e.g. this means the dependency "NET" is added to the
297 dependency list of the config option NETDEVICES.
302 be part of the dependency list and then one of these two conditions
375 dependency, but will not appear under menuconfig M anymore, because
446 This defines an if block. The dependency expression <expr> is appended
517 to describe the dependency on the compiler feature is to use "depends on"
543 If a config symbol has a dependency, but the code controlled by the config
544 symbol can still be compiled if the dependency is not met, it is encouraged to
546 dependency. This is especially useful for drivers for more exotic hardware, as
550 the dependency is not met.
564 driver can be used on. The dependency can be an architecture (e.g. ARM) or
565 platform (e.g. ARCH_OMAP4) dependency. This makes life simpler not only for
569 Such a dependency can be relaxed by combining it with the compile-testing rule
583 The most common way to express this optional dependency in Kconfig logic
590 This means that there is either a dependency on BAR that disallows
593 the same dependency, a helper symbol can be used, like::
602 Kconfig recursive dependency limitations
605 If you've hit the Kconfig error: "recursive dependency detected" you've run
606 into a recursive dependency issue with Kconfig, a recursive dependency can be
607 summarized as a circular dependency. The kconfig tools need to ensure that
613 dependency resolution; this has a few implications for Kconfig file writers.
645 b) Match dependency semantics:
655 some dependency criteria, for such cases you can work with solution b).
700 desirable to enable more complex dependency mappings and / or queries,
702 the current known recursive dependency issues. It is not known if this would
704 solver proves too complex or that it cannot address recursive dependency issues