summaryrefslogtreecommitdiffstats
path: root/recipes-devtools
diff options
context:
space:
mode:
authorchunrong guo <b40290@freescale.com>2014-05-29 03:25:28 +0000
committerZhenhua Luo <zhenhua.luo@freescale.com>2014-06-03 18:09:18 +0800
commit4c9038b08b3937b8c8e22bc65b5d581a70674775 (patch)
treeddb28b31def3712550d5b76c67a30bddab30c3f7 /recipes-devtools
parent6257e8ede35948708d11b1d5cda5b7ae78b85c5b (diff)
downloadmeta-fsl-ppc-4c9038b08b3937b8c8e22bc65b5d581a70674775.tar.gz
qemu: add libssh2 options in configure
Hello all, Fsl qemu will update 1.7 in July or June. Fsl qemu 1.7 configure options support libssh2. This patch will be retired when fsl qemu updates 1.7 . thanks, chunrong -----Original Message----- From: b40290@freescale.com [mailto:b40290@freescale.com] Sent: Wednesday, May 28, 2014 6:08 PM To: meta-freescale@yoctoproject.org Cc: Liu Ting-B28495; Luo Zhenhua-B19537; Guo Chunrong-B40290 Subject: [meta-fsl-ppc][PATCH v2 ] qemu: add libssh2 options in configure From: Chunrong Guo <B40290@freescale.com> * fix the following error: |ERROR: unknown option --disable-libssh2 Signed-off-by: Chunrong Guo <B40290@freescale.com> Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-devtools')
-rw-r--r--recipes-devtools/qemu/files/add-libssh2-options.patch22
-rw-r--r--recipes-devtools/qemu/qemu_fslgit.bb1
2 files changed, 23 insertions, 0 deletions
diff --git a/recipes-devtools/qemu/files/add-libssh2-options.patch b/recipes-devtools/qemu/files/add-libssh2-options.patch
new file mode 100644
index 0000000..07b9350
--- /dev/null
+++ b/recipes-devtools/qemu/files/add-libssh2-options.patch
@@ -0,0 +1,22 @@
1Upstream-Status: Inappropriate [configuration]
2
3Freescale qemu configure do not include libssh2 options.
4In order to configure pass , dummy libssh2 options is added to
5freescale qemu configure
6
7Signed-off-by: Chunrong Guo <b40290@freescale.com>
8
9
10--- a/configure.old 2014-05-26 12:08:09.000000000 +0800
11+++ b/configure 2014-05-26 12:10:23.000000000 +0800
12@@ -897,6 +897,10 @@
13 ;;
14 --enable-virtio-blk-data-plane) virtio_blk_data_plane="yes"
15 ;;
16+ --disable-libssh2) libssh2="no"
17+ ;;
18+ --enable-libssh2) libssh2="yes"
19+ ;;
20 --disable-gtk) gtk="no"
21 ;;
22 --enable-gtk) gtk="yes"
diff --git a/recipes-devtools/qemu/qemu_fslgit.bb b/recipes-devtools/qemu/qemu_fslgit.bb
index 810794d..eab3db5 100644
--- a/recipes-devtools/qemu/qemu_fslgit.bb
+++ b/recipes-devtools/qemu/qemu_fslgit.bb
@@ -14,6 +14,7 @@ SRC_URI += " \
14 file://0002-docs-Fix-generating-qemu-doc.html-with-texinfo-5.patch \ 14 file://0002-docs-Fix-generating-qemu-doc.html-with-texinfo-5.patch \
15 file://fdt_header.patch \ 15 file://fdt_header.patch \
16 file://add-gtk-options.patch \ 16 file://add-gtk-options.patch \
17 file://add-libssh2-options.patch \
17" 18"
18 19
19S = "${WORKDIR}/git" 20S = "${WORKDIR}/git"