Commit fc196d0e9b917762f25f6226a4adf93741339efb

Authored by Masahiro Yamada
Committed by Tom Rini
1 parent 5294e97832

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>

Showing 1 changed file with 1 additions and 5 deletions Side-by-side Diff

scripts/basic/fixdep.c
... ... @@ -221,11 +221,7 @@
221 221  
222 222 define_config(m, slen, hash);
223 223  
224   - /* printf(" $(wildcard include/config/"); */
225   - /* modified for U-Boot */
226   - printf(" $(wildcard %sinclude/config/",
227   - strncmp(depfile, "spl/", 4) ?
228   - (strncmp(depfile, "tpl/", 4) ? "" : "tpl/") : "spl/");
  224 + printf(" $(wildcard include/config/");
229 225 for (i = 0; i < slen; i++) {
230 226 c = m[i];
231 227 if (c == '_')