diff options
author | chunrong guo <b40290@freescale.com> | 2014-05-29 03:25:28 +0000 |
---|---|---|
committer | Zhenhua Luo <zhenhua.luo@freescale.com> | 2014-06-03 18:09:18 +0800 |
commit | 4c9038b08b3937b8c8e22bc65b5d581a70674775 (patch) | |
tree | ddb28b31def3712550d5b76c67a30bddab30c3f7 /recipes-devtools/qemu/files/add-libssh2-options.patch | |
parent | 6257e8ede35948708d11b1d5cda5b7ae78b85c5b (diff) | |
download | meta-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/qemu/files/add-libssh2-options.patch')
-rw-r--r-- | recipes-devtools/qemu/files/add-libssh2-options.patch | 22 |
1 files changed, 22 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 @@ | |||
1 | Upstream-Status: Inappropriate [configuration] | ||
2 | |||
3 | Freescale qemu configure do not include libssh2 options. | ||
4 | In order to configure pass , dummy libssh2 options is added to | ||
5 | freescale qemu configure | ||
6 | |||
7 | Signed-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" | ||