Lines Matching full:foo
124 bool "foo" if BAR
130 bool "foo"
146 By abusing select you are able to select a symbol FOO even
147 if FOO depends on BAR that is not set.
161 config FOO
162 tristate "foo"
172 FOO BAR BAZ's default choice for BAZ
187 Note: If the combination of FOO=y and BAR=m causes a link error,
193 baz_register(&foo);
197 Note: If the feature provided by BAZ is highly desirable for FOO,
198 FOO should imply not only BAZ, but also its dependency BAR::
200 config FOO
201 tristate "foo"
491 depends on HAVE_GENERIC_IOMAP && FOO
529 def_bool $(success,$(srctree)/scripts/cc-check-foo.sh $(CC))
536 config FOO
539 limits FOO to module (=m) or disabled (=n).
572 config FOO
573 bool "Support for foo hardware"
586 config FOO
587 tristate "Support for foo hardware"
591 the combination of FOO=y with BAR=m, or BAR is completely disabled.
595 config FOO
596 tristate "Support for foo hardware"
644 a) Remove any superfluous "select FOO" or "depends on FOO"
647 b1) Swap all "select FOO" to "depends on FOO" or,
649 b2) Swap all "depends on FOO" to "select FOO"