diff options
author | Ting Liu <ting.liu@freescale.com> | 2015-07-17 22:10:24 +0800 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2015-07-28 23:26:57 -0300 |
commit | 9bc3a0bab3e380c31cc9d64cd5d337b0a349cc5b (patch) | |
tree | 25898e817e8feee5e4f81de4e5ac06e0dc5f41d5 | |
parent | 6e7f6704aeac397a8104c9d16eb1a7d8b7c48f3a (diff) | |
download | meta-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>
-rw-r--r-- | meta-fsl-ppc/recipes-virtualization/mux-server/mux-server_1.02.bb | 9 |
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 | ||
11 | EXTRA_OEMAKE='HOSTCC="${CC}"' | 11 | EXTRA_OEMAKE='HOSTCC="${CC}"' |
12 | 12 | ||
13 | inherit deploy | ||
14 | |||
13 | do_install () { | 15 | do_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 | ||
20 | do_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 | } | ||
25 | addtask deploy after do_install | ||
26 | |||
18 | BBCLASSEXTEND = "native nativesdk" | 27 | BBCLASSEXTEND = "native nativesdk" |