diff options
author | Ting Liu <ting.liu@freescale.com> | 2015-07-17 22:15:16 +0800 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2015-07-28 23:26:57 -0300 |
commit | 1f8be293277073fff1961c4596d416ca230b9760 (patch) | |
tree | a2391c4bbccbc022670e1c985a5bdd1022aa57d1 | |
parent | caf3ba77c31c3f8579871aa08ac562d839a6eb33 (diff) | |
download | meta-freescale-1f8be293277073fff1961c4596d416ca230b9760.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>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r-- | meta-fsl-ppc/recipes-virtualization/mux-server/files/mux-server-1.02.tar.gz | bin | 10021 -> 0 bytes | |||
-rw-r--r-- | meta-fsl-ppc/recipes-virtualization/mux-server/mux-server_1.02.bb | 9 |
2 files changed, 6 insertions, 3 deletions
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 --- a/meta-fsl-ppc/recipes-virtualization/mux-server/files/mux-server-1.02.tar.gz +++ /dev/null | |||
Binary files 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" | |||
4 | # TODO: add a dedicated COPYING file | 4 | # TODO: add a dedicated COPYING file |
5 | LIC_FILES_CHKSUM = "file://mux_server.c;endline=9;md5=e59eeb0812bb88b7af2d932f2dc22aed" | 5 | LIC_FILES_CHKSUM = "file://mux_server.c;endline=9;md5=e59eeb0812bb88b7af2d932f2dc22aed" |
6 | 6 | ||
7 | SRC_URI = "file://mux-server-${PV}.tar.gz;name=mux_server" | 7 | SRC_URI = "git://git.freescale.com/ppc/sdk/hypervisor/mux_server.git;branch=master" |
8 | SRCREV = "3e4c6a44a81bb5cf2996830e8034d26850f80efc" | ||
9 | |||
10 | S = "${WORKDIR}/git" | ||
8 | 11 | ||
9 | EXTRA_OEMAKE='HOSTCC="${CC}"' | 12 | EXTRA_OEMAKE='HOSTCC="${CC}"' |
10 | 13 | ||
11 | do_install () { | 14 | do_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 | ||
16 | BBCLASSEXTEND = "native nativesdk" | 19 | BBCLASSEXTEND = "native nativesdk" |