From: Ting Liu Date: Fri, 17 Jul 2015 14:15:16 +0000 (+0800) Subject: mux-server: fetch from git instead of local tarball X-Git-Tag: 2.1~525 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=1f8be293277073fff1961c4596d416ca230b9760;p=meta-freescale.git 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 Acked-by: Otavio Salvador Signed-off-by: Otavio Salvador --- diff --git a/meta-fsl-ppc/recipes-virtualization/mux-server/files/mux-server-1.02.tar.gz b/meta-fsl-ppc/recipes-virtualization/mux-server/files/mux-server-1.02.tar.gz deleted file mode 100644 index d8f20147..00000000 Binary files a/meta-fsl-ppc/recipes-virtualization/mux-server/files/mux-server-1.02.tar.gz and /dev/null differ 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 ab9cce1c..e635495e 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 @@ -4,13 +4,16 @@ LICENSE = "LGPL-2.1" # TODO: add a dedicated COPYING file LIC_FILES_CHKSUM = "file://mux_server.c;endline=9;md5=e59eeb0812bb88b7af2d932f2dc22aed" -SRC_URI = "file://mux-server-${PV}.tar.gz;name=mux_server" +SRC_URI = "git://git.freescale.com/ppc/sdk/hypervisor/mux_server.git;branch=master" +SRCREV = "3e4c6a44a81bb5cf2996830e8034d26850f80efc" + +S = "${WORKDIR}/git" EXTRA_OEMAKE='HOSTCC="${CC}"' do_install () { - install -d ${D}${bindir} - install -m 755 mux_server ${D}${bindir} + install -d ${D}${bindir} + install -m 755 mux_server ${D}${bindir} } BBCLASSEXTEND = "native nativesdk"