ron minnich has submitted this change. ( https://review.coreboot.org/c/coreboot/+/81086?usp=email )
(
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: arch/riscv: Makefile.mk: Fix incorrect config variable ......................................................................
arch/riscv: Makefile.mk: Fix incorrect config variable
ARCH_RISCV_PMP should be CONFIG_ARCH_RISCV_PMP. Rename it.
Change-Id: I2a22acae5cd9f30e01c491653bf7fc7b7765d815 Signed-off-by: Ronald G Minnich rminnich@gmail.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/81086 Reviewed-by: Felix Singer service+coreboot-gerrit@felixsinger.de Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/arch/riscv/Makefile.mk 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Felix Singer: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/src/arch/riscv/Makefile.mk b/src/arch/riscv/Makefile.mk index 0dbfd2a..1131bd5 100644 --- a/src/arch/riscv/Makefile.mk +++ b/src/arch/riscv/Makefile.mk @@ -59,7 +59,7 @@ all-y += boot.c all-y += smp.c all-y += misc.c -all-$(ARCH_RISCV_PMP) += pmp.c +all-$(CONFIG_ARCH_RISCV_PMP) += pmp.c all-y += \ $(top)/src/lib/memchr.c \ $(top)/src/lib/memcmp.c \