diff options
author | Patrick Georgi <pgeorgi@google.com> | 2021-06-28 18:16:11 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-06-29 16:56:45 +0000 |
commit | 46bee3f48c39960a137b0919e2e8ffb2b0564f99 (patch) | |
tree | de2d369c3ade72651d3b4019f18b5bac2a602a7d /src/mainboard/ti | |
parent | 8790b9a0830ed38c9f2766309f2d415dbff72a63 (diff) |
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 <pgeorgi@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55912
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/ti')
-rw-r--r-- | src/mainboard/ti/beaglebone/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/ti/beaglebone/Kconfig b/src/mainboard/ti/beaglebone/Kconfig index 7881bdf1ae..d42483a1af 100644 --- a/src/mainboard/ti/beaglebone/Kconfig +++ b/src/mainboard/ti/beaglebone/Kconfig @@ -32,6 +32,6 @@ config UART_FOR_CONSOLE config FMDFILE string - default "src/mainboard/$(CONFIG_MAINBOARD_DIR)/board.fmd" + default "src/mainboard/\$(CONFIG_MAINBOARD_DIR)/board.fmd" endif # BOARD_TI_BEAGLEBONE |