From 771673de5b2a40aed9ef950bb5eb2ed754b1bcfb Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Wed, 9 Mar 2016 04:37:42 +0000 Subject: ipumm-fw: use update-alternatives to manage FW symlink Signed-off-by: Denys Dmytriyenko --- recipes-bsp/ipumm-fw/ipumm-fw_git.bb | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'recipes-bsp') diff --git a/recipes-bsp/ipumm-fw/ipumm-fw_git.bb b/recipes-bsp/ipumm-fw/ipumm-fw_git.bb index 022d3074..f4155998 100644 --- a/recipes-bsp/ipumm-fw/ipumm-fw_git.bb +++ b/recipes-bsp/ipumm-fw/ipumm-fw_git.bb @@ -26,6 +26,8 @@ PV = "3.00.10.00" require recipes-ti/includes/ti-paths.inc require recipes-ti/includes/ti-staging.inc +inherit update-alternatives + DEPENDS = "ti-xdctools ti-sysbios ti-codec-engine ti-framework-components ti-xdais ti-ccsv6-native ti-ipc-rtos" export HWVERSION="ES10" @@ -53,10 +55,15 @@ do_compile() { TARGET = "dra7-ipu2-fw.xem4" do_install() { - mkdir -p ${D}${base_libdir}/firmware - cp ${S}/${TARGET} ${D}${base_libdir}/firmware/${TARGET} + install -d ${D}${base_libdir}/firmware + install -m 0644 ${S}/${TARGET} ${D}${base_libdir}/firmware/${TARGET}.${BPN} } -FILES_${PN} += "${base_libdir}/firmware/${TARGET}" +ALTERNATIVE_${PN} = "dra7-ipu2-fw.xem4" +ALTERNATIVE_LINK_NAME[dra7-ipu2-fw.xem4] = "${base_libdir}/firmware/${TARGET}" +ALTERNATIVE_TARGET[dra7-ipu2-fw.xem4] = "${base_libdir}/firmware/${TARGET}.${BPN}" +ALTERNATIVE_PRIORITY = "20" + +FILES_${PN} += "${base_libdir}/firmware/*" -PR = "r0" +PR = "r1" -- cgit v1.2.3-54-g00ecf