summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-core
diff options
context:
space:
mode:
authorJohn Toomey <john.toomey@amd.com>2024-08-23 16:27:00 +0100
committerMark Hatle <mark.hatle@amd.com>2024-08-27 11:23:38 -0500
commit3fccf01f9871938f5c44e44c5733dccd5deed3ca (patch)
tree1f4ae38419326be42949b94fa611d3a5e238a2dd /meta-xilinx-core
parent4245331708cccc501d6a04e6554c537f9767773c (diff)
downloadmeta-xilinx-3fccf01f9871938f5c44e44c5733dccd5deed3ca.tar.gz
amd_spi_iamge: Fix image-selector manifest file name
Signed-off-by: John Toomey <john.toomey@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Diffstat (limited to 'meta-xilinx-core')
-rw-r--r--meta-xilinx-core/classes-recipe/amd_spi_image.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-xilinx-core/classes-recipe/amd_spi_image.bbclass b/meta-xilinx-core/classes-recipe/amd_spi_image.bbclass
index 6dd18d76..7449cfda 100644
--- a/meta-xilinx-core/classes-recipe/amd_spi_image.bbclass
+++ b/meta-xilinx-core/classes-recipe/amd_spi_image.bbclass
@@ -62,7 +62,7 @@ def generate_spi_image(d):
62 qspi_data.write(b'\xFF' * qspi_size) 62 qspi_data.write(b'\xFF' * qspi_size)
63 63
64 # Image Selector - Primary, Backup, Image A and Image B 64 # Image Selector - Primary, Backup, Image A and Image B
65 imgsel_file = d.getVar("DEPLOY_DIR_IMAGE")+"/imgsel-"+d.getVar("MACHINE")+".bin" 65 imgsel_file = d.getVar("DEPLOY_DIR_IMAGE")+"/image-selector-"+d.getVar("MACHINE")+".bin"
66 try: 66 try:
67 with open(imgsel_file, "rb") as il: 67 with open(imgsel_file, "rb") as il:
68 imgsel = il.read(-1) 68 imgsel = il.read(-1)