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: [email protected] [mailto:[email protected]] Sent: Wednesday, May 28, 2014 6:08 PM To: [email protected] 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 <[email protected]> * fix the following error: |ERROR: unknown option --disable-libssh2 Signed-off-by: Chunrong Guo <[email protected]> --- .../qemu/files/add-libssh2-options.patch | 22 ++++++++++++++++++++++ recipes-devtools/qemu/qemu_fslgit.bb | 1 + 2 files changed, 23 insertions(+) create mode 100644 recipes-devtools/qemu/files/add-libssh2-options.patch 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 @@ +Upstream-Status: Inappropriate [configuration] + +Freescale qemu configure do not include libssh2 options. +In order to configure pass , dummy libssh2 options is added to +freescale qemu configure + +Signed-off-by: Chunrong Guo <[email protected]> + + +--- a/configure.old 2014-05-26 12:08:09.000000000 +0800 ++++ b/configure 2014-05-26 12:10:23.000000000 +0800 +@@ -897,6 +897,10 @@ + ;; + --enable-virtio-blk-data-plane) virtio_blk_data_plane="yes" + ;; ++ --disable-libssh2) libssh2="no" ++ ;; ++ --enable-libssh2) libssh2="yes" ++ ;; + --disable-gtk) gtk="no" + ;; + --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 += " \ file://0002-docs-Fix-generating-qemu-doc.html-with-texinfo-5.patch \ file://fdt_header.patch \ file://add-gtk-options.patch \ + file://add-libssh2-options.patch \ " S = "${WORKDIR}/git" -- 1.9.2 -- _______________________________________________ meta-freescale mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-freescale
