summaryrefslogtreecommitdiffstats
path: root/recipes-devtools
diff options
context:
space:
mode:
authorChunrong Guo <B40290@freescale.com>2013-12-12 11:59:59 +0800
committerZhenhua Luo <zhenhua.luo@freescale.com>2013-12-14 13:29:24 +0800
commit1449b0a14fbf30e8011e775d8bd9e7eb5b518d9d (patch)
treec42335460dcad1c88fdb25e2beab693a5e5feace /recipes-devtools
parent2335375752024972b11efe32d94f6413caaa6bfa (diff)
downloadmeta-fsl-ppc-1449b0a14fbf30e8011e775d8bd9e7eb5b518d9d.tar.gz
qemu: add gtk options in configure
* fix the following error: |ERROR: unknown option --disable-gtk Signed-off-by: Chunrong Guo <B40290@freescale.com>
Diffstat (limited to 'recipes-devtools')
-rw-r--r--recipes-devtools/qemu/files/add-gtk-options.patch13
-rw-r--r--recipes-devtools/qemu/qemu_fslgit.bb1
2 files changed, 14 insertions, 0 deletions
diff --git a/recipes-devtools/qemu/files/add-gtk-options.patch b/recipes-devtools/qemu/files/add-gtk-options.patch
new file mode 100644
index 0000000..d8522de
--- /dev/null
+++ b/recipes-devtools/qemu/files/add-gtk-options.patch
@@ -0,0 +1,13 @@
1--- a/configure.old 2013-12-11 21:24:44.422276752 -0600
2+++ b/configure 2013-12-11 21:27:26.954335983 -0600
3@@ -897,6 +897,10 @@
4 ;;
5 --enable-virtio-blk-data-plane) virtio_blk_data_plane="yes"
6 ;;
7+ --disable-gtk) gtk="no"
8+ ;;
9+ --enable-gtk) gtk="yes"
10+ ;;
11 *) echo "ERROR: unknown option $opt"; show_help="yes"
12 ;;
13 esac
diff --git a/recipes-devtools/qemu/qemu_fslgit.bb b/recipes-devtools/qemu/qemu_fslgit.bb
index 356103d..98c67ca 100644
--- a/recipes-devtools/qemu/qemu_fslgit.bb
+++ b/recipes-devtools/qemu/qemu_fslgit.bb
@@ -14,6 +14,7 @@ SRC_URI += " \
14 file://0001-doc-Fix-texinfo-table-markup-in-qemu-options.hx.patch \ 14 file://0001-doc-Fix-texinfo-table-markup-in-qemu-options.hx.patch \
15 file://0002-docs-Fix-generating-qemu-doc.html-with-texinfo-5.patch \ 15 file://0002-docs-Fix-generating-qemu-doc.html-with-texinfo-5.patch \
16 file://fdt_header.patch \ 16 file://fdt_header.patch \
17 file://add-gtk-options.patch \
17" 18"
18 19
19S = "${WORKDIR}/git" 20S = "${WORKDIR}/git"