kconfig: Add error handling to KCONFIG_ALLCONFIG
authorEric W. Biederman <ebiederm@xmission.com>
Thu, 26 Apr 2012 08:51:32 +0000 (01:51 -0700)
committerChristian Lamparter <chunkeey@googlemail.com>
Sat, 21 Jul 2012 13:55:13 +0000 (15:55 +0200)
commit72a287d75680d3d623c508fdb84da74664405854
tree9eae2f346ce83126bf8a397962635b3b5106e73b
parentab1f0daf3326ef4281b1b84a3f1d0aa76ba66bd0
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>
Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
config/conf.c