diff options
author | Rasmus Villemoes <rasmus.villemoes@prevas.dk> | 2020-07-07 10:40:26 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-07-17 10:47:19 -0400 |
commit | 5c6a4d5a2779d7c2611319076d9aa4a23981855f (patch) | |
tree | ee0e608b2191740553d24a9227d064032fed5164 /scripts | |
parent | eeda3d749703993818bb9544d4be7be8701a40b1 (diff) |
remove include/config_defaults.h
Since commit 4b0bcfa7c4ec (Kconfig: Migrate CONFIG_BOOTM_* options),
the config_defaults.h file has been void of any actual content - and
these days, "sane defaults for everyone" is achieved by appropriate
default values in Kconfig. Remove it, and thus make every translation
unit process one less header file.
Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.autoconf | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/Makefile.autoconf b/scripts/Makefile.autoconf index 00b8fb34aa7..0bfc1b2a629 100644 --- a/scripts/Makefile.autoconf +++ b/scripts/Makefile.autoconf @@ -104,7 +104,6 @@ define filechk_config_h | sed '/=/ {s/=/ /;q; } ; { s/$$/ 1/; }'; \ done; \ echo \#define CONFIG_BOARDDIR board/$(if $(VENDOR),$(VENDOR)/)$(BOARD);\ - echo \#include \<config_defaults.h\>; \ echo \#include \<config_uncmd_spl.h\>; \ echo \#include \<configs/$(CONFIG_SYS_CONFIG_NAME).h\>; \ echo \#include \<asm/config.h\>; \ |