Lines Matching full:foo
17 config FOO
18 bool "FOO"
21 configdefault FOO
28 config FOO
29 bool "Foo"
39 configdefault FOO
43 configdefault FOO
54 The recommended syntax for referencing environment variables is ``$(FOO)``
55 rather than ``$FOO``. This uses the new `Kconfig preprocessor
57 The ``$FOO`` syntax for expanding environment variables is only supported for
67 source "foo/bar/*/Kconfig"
69 If the pattern ``foo/bar/*/Kconfig`` matches the files
70 :file:`foo/bar/baz/Kconfig` and :file:`foo/bar/qaz/Kconfig`, the statement
75 source "foo/bar/baz/Kconfig"
76 source "foo/bar/qaz/Kconfig"
96 As an example, assume that :file:`foo/Kconfig` is the top-level
97 :file:`Kconfig` file, and that :file:`foo/bar/Kconfig` has the following
105 This will include the two files :file:`foo/qaz/Kconfig1` and
106 :file:`foo/bar/qaz/Kconfig2`.