From 46bee3f48c39960a137b0919e2e8ffb2b0564f99 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Mon, 28 Jun 2021 18:16:11 +0200 Subject: Kconfig: Escape variables New kconfig parsers interpret $(var) themselves, leading to empty fields. Old kconfig understands \$(var), so use that. Change-Id: I927fc9dc7a66211bfe51d4324cf7c51b555ea3a8 Signed-off-by: Patrick Georgi Reviewed-on: https://review.coreboot.org/c/coreboot/+/55912 Reviewed-by: Felix Singer Tested-by: build bot (Jenkins) --- src/mainboard/kontron/mal10/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mainboard/kontron') diff --git a/src/mainboard/kontron/mal10/Kconfig b/src/mainboard/kontron/mal10/Kconfig index f53746d7a9..8a4cf6d1b4 100644 --- a/src/mainboard/kontron/mal10/Kconfig +++ b/src/mainboard/kontron/mal10/Kconfig @@ -49,10 +49,10 @@ config MAINBOARD_PART_NUMBER config DEVICETREE string - default "variants/$(CONFIG_VARIANT_DIR)/devicetree.cb" + default "variants/\$(CONFIG_VARIANT_DIR)/devicetree.cb" config OVERRIDE_DEVICETREE string - default "carriers/$(CONFIG_CARRIER_DIR)/overridetree.cb" + default "carriers/\$(CONFIG_CARRIER_DIR)/overridetree.cb" endif -- cgit v1.2.3