diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2021-02-12 20:29:13 -0600 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2021-02-13 09:56:03 -0300 |
commit | d66e8ae5763ff1f4915baf1bae15e26ba423b922 (patch) | |
tree | 9805ac72b7b00c3f47b6638260a30351de411fba /conf | |
parent | d82d3823e83a161b488fe017d120255b1216bcc9 (diff) | |
download | meta-freescale-d66e8ae5763ff1f4915baf1bae15e26ba423b922.tar.gz |
imx8qm-mek: Fix SPL_BINARY assignment
The SPL_BINARY was no longer being set properly after the machine name change
from imx8qmmek to imx8qm-mek, resulting in the following build break for
imx-boot:
```
| make[1]: *** No rule to make target 'u-boot-spl.bin', needed by 'flash_spl'. Stop.
```
The override of the machine name is of course redundant here, so just
drop the override.
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine/imx8qm-mek.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/machine/imx8qm-mek.conf b/conf/machine/imx8qm-mek.conf index 355c5655..e4f45d85 100644 --- a/conf/machine/imx8qm-mek.conf +++ b/conf/machine/imx8qm-mek.conf | |||
@@ -52,7 +52,7 @@ KERNEL_DEVICETREE = " \ | |||
52 | UBOOT_MAKE_TARGET = \ | 52 | UBOOT_MAKE_TARGET = \ |
53 | "${@bb.utils.contains('MACHINE_FEATURES', 'optee', '', \ | 53 | "${@bb.utils.contains('MACHINE_FEATURES', 'optee', '', \ |
54 | 'u-boot.bin', d)}" | 54 | 'u-boot.bin', d)}" |
55 | SPL_BINARY_imx8qmmek = \ | 55 | SPL_BINARY = \ |
56 | "${@bb.utils.contains('MACHINE_FEATURES', 'optee', 'spl/u-boot-spl.bin', \ | 56 | "${@bb.utils.contains('MACHINE_FEATURES', 'optee', 'spl/u-boot-spl.bin', \ |
57 | '', d)}" | 57 | '', d)}" |
58 | UBOOT_SUFFIX = "bin" | 58 | UBOOT_SUFFIX = "bin" |