summaryrefslogtreecommitdiffstats
path: root/meta-fsl-ppc
diff options
context:
space:
mode:
authorTing Liu <ting.liu@freescale.com>2015-07-17 22:10:24 +0800
committerOtavio Salvador <otavio@ossystems.com.br>2015-07-28 23:26:57 -0300
commit9bc3a0bab3e380c31cc9d64cd5d337b0a349cc5b (patch)
tree25898e817e8feee5e4f81de4e5ac06e0dc5f41d5 /meta-fsl-ppc
parent6e7f6704aeac397a8104c9d16eb1a7d8b7c48f3a (diff)
downloadmeta-freescale-9bc3a0bab3e380c31cc9d64cd5d337b0a349cc5b.tar.gz
mux-server: deploy the binary as it is standalone
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>
Diffstat (limited to 'meta-fsl-ppc')
-rw-r--r--meta-fsl-ppc/recipes-virtualization/mux-server/mux-server_1.02.bb9
1 files changed, 9 insertions, 0 deletions
diff --git a/meta-fsl-ppc/recipes-virtualization/mux-server/mux-server_1.02.bb b/meta-fsl-ppc/recipes-virtualization/mux-server/mux-server_1.02.bb
index 5382f232..744a84c2 100644
--- a/meta-fsl-ppc/recipes-virtualization/mux-server/mux-server_1.02.bb
+++ b/meta-fsl-ppc/recipes-virtualization/mux-server/mux-server_1.02.bb
@@ -10,9 +10,18 @@ S = "${WORKDIR}/git"
10 10
11EXTRA_OEMAKE='HOSTCC="${CC}"' 11EXTRA_OEMAKE='HOSTCC="${CC}"'
12 12
13inherit deploy
14
13do_install () { 15do_install () {
14 install -d ${D}${bindir} 16 install -d ${D}${bindir}
15 install -m 755 mux_server ${D}${bindir} 17 install -m 755 mux_server ${D}${bindir}
16} 18}
17 19
20do_deploy() {
21 install -d ${DEPLOYDIR}/hv
22 install -m 755 mux_server ${DEPLOYDIR}/hv/mux_server-${PKGV}-${PKGR}
23 ln -sf mux_server-${PKGV}-${PKGR} ${DEPLOYDIR}/hv/mux_server
24}
25addtask deploy after do_install
26
18BBCLASSEXTEND = "native nativesdk" 27BBCLASSEXTEND = "native nativesdk"