summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@ti.com>2019-08-07 05:02:22 +0000
committerDenys Dmytriyenko <denys@ti.com>2019-08-07 01:50:50 +0000
commit04989ab554202150fae05e90eb0c5d8e0d910ad0 (patch)
treea95fd767efffe6049f18ab52a16f916a7737c7ed
parent29fe4e293861c71f6cf8ea20cdf908a7be5cbc43 (diff)
downloadmeta-ti-04989ab554202150fae05e90eb0c5d8e0d910ad0.tar.gz
ipc-lld-fw: fix ALTERNATIVE use as package-specific
Previous commit, while adding support for another platform, extended ALTERNATIVE variable (which is package-specific) with machine overrides, accidentally dropping the necessary ${PN} suffix in the process. Restore it to make update-alternatives system work again. Signed-off-by: Denys Dmytriyenko <denys@ti.com>
-rw-r--r--recipes-bsp/ipc-lld/ipc-lld-fw_git.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-bsp/ipc-lld/ipc-lld-fw_git.bb b/recipes-bsp/ipc-lld/ipc-lld-fw_git.bb
index dd1f57b3..df992762 100644
--- a/recipes-bsp/ipc-lld/ipc-lld-fw_git.bb
+++ b/recipes-bsp/ipc-lld/ipc-lld-fw_git.bb
@@ -74,11 +74,11 @@ do_install_append_j7-evm() {
74} 74}
75 75
76# Set up names for the firmwares 76# Set up names for the firmwares
77ALTERNATIVE_am65xx = "\ 77ALTERNATIVE_${PN}_am65xx = "\
78 am65x-mcu-r5f0_0-fw \ 78 am65x-mcu-r5f0_0-fw \
79 am65x-mcu-r5f0_1-fw \ 79 am65x-mcu-r5f0_1-fw \
80 " 80 "
81ALTERNATIVE_j7-evm = "\ 81ALTERNATIVE_${PN}_j7-evm = "\
82 j7-mcu-r5f0_0-fw \ 82 j7-mcu-r5f0_0-fw \
83 j7-mcu-r5f0_1-fw \ 83 j7-mcu-r5f0_1-fw \
84 j7-main-r5f0_0-fw \ 84 j7-main-r5f0_0-fw \