diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2015-02-28 00:37:57 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-03-05 20:50:30 -0500 |
commit | fc196d0e9b917762f25f6226a4adf93741339efb (patch) | |
tree | 3537e569df0d030baea6b47fa4508f1d90c4df63 | |
parent | 5294e97832a63ec3757221a88cb40095135a31ad (diff) | |
download | u-boot-imx-fc196d0e9b917762f25f6226a4adf93741339efb.zip u-boot-imx-fc196d0e9b917762f25f6226a4adf93741339efb.tar.gz u-boot-imx-fc196d0e9b917762f25f6226a4adf93741339efb.tar.bz2 |
fixdep: remove multiple .config support code
Since commit e02ee2548afe (kconfig: switch to single .config
configuration), the ".*.cmd" files are not correctly created
for SPL/TPL. The U-Boot extension code in fixdep, which was
introduced to support the multiple .config, must be removed.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | scripts/basic/fixdep.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/scripts/basic/fixdep.c b/scripts/basic/fixdep.c index 1a41723..b304068 100644 --- a/scripts/basic/fixdep.c +++ b/scripts/basic/fixdep.c @@ -221,11 +221,7 @@ static void use_config(const char *m, int slen) define_config(m, slen, hash); - /* printf(" $(wildcard include/config/"); */ - /* modified for U-Boot */ - printf(" $(wildcard %sinclude/config/", - strncmp(depfile, "spl/", 4) ? - (strncmp(depfile, "tpl/", 4) ? "" : "tpl/") : "spl/"); + printf(" $(wildcard include/config/"); for (i = 0; i < slen; i++) { c = m[i]; if (c == '_') |