diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2020-12-09 16:12:41 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2020-12-11 00:40:38 +0000 |
commit | 4074459964680869928b8f89d13178f15b4a0885 (patch) | |
tree | 6bb3394016f340ecc03e606e7778e0e567246b9c /src/soc/amd/picasso | |
parent | e29b674faff3476224bcc36b0a357de647de6bd6 (diff) |
soc/amd/picasso: use all-y for aoac target
Since aoac gets also linked into verstage on PSP, all-y can be used
here.
Change-Id: I74607123ebc8115aa7efbb9a364d9632372b52cb
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48506
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/picasso')
-rw-r--r-- | src/soc/amd/picasso/Makefile.inc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/soc/amd/picasso/Makefile.inc b/src/soc/amd/picasso/Makefile.inc index 6e1d88ba97..7cbae92932 100644 --- a/src/soc/amd/picasso/Makefile.inc +++ b/src/soc/amd/picasso/Makefile.inc @@ -10,9 +10,9 @@ subdirs-y += ../../../cpu/x86/smm subdirs-$(CONFIG_VBOOT_STARTS_BEFORE_BOOTBLOCK) += psp_verstage all-y += config.c +all-y += aoac.c bootblock-y += bootblock.c -bootblock-y += aoac.c bootblock-y += early_fch.c bootblock-y += i2c.c bootblock-y += uart.c @@ -27,12 +27,10 @@ romstage-y += reset.c romstage-y += memmap.c romstage-y += uart.c romstage-$(CONFIG_PICASSO_CONSOLE_UART) += uart_console.c -romstage-y += aoac.c romstage-y += psp.c romstage-y += mrc_cache.c verstage-y += i2c.c -verstage-y += aoac.c verstage_x86-y += gpio.c verstage_x86-y += uart.c verstage_x86-$(CONFIG_PICASSO_CONSOLE_UART) += uart_console.c @@ -47,7 +45,6 @@ ramstage-y += mca.c ramstage-$(CONFIG_HAVE_ACPI_TABLES) += acpi.c ramstage-$(CONFIG_HAVE_ACPI_TABLES) += agesa_acpi.c ramstage-y += gpio.c -ramstage-y += aoac.c ramstage-y += fch.c ramstage-y += reset.c ramstage-y += acp.c |