diff options
author | Andrew Davis <afd@ti.com> | 2025-05-02 16:25:06 -0500 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2025-05-13 11:07:36 -0500 |
commit | b42e4dd5f44f3c70ed4465b2b391153e3bcbb51e (patch) | |
tree | 96ba03bf427c19c92dc37ea8d76388418fc7850d | |
parent | 9ce7ae37b9539dc455e1fcb48c8d163433411301 (diff) | |
download | meta-ti-b42e4dd5f44f3c70ed4465b2b391153e3bcbb51e.tar.gz |
ti-linux-fw: Set INHIBIT_DEFAULT_DEPS
Firmware here are not built, no need for C compiler nor std libs.
Add INHIBIT_DEFAULT_DEPS=1 and remove the same from all recipes
that include this file.
Signed-off-by: Andrew Davis <afd@ti.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
4 files changed, 3 insertions, 6 deletions
diff --git a/meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb b/meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb index a7d15e30..ddb91e99 100644 --- a/meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb +++ b/meta-ti-bsp/recipes-bsp/ti-dm-fw/ti-dm-fw.bb | |||
@@ -7,8 +7,6 @@ COMPATIBLE_MACHINE = "k3" | |||
7 | 7 | ||
8 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 8 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
9 | 9 | ||
10 | INHIBIT_DEFAULT_DEPS = "1" | ||
11 | |||
12 | inherit deploy | 10 | inherit deploy |
13 | inherit update-alternatives | 11 | inherit update-alternatives |
14 | 12 | ||
diff --git a/meta-ti-bsp/recipes-bsp/ti-eth-fw/ti-eth-fw.bb b/meta-ti-bsp/recipes-bsp/ti-eth-fw/ti-eth-fw.bb index e4b6d1de..8037ac6c 100644 --- a/meta-ti-bsp/recipes-bsp/ti-eth-fw/ti-eth-fw.bb +++ b/meta-ti-bsp/recipes-bsp/ti-eth-fw/ti-eth-fw.bb | |||
@@ -7,8 +7,6 @@ COMPATIBLE_MACHINE = "j721e|j7200|j784s4" | |||
7 | 7 | ||
8 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 8 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
9 | 9 | ||
10 | INHIBIT_DEFAULT_DEPS = "1" | ||
11 | |||
12 | inherit update-alternatives | 10 | inherit update-alternatives |
13 | 11 | ||
14 | require recipes-bsp/ti-linux-fw/ti-linux-fw.inc | 12 | require recipes-bsp/ti-linux-fw/ti-linux-fw.inc |
diff --git a/meta-ti-bsp/recipes-bsp/ti-linux-fw/ti-linux-fw.inc b/meta-ti-bsp/recipes-bsp/ti-linux-fw/ti-linux-fw.inc index ba4646be..a6de78ea 100644 --- a/meta-ti-bsp/recipes-bsp/ti-linux-fw/ti-linux-fw.inc +++ b/meta-ti-bsp/recipes-bsp/ti-linux-fw/ti-linux-fw.inc | |||
@@ -43,6 +43,9 @@ INHIBIT_SYSROOT_STRIP = "1" | |||
43 | # This is used to prevent the build system from splitting out the firmware debug info into a separate file | 43 | # This is used to prevent the build system from splitting out the firmware debug info into a separate file |
44 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" | 44 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" |
45 | 45 | ||
46 | # Firmware here are prebuilt with no external dependencies | ||
47 | INHIBIT_DEFAULT_DEPS = "1" | ||
48 | |||
46 | # Disable arch checking as firmware is likely to be a different arch from the Yocto build | 49 | # Disable arch checking as firmware is likely to be a different arch from the Yocto build |
47 | INSANE_SKIP:${PN} += "arch" | 50 | INSANE_SKIP:${PN} += "arch" |
48 | 51 | ||
diff --git a/meta-ti-bsp/recipes-bsp/ti-rtos-fw/ti-rtos-echo-test-fw.bb b/meta-ti-bsp/recipes-bsp/ti-rtos-fw/ti-rtos-echo-test-fw.bb index 86e319c7..13587603 100644 --- a/meta-ti-bsp/recipes-bsp/ti-rtos-fw/ti-rtos-echo-test-fw.bb +++ b/meta-ti-bsp/recipes-bsp/ti-rtos-fw/ti-rtos-echo-test-fw.bb | |||
@@ -7,8 +7,6 @@ COMPATIBLE_MACHINE = "k3" | |||
7 | 7 | ||
8 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 8 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
9 | 9 | ||
10 | INHIBIT_DEFAULT_DEPS = "1" | ||
11 | |||
12 | inherit update-alternatives | 10 | inherit update-alternatives |
13 | 11 | ||
14 | PLAT_SFX = "" | 12 | PLAT_SFX = "" |