summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2021-01-13 12:45:35 +0100
committerRobert Schwebel <r.schwebel@pengutronix.de>2021-02-01 18:41:55 +0100
commit2bcad110d73162afcd259d6e011a2995f343a726 (patch)
treef045eb3865c4f34929f9d76b5522734704cd0c45
parentcb3606443b3181f2326adaa1e7f7f76b14fa1ca6 (diff)
downloadDistroKit-2bcad110d73162afcd259d6e011a2995f343a726.tar.gz
DistroKit-2bcad110d73162afcd259d6e011a2995f343a726.tar.xz
image-stm32mp157c-dk2: fix image creation with new PTXdist version
The names of the TF-A files changed with the new PTXdist version. This was necessary to support multiple platforms in one build: The platforms may create images with the same name. Without the aditional prefix, the names clash when copoed to images/. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--configs/platform-v7a/config/images/stm32mp.config4
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/platform-v7a/config/images/stm32mp.config b/configs/platform-v7a/config/images/stm32mp.config
index c106320..84ad119 100644
--- a/configs/platform-v7a/config/images/stm32mp.config
+++ b/configs/platform-v7a/config/images/stm32mp.config
@@ -4,11 +4,11 @@ image @IMAGE@ {
gpt = "true"
}
partition fsbl1 {
- image = "tf-a-@STM32MP_BOARD@.stm32"
+ image = "stm32mp1-tf-a-@STM32MP_BOARD@.stm32"
size = 256K
}
partition fsbl2 {
- image = "tf-a-@STM32MP_BOARD@.stm32"
+ image = "stm32mp1-tf-a-@STM32MP_BOARD@.stm32"
size = 256K
}
partition ssbl {