diff options
| author | Eric W. Biederman <ebiederm@xmission.com> | 2012-04-26 04:51:32 -0400 |
|---|---|---|
| committer | Michal Marek <mmarek@suse.cz> | 2012-05-04 18:24:07 -0400 |
| commit | 5efe241eac80bb534fed0a965684c2d7527af5bf (patch) | |
| tree | 19ed9588bd0dc9c435ccbdc8b688acca7afc66ce | |
| parent | dd775ae2549217d3ae09363e3edb305d0fa19928 (diff) | |
kconfig: Add error handling to KCONFIG_ALLCONFIG
- Only try to read the file specified if KCONFIG_ALL_CONFIG is set to
something other than the empty string or "1".
- Don't use stat to check the name passed to conf_read_simple so that
zconf_fopen can find the file in the current directory or in SRCTREE
removing a extremely source of confusing failure, where KCONFIG_ALL_CONFIG
was not interpreted with respect to the directory make was called in.
- If conf_read_simple fails complain clearly and stop processing.
Allowing the simple debugging of typos.
- Clearly document the behavior so it is clear to users which
values are treated as flags and which values are treated as
filenames.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
| -rw-r--r-- | Documentation/kbuild/kconfig.txt | 18 | ||||
| -rw-r--r-- | scripts/kconfig/conf.c | 20 |
2 files changed, 23 insertions, 15 deletions
diff --git a/Documentation/kbuild/kconfig.txt b/Documentation/kbuild/kconfig.txt index 9d5f2a90dca9..a09f1a6a830c 100644 --- a/Documentation/kbuild/kconfig.txt +++ b/Documentation/kbuild/kconfig.txt | |||
| @@ -53,15 +53,15 @@ KCONFIG_ALLCONFIG | |||
| 53 | -------------------------------------------------- | 53 | -------------------------------------------------- |
| 54 | (partially based on lkml email from/by Rob Landley, re: miniconfig) | 54 | (partially based on lkml email from/by Rob Landley, re: miniconfig) |
| 55 | -------------------------------------------------- | 55 | -------------------------------------------------- |
| 56 | The allyesconfig/allmodconfig/allnoconfig/randconfig variants can | 56 | The allyesconfig/allmodconfig/allnoconfig/randconfig variants can also |
| 57 | also use the environment variable KCONFIG_ALLCONFIG as a flag or a | 57 | use the environment variable KCONFIG_ALLCONFIG as a flag or a filename |
| 58 | filename that contains config symbols that the user requires to be | 58 | that contains config symbols that the user requires to be set to a |
| 59 | set to a specific value. If KCONFIG_ALLCONFIG is used without a | 59 | specific value. If KCONFIG_ALLCONFIG is used without a filename where |
| 60 | filename, "make *config" checks for a file named | 60 | KCONFIG_ALLCONFIG == "" or KCONFIG_ALLCONFIG == "1", "make *config" |
| 61 | "all{yes/mod/no/def/random}.config" (corresponding to the *config command | 61 | checks for a file named "all{yes/mod/no/def/random}.config" |
| 62 | that was used) for symbol values that are to be forced. If this file | 62 | (corresponding to the *config command that was used) for symbol values |
| 63 | is not found, it checks for a file named "all.config" to contain forced | 63 | that are to be forced. If this file is not found, it checks for a |
| 64 | values. | 64 | file named "all.config" to contain forced values. |
| 65 | 65 | ||
| 66 | This enables you to create "miniature" config (miniconfig) or custom | 66 | This enables you to create "miniature" config (miniconfig) or custom |
| 67 | config files containing just the config symbols that you are interested | 67 | config files containing just the config symbols that you are interested |
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index f208f900ed3a..0fdda9169308 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c | |||
| @@ -574,8 +574,13 @@ int main(int ac, char **av) | |||
| 574 | case alldefconfig: | 574 | case alldefconfig: |
| 575 | case randconfig: | 575 | case randconfig: |
| 576 | name = getenv("KCONFIG_ALLCONFIG"); | 576 | name = getenv("KCONFIG_ALLCONFIG"); |
| 577 | if (name && !stat(name, &tmpstat)) { | 577 | if (name && (strcmp(name, "") != 0) && (strcmp(name, "1") != 0)) { |
| 578 | conf_read_simple(name, S_DEF_USER); | 578 | if (conf_read_simple(name, S_DEF_USER)) { |
| 579 | fprintf(stderr, | ||
| 580 | _("*** Can't read seed configuration \"%s\"!\n"), | ||
| 581 | name); | ||
| 582 | exit(1); | ||
| 583 | } | ||
| 579 | break; | 584 | break; |
| 580 | } | 585 | } |
| 581 | switch (input_mode) { | 586 | switch (input_mode) { |
| @@ -586,10 +591,13 @@ int main(int ac, char **av) | |||
| 586 | case randconfig: name = "allrandom.config"; break; | 591 | case randconfig: name = "allrandom.config"; break; |
| 587 | default: break; | 592 | default: break; |
| 588 | } | 593 | } |
| 589 | if (!stat(name, &tmpstat)) | 594 | if (conf_read_simple(name, S_DEF_USER) && |
| 590 | conf_read_simple(name, S_DEF_USER); | 595 | conf_read_simple("all.config", S_DEF_USER)) { |
| 591 | else if (!stat("all.config", &tmpstat)) | 596 | fprintf(stderr, |
| 592 | conf_read_simple("all.config", S_DEF_USER); | 597 | _("*** KCONFIG_ALLCONFIG set, but no \"%s\" or \"all.config\" file found\n"), |
| 598 | name); | ||
| 599 | exit(1); | ||
| 600 | } | ||
| 593 | break; | 601 | break; |
| 594 | default: | 602 | default: |
| 595 | break; | 603 | break; |
