From 57b63b9ba149d5049ea6d8bb84f305afa653ce5c Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Mon, 12 Nov 2012 22:09:18 +0100 Subject: [PATCH] --- yaml --- r: 359233 b: refs/heads/master c: 169dfd880ad3f301f60587b2e6145afd3edbbd59 h: refs/heads/master i: 359231: 963d80a038f090b203633f9d950c34ae03527c0f v: v3 --- [refs] | 2 +- .../Documentation/kbuild/kconfig-language.txt | 23 ------------------- 2 files changed, 1 insertion(+), 24 deletions(-) diff --git a/[refs] b/[refs] index 5e989a5adb24..d03f8b66c051 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 527ffe5811e39f9997a08902628c35068a46a5b7 +refs/heads/master: 169dfd880ad3f301f60587b2e6145afd3edbbd59 diff --git a/trunk/Documentation/kbuild/kconfig-language.txt b/trunk/Documentation/kbuild/kconfig-language.txt index a686f9cd69c1..c858f8419eba 100644 --- a/trunk/Documentation/kbuild/kconfig-language.txt +++ b/trunk/Documentation/kbuild/kconfig-language.txt @@ -388,26 +388,3 @@ config FOO depends on BAR && m limits FOO to module (=m) or disabled (=n). - -Kconfig symbol existence -~~~~~~~~~~~~~~~~~~~~~~~~ -The following two methods produce the same kconfig symbol dependencies -but differ greatly in kconfig symbol existence (production) in the -generated config file. - -case 1: - -config FOO - tristate "about foo" - depends on BAR - -vs. case 2: - -if BAR -config FOO - tristate "about foo" -endif - -In case 1, the symbol FOO will always exist in the config file (given -no other dependencies). In case 2, the symbol FOO will only exist in -the config file if BAR is enabled.