diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2021-07-09 12:53:37 -0500 |
---|---|---|
committer | Daiane Angolini <daiane.angolini@foundries.io> | 2021-09-11 13:35:14 -0300 |
commit | a004c2655f808b858f7bd4408558f15fc074cc8a (patch) | |
tree | 2516d268c699237953f7339197c99dd14b0c551e /recipes-bsp/u-boot | |
parent | 88062eb47b4e78f669753c69af1abe3214c2ed93 (diff) | |
download | meta-freescale-a004c2655f808b858f7bd4408558f15fc074cc8a.tar.gz |
u-boot-mfgtool.inc: Align SPL_IMAGE and SPL_SYMLINK with OE
The deploy task of u-boot-imx-mfgtool fails due to the incorrect
addition of an 'spl' sub-folder:
```
install: cannot create regular file '.../tmp/work/imx8mq_evk-fsl-linux/u-boot-imx-mfgtool/2021.04-r0/deploy-u-boot-imx-mfgtool/spl/u-boot-spl.bin-imx8mq-evk-mfgtool-2021.04-r0-mfgtool-2021.04-r0': No such file or directory
```
The customization of SPL_IMAGE and SPL_SYMLINK for mfgtool should
just add -mfgtool to the values defined in OE-core. Instead, the
base SPL_BINARYNAME is changed to SPL_BINARY, which is why the
extra folder 'spl' is in the path.
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'recipes-bsp/u-boot')
-rw-r--r-- | recipes-bsp/u-boot/u-boot-mfgtool.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-bsp/u-boot/u-boot-mfgtool.inc b/recipes-bsp/u-boot/u-boot-mfgtool.inc index 91526ad7..92d055bf 100644 --- a/recipes-bsp/u-boot/u-boot-mfgtool.inc +++ b/recipes-bsp/u-boot/u-boot-mfgtool.inc | |||
@@ -17,5 +17,5 @@ UBOOT_CONFIG = "mfgtool" | |||
17 | # Add 'mfgtool' suffix | 17 | # Add 'mfgtool' suffix |
18 | UBOOT_IMAGE = "u-boot-${MACHINE}-mfgtool-${PV}-${PR}.${UBOOT_SUFFIX}" | 18 | UBOOT_IMAGE = "u-boot-${MACHINE}-mfgtool-${PV}-${PR}.${UBOOT_SUFFIX}" |
19 | UBOOT_SYMLINK = "u-boot-${MACHINE}-mfgtool.${UBOOT_SUFFIX}" | 19 | UBOOT_SYMLINK = "u-boot-${MACHINE}-mfgtool.${UBOOT_SUFFIX}" |
20 | SPL_IMAGE = "${SPL_BINARY}-${MACHINE}-mfgtool-${PV}-${PR}" | 20 | SPL_IMAGE = "${SPL_BINARYNAME}-${MACHINE}-mfgtool-${PV}-${PR}" |
21 | SPL_SYMLINK = "${SPL_BINARY}-mfgtool-${MACHINE}" | 21 | SPL_SYMLINK = "${SPL_BINARYNAME}-mfgtool-${MACHINE}" |