aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-12-28 10:44:50 -0700
committerTom Rini <trini@konsulko.com>2020-01-17 13:26:51 -0500
commitbd21f66249b3ca09a905011c52ec2fe77c109f97 (patch)
tree03a2dc75210f65b1572411c07663e949733d16ba
parent4ab18a0ba6a5123b38b7d9f4af481da6349aba70 (diff)
downloadu-boot-bd21f66249b3ca09a905011c52ec2fe77c109f97.zip
u-boot-bd21f66249b3ca09a905011c52ec2fe77c109f97.tar.gz
u-boot-bd21f66249b3ca09a905011c52ec2fe77c109f97.tar.bz2
common: Drop CONFIG_POST_STD/ALT_LIST
These CONFIG options are not used anymore. CONFIG_POST_ALT_LIST just causes CONFIG_POST_STD_LIST to be set and it causes tests.c to be compiled. So just make compiling tests.c unconditional. Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r--include/common.h3
-rw-r--r--post/Makefile2
-rw-r--r--scripts/config_whitelist.txt2
3 files changed, 1 insertions, 6 deletions
diff --git a/include/common.h b/include/common.h
index 38736d3..89ae1d5 100644
--- a/include/common.h
+++ b/include/common.h
@@ -124,9 +124,6 @@ int get_serial_clock(void);
#ifdef CONFIG_POST
#define CONFIG_HAS_POST
-#ifndef CONFIG_POST_ALT_LIST
-#define CONFIG_POST_STD_LIST
-#endif
#endif
#define ROUND(a,b) (((a) + (b) - 1) & ~((b) - 1))
diff --git a/post/Makefile b/post/Makefile
index 5f72708..afd4940 100644
--- a/post/Makefile
+++ b/post/Makefile
@@ -4,7 +4,7 @@
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
obj-y += post.o
-obj-$(CONFIG_POST_STD_LIST) += tests.o
+obj-y += tests.o
obj-y += drivers/
obj-$(CONFIG_PPC) += lib_powerpc/
diff --git a/scripts/config_whitelist.txt b/scripts/config_whitelist.txt
index bca3a04..873f231 100644
--- a/scripts/config_whitelist.txt
+++ b/scripts/config_whitelist.txt
@@ -1347,7 +1347,6 @@ CONFIG_PMW_BASE
CONFIG_PM_SLEEP
CONFIG_POST
CONFIG_POSTBOOTMENU
-CONFIG_POST_ALT_LIST
CONFIG_POST_BSPEC1
CONFIG_POST_BSPEC2
CONFIG_POST_BSPEC3
@@ -1355,7 +1354,6 @@ CONFIG_POST_BSPEC4
CONFIG_POST_BSPEC5
CONFIG_POST_EXTERNAL_WORD_FUNCS
CONFIG_POST_SKIP_ENV_FLAGS
-CONFIG_POST_STD_LIST
CONFIG_POST_UART
CONFIG_POST_WATCHDOG
CONFIG_POWER