From ea1ffb63d0fc2bd010faa1e3264eb06acd32e079 Mon Sep 17 00:00:00 2001 From: Ahmad Fatoum Date: Thu, 11 Mar 2021 19:12:52 +0100 Subject: v7a: stm32mp: images: allow differing board names for FSBL and SSBL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit So far, the two STM32MP1 boards we support had the same board name string within the file names of first stage (TF-A) and second stage (barebox) bootloaders. This will no longer be true when updating to a more recent barebox version, as the dk2 image's name has been changed to dkx to indicate support for both dk1 and dk2. Prepare for this by splitting up STM32MP_BOARD_NAME. No functional change. Signed-off-by: Ahmad Fatoum Signed-off-by: Uwe Kleine-König --- configs/platform-v7a/config/images/stm32mp.config | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'configs/platform-v7a/config') diff --git a/configs/platform-v7a/config/images/stm32mp.config b/configs/platform-v7a/config/images/stm32mp.config index 6b915fd..cbf9658 100644 --- a/configs/platform-v7a/config/images/stm32mp.config +++ b/configs/platform-v7a/config/images/stm32mp.config @@ -5,15 +5,15 @@ image @IMAGE@ { gpt-no-backup = true } partition fsbl1 { - image = "stm32mp1-tf-a-@STM32MP_BOARD@.stm32" + image = "stm32mp1-tf-a-@STM32MP_BOARD_FSBL@.stm32" size = 256K } partition fsbl2 { - image = "stm32mp1-tf-a-@STM32MP_BOARD@.stm32" + image = "stm32mp1-tf-a-@STM32MP_BOARD_FSBL@.stm32" size = 256K } partition ssbl { - image = "barebox-@STM32MP_BOARD@.img" + image = "barebox-@STM32MP_BOARD_SSBL@.img" size = 1M } partition barebox-environment { -- cgit v1.2.3