diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-01-13 02:09:58 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-01-14 15:00:42 +0000 |
commit | 6f9ed7a10dfb8763a13f09d65c7faa36b3bacd64 (patch) | |
tree | df53e9db4d62697f2ab8f14753192bb51fae49c7 /src/soc/amd/common | |
parent | 0ad97332e4febd75dbbe8e397334227ad7060573 (diff) |
soc/amd/common/block/uart/Makefile: use all target
Change-Id: I5079decfae982d2222bb9a7f5155d51885d4d3a9
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49374
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/common')
-rw-r--r-- | src/soc/amd/common/block/uart/Makefile.inc | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/soc/amd/common/block/uart/Makefile.inc b/src/soc/amd/common/block/uart/Makefile.inc index 9d968455dd..664c520180 100644 --- a/src/soc/amd/common/block/uart/Makefile.inc +++ b/src/soc/amd/common/block/uart/Makefile.inc @@ -1,12 +1,6 @@ ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_UART),y) -bootblock-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c - -romstage-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c - -verstage_x86-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c - -ramstage-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c +all-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c ifeq ($(CONFIG_DEBUG_SMI),y) smm-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c |