The topaz mux-server is a standalone tool, deploy the binary like
other images like u-boot/kernel/rcw.
Signed-off-by: Ting Liu <ting.liu@freescale.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
EXTRA_OEMAKE='HOSTCC="${CC}"'
+inherit deploy
+
do_install () {
install -d ${D}${bindir}
install -m 755 mux_server ${D}${bindir}
}
+do_deploy() {
+ install -d ${DEPLOYDIR}/hv
+ install -m 755 mux_server ${DEPLOYDIR}/hv/mux_server-${PKGV}-${PKGR}
+ ln -sf mux_server-${PKGV}-${PKGR} ${DEPLOYDIR}/hv/mux_server
+}
+addtask deploy after do_install
+
BBCLASSEXTEND = "native nativesdk"