summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTing Liu <ting.liu@freescale.com>2015-07-17 22:15:16 +0800
committerZhenhua Luo <zhenhua.luo@freescale.com>2015-07-22 17:37:52 +0800
commitc63b764f538af954eb07bdc66d4cfe2a32f0c956 (patch)
tree07098105b68c05ff3a00eedbf3d254bb5f14a211
parent49082434e30786a78484ede09104100ff1508e03 (diff)
downloadmeta-fsl-ppc-c63b764f538af954eb07bdc66d4cfe2a32f0c956.tar.gz
mux-server: fetch from git instead of local tarball
It is hard to track changes when using local tarball, switch to fetch the source from a Git server. Comparing to the tarabal, there are two more changes on git: 3e4c6a4 adjust link order to libpthread a803602 Add COPYING with LGPL license and README file Also fix indent. Signed-off-by: Ting Liu <ting.liu@freescale.com> Acked-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r--recipes-virtualization/mux-server/files/mux-server-1.02.tar.gzbin10021 -> 0 bytes
-rw-r--r--recipes-virtualization/mux-server/mux-server_1.02.bb9
2 files changed, 6 insertions, 3 deletions
diff --git a/recipes-virtualization/mux-server/files/mux-server-1.02.tar.gz b/recipes-virtualization/mux-server/files/mux-server-1.02.tar.gz
deleted file mode 100644
index d8f2014..0000000
--- a/recipes-virtualization/mux-server/files/mux-server-1.02.tar.gz
+++ /dev/null
Binary files differ
diff --git a/recipes-virtualization/mux-server/mux-server_1.02.bb b/recipes-virtualization/mux-server/mux-server_1.02.bb
index ab9cce1..e635495 100644
--- a/recipes-virtualization/mux-server/mux-server_1.02.bb
+++ b/recipes-virtualization/mux-server/mux-server_1.02.bb
@@ -4,13 +4,16 @@ LICENSE = "LGPL-2.1"
4# TODO: add a dedicated COPYING file 4# TODO: add a dedicated COPYING file
5LIC_FILES_CHKSUM = "file://mux_server.c;endline=9;md5=e59eeb0812bb88b7af2d932f2dc22aed" 5LIC_FILES_CHKSUM = "file://mux_server.c;endline=9;md5=e59eeb0812bb88b7af2d932f2dc22aed"
6 6
7SRC_URI = "file://mux-server-${PV}.tar.gz;name=mux_server" 7SRC_URI = "git://git.freescale.com/ppc/sdk/hypervisor/mux_server.git;branch=master"
8SRCREV = "3e4c6a44a81bb5cf2996830e8034d26850f80efc"
9
10S = "${WORKDIR}/git"
8 11
9EXTRA_OEMAKE='HOSTCC="${CC}"' 12EXTRA_OEMAKE='HOSTCC="${CC}"'
10 13
11do_install () { 14do_install () {
12 install -d ${D}${bindir} 15 install -d ${D}${bindir}
13 install -m 755 mux_server ${D}${bindir} 16 install -m 755 mux_server ${D}${bindir}
14} 17}
15 18
16BBCLASSEXTEND = "native nativesdk" 19BBCLASSEXTEND = "native nativesdk"