diff options
author | Masahiro Yamada | 2015-02-28 00:45:26 +0900 |
---|---|---|
committer | Tom Rini | 2015-03-02 08:48:14 -0500 |
commit | cc2b49c2baa54bc0223c585f1918fc7c2582235b (patch) | |
tree | a95cb94f0f81b100f1d6d108d5b42a5a21951960 /scripts/kconfig | |
parent | 20379c115ee4bc18628846ad627ed78d2f39ecc8 (diff) |
kconfig: remove unneeded U-Boot extension code
This code was introduced to support the multiple .config
configuration in U-Boot. We do not need it any more.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r-- | scripts/kconfig/confdata.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index ae6ce669e17..f88d90f2022 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c @@ -951,14 +951,6 @@ int conf_write_autoconf(void) FILE *out, *tristate, *out_h; int i; - /* - * Added for U-Boot SPL/TPL - */ - name = getenv("KCONFIG_OBJDIR"); - if (name && name[0]) - if (chdir(name)) - return 1; - sym_clear_all_valid(); file_write_dep("include/config/auto.conf.cmd"); |