summaryrefslogtreecommitdiffstats
path: root/meta-fsl-ppc
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
commitc6f9a95ace920a2c0b51191d08f3cd2b9443e669 (patch)
tree2918b3f5ff2a88def3599826e979f012f7c7160c /meta-fsl-ppc
parentc2e03250a48d136b5b487877fb34e40032c7c6c4 (diff)
downloadmeta-freescale-c6f9a95ace920a2c0b51191d08f3cd2b9443e669.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 'meta-fsl-ppc')
-rw-r--r--meta-fsl-ppc/recipes-devtools/qemu/files/add-libssh2-options.patch22
-rw-r--r--meta-fsl-ppc/recipes-devtools/qemu/qemu_fslgit.bb1
2 files changed, 23 insertions, 0 deletions
diff --git a/meta-fsl-ppc/recipes-devtools/qemu/files/add-libssh2-options.patch b/meta-fsl-ppc/recipes-devtools/qemu/files/add-libssh2-options.patch
new file mode 100644
index 000000000..07b9350e4
--- /dev/null
+++ b/meta-fsl-ppc/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/meta-fsl-ppc/recipes-devtools/qemu/qemu_fslgit.bb b/meta-fsl-ppc/recipes-devtools/qemu/qemu_fslgit.bb
index 810794d57..eab3db5d3 100644
--- a/meta-fsl-ppc/recipes-devtools/qemu/qemu_fslgit.bb
+++ b/meta-fsl-ppc/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"