summaryrefslogtreecommitdiff
path: root/scripts/Makefile.autoconf
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2021-12-02 07:12:28 -0500
committerTom Rini <[email protected]>2021-12-02 07:12:28 -0500
commitcdccb39e37ba5b43dcae4e783c15f0471acf5529 (patch)
treedbd895067824be9bfa258710e4869d3573314b88 /scripts/Makefile.autoconf
parentfc47dbb26e9d86a688e69e198b2ed0749db16756 (diff)
parent6d99f866952bb5df7fe699b3db29a97d75e5c445 (diff)
Merge branch '2021-12-01-assorted-updates' into next
- Have SPL skip length 0 images, some clean-ups related to CONFIG symbols and the known list of unmigrated symbols and pinctrl updates.
Diffstat (limited to 'scripts/Makefile.autoconf')
-rw-r--r--scripts/Makefile.autoconf3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/Makefile.autoconf b/scripts/Makefile.autoconf
index 8a3efdb2db0..5ed9abc8e14 100644
--- a/scripts/Makefile.autoconf
+++ b/scripts/Makefile.autoconf
@@ -67,7 +67,8 @@ quiet_cmd_autoconf = GEN $@
quiet_cmd_u_boot_cfg = CFG $@
cmd_u_boot_cfg = \
$(CPP) $(c_flags) $2 -DDO_DEPS_ONLY -dM $(srctree)/include/common.h > [email protected] && { \
- grep 'define CONFIG_' [email protected] > $@; \
+ grep 'define CONFIG_' [email protected] | \
+ sed '/define CONFIG_IS_ENABLED(/d;/define CONFIG_VAL(/d;' > $@; \
} || { \
rm [email protected]; false; \