Skip to content
Snippets Groups Projects
Commit bd21f662 authored by Simon Glass's avatar Simon Glass Committed by Tom Rini
Browse files

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's avatarSimon Glass <sjg@chromium.org>
parent 4ab18a0b
No related branches found
No related tags found
No related merge requests found
......@@ -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))
......
......@@ -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/
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment