diff options
author | Ryan Eatmon <reatmon@ti.com> | 2023-04-05 10:44:44 -0500 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2023-04-05 10:47:56 -0500 |
commit | 6ab0cc7c9d7789ab2b25a4f2079c2b8392e54aa7 (patch) | |
tree | d7299b8b0b8a97bc3ca8333d5b22b327d37c3506 /meta-ti-bsp/conf/machine/include/am62xx.inc | |
parent | 9581f3d450354f8cfec09a228a980a0b37f9fe04 (diff) | |
download | meta-ti-6ab0cc7c9d7789ab2b25a4f2079c2b8392e54aa7.tar.gz |
conf: change from do_image_wic/tar to do_image_complete
When trying to support OpenBMC, we found that our use of do_image_wic
and do_image_tar for adding depends and mcdepends was too limiting.
Moving to do_image_complete is a higher level in the tree that means
for any image type the dependencies will be correct.
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Diffstat (limited to 'meta-ti-bsp/conf/machine/include/am62xx.inc')
-rw-r--r-- | meta-ti-bsp/conf/machine/include/am62xx.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-ti-bsp/conf/machine/include/am62xx.inc b/meta-ti-bsp/conf/machine/include/am62xx.inc index af6a6db4..de180127 100644 --- a/meta-ti-bsp/conf/machine/include/am62xx.inc +++ b/meta-ti-bsp/conf/machine/include/am62xx.inc | |||
@@ -10,17 +10,17 @@ PREFERRED_PROVIDER_virtual/gpudriver ?= "ti-img-rogue-driver" | |||
10 | 10 | ||
11 | # Default tiboot3.bin on AM62x is for HS-FS | 11 | # Default tiboot3.bin on AM62x is for HS-FS |
12 | BBMULTICONFIG = "k3r5-hs-fs" | 12 | BBMULTICONFIG = "k3r5-hs-fs" |
13 | do_image_wic[mcdepends] = "mc::k3r5-hs-fs:ti-sci-fw:do_deploy" | 13 | do_image_complete[mcdepends] = "mc::k3r5-hs-fs:ti-sci-fw:do_deploy" |
14 | 14 | ||
15 | # Since default tiboot3.bin on AM62x is for HS-FS, add a version for GP | 15 | # Since default tiboot3.bin on AM62x is for HS-FS, add a version for GP |
16 | BBMULTICONFIG += "k3r5-gp" | 16 | BBMULTICONFIG += "k3r5-gp" |
17 | IMAGE_BOOT_FILES += "tiboot3-am62x-gp-evm.bin" | 17 | IMAGE_BOOT_FILES += "tiboot3-am62x-gp-evm.bin" |
18 | do_image_wic[mcdepends] += "mc::k3r5-gp:ti-sci-fw:do_deploy" | 18 | do_image_complete[mcdepends] += "mc::k3r5-gp:ti-sci-fw:do_deploy" |
19 | 19 | ||
20 | # Since default tiboot3.bin on AM62x is for HS-FS, add a version for HS-SE | 20 | # Since default tiboot3.bin on AM62x is for HS-FS, add a version for HS-SE |
21 | BBMULTICONFIG += "k3r5-hs-se" | 21 | BBMULTICONFIG += "k3r5-hs-se" |
22 | IMAGE_BOOT_FILES += "tiboot3-am62x-hs-evm.bin" | 22 | IMAGE_BOOT_FILES += "tiboot3-am62x-hs-evm.bin" |
23 | do_image_wic[mcdepends] += "mc::k3r5-hs-se:ti-sci-fw:do_deploy" | 23 | do_image_complete[mcdepends] += "mc::k3r5-hs-se:ti-sci-fw:do_deploy" |
24 | 24 | ||
25 | TFA_BOARD = "lite" | 25 | TFA_BOARD = "lite" |
26 | TFA_K3_SYSTEM_SUSPEND = "1" | 26 | TFA_K3_SYSTEM_SUSPEND = "1" |