From 1f8be293277073fff1961c4596d416ca230b9760 Mon Sep 17 00:00:00 2001 From: Ting Liu Date: Fri, 17 Jul 2015 22:15:16 +0800 Subject: 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 --- .../mux-server/files/mux-server-1.02.tar.gz | Bin 10021 -> 0 bytes .../mux-server/mux-server_1.02.bb | 9 ++++++--- 2 files changed, 6 insertions(+), 3 deletions(-) delete mode 100644 meta-fsl-ppc/recipes-virtualization/mux-server/files/mux-server-1.02.tar.gz 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 d8f201476..000000000 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 ab9cce1cf..e635495e9 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" -- cgit v1.2.3-54-g00ecf