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"
506 depends on HAVE_GENERIC_IOMAP && FOO
551 config FOO
554 limits FOO to module (=m) or disabled (=n).
598 a) Remove any superfluous "select FOO" or "depends on FOO"
601 b1) Swap all "select FOO" to "depends on FOO" or,
603 b2) Swap all "depends on FOO" to "select FOO"