diff options
| author | Ting Liu <b28495@freescale.com> | 2013-07-19 03:21:28 +0000 |
|---|---|---|
| committer | Zhenhua Luo <zhenhua.luo@freescale.com> | 2013-07-24 16:59:04 +0800 |
| commit | 5d98580e7b366ef25e917b3c446308de28c8cbd4 (patch) | |
| tree | 3776a3d58fbfe884476bc06b3d115943e044b284 /recipes-devtools | |
| parent | bbedd22907e1c5f45b07179e22b567bceb3596d5 (diff) | |
| download | meta-fsl-ppc-5d98580e7b366ef25e917b3c446308de28c8cbd4.tar.gz | |
qemu_fslgit: backport 2 patches to fix build with texinfo-5
(From OE-Core rev: af65260dbf17fcd47b6630db473d95f2f3225d68)
Fix the below error:
|./qemu-options.texi:1521: unknown command `list'
|./qemu-options.texi:1521: table requires an argument: the formatter for @item
|./qemu-options.texi:1521: warning: @table has text but no @item
Signed-off-by: Ting Liu <b28495@freescale.com>
Diffstat (limited to 'recipes-devtools')
3 files changed, 260 insertions, 1 deletions
diff --git a/recipes-devtools/qemu/files/0001-doc-Fix-texinfo-table-markup-in-qemu-options.hx.patch b/recipes-devtools/qemu/files/0001-doc-Fix-texinfo-table-markup-in-qemu-options.hx.patch new file mode 100644 index 0000000..30daf29 --- /dev/null +++ b/recipes-devtools/qemu/files/0001-doc-Fix-texinfo-table-markup-in-qemu-options.hx.patch | |||
| @@ -0,0 +1,201 @@ | |||
| 1 | From 9a7146ca91c04d05af36684d8b3ca79c1254abc2 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Markus Armbruster <armbru@redhat.com> | ||
| 3 | Date: Wed, 13 Feb 2013 19:49:40 +0100 | ||
| 4 | Subject: [PATCH 1/2] doc: Fix texinfo @table markup in qemu-options.hx | ||
| 5 | |||
| 6 | End tables before headings, start new ones afterwards. Fixes | ||
| 7 | incorrect indentation of headings "File system options" and "Virtual | ||
| 8 | File system pass-through options" in manual page and qemu-doc. | ||
| 9 | |||
| 10 | Normalize markup some to increase chances it survives future edits. | ||
| 11 | |||
| 12 | Upstream-Status: Backport | ||
| 13 | |||
| 14 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||
| 15 | Signed-off-by: Markus Armbruster <armbru@redhat.com> | ||
| 16 | Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
| 17 | Message-id: 1360781383-28635-5-git-send-email-armbru@redhat.com | ||
| 18 | Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> | ||
| 19 | --- | ||
| 20 | qemu-options.hx | 56 +++++++++++++++++++++++++++++++++++++------------------- | ||
| 21 | 1 file changed, 37 insertions(+), 19 deletions(-) | ||
| 22 | |||
| 23 | diff --git a/qemu-options.hx b/qemu-options.hx | ||
| 24 | index 9d7131a..54bd92a 100644 | ||
| 25 | --- a/qemu-options.hx | ||
| 26 | +++ b/qemu-options.hx | ||
| 27 | @@ -537,13 +537,15 @@ STEXI | ||
| 28 | @end table | ||
| 29 | ETEXI | ||
| 30 | |||
| 31 | -DEF("usb", 0, QEMU_OPTION_usb, | ||
| 32 | - "-usb enable the USB driver (will be the default soon)\n", | ||
| 33 | - QEMU_ARCH_ALL) | ||
| 34 | STEXI | ||
| 35 | USB options: | ||
| 36 | @table @option | ||
| 37 | +ETEXI | ||
| 38 | |||
| 39 | +DEF("usb", 0, QEMU_OPTION_usb, | ||
| 40 | + "-usb enable the USB driver (will be the default soon)\n", | ||
| 41 | + QEMU_ARCH_ALL) | ||
| 42 | +STEXI | ||
| 43 | @item -usb | ||
| 44 | @findex -usb | ||
| 45 | Enable the USB driver (will be the default soon) | ||
| 46 | @@ -610,9 +612,15 @@ possible drivers and properties, use @code{-device help} and | ||
| 47 | @code{-device @var{driver},help}. | ||
| 48 | ETEXI | ||
| 49 | |||
| 50 | +STEXI | ||
| 51 | +@end table | ||
| 52 | +ETEXI | ||
| 53 | DEFHEADING() | ||
| 54 | |||
| 55 | DEFHEADING(File system options:) | ||
| 56 | +STEXI | ||
| 57 | +@table @option | ||
| 58 | +ETEXI | ||
| 59 | |||
| 60 | DEF("fsdev", HAS_ARG, QEMU_OPTION_fsdev, | ||
| 61 | "-fsdev fsdriver,id=id[,path=path,][security_model={mapped-xattr|mapped-file|passthrough|none}]\n" | ||
| 62 | @@ -676,9 +684,15 @@ Specifies the tag name to be used by the guest to mount this export point | ||
| 63 | |||
| 64 | ETEXI | ||
| 65 | |||
| 66 | +STEXI | ||
| 67 | +@end table | ||
| 68 | +ETEXI | ||
| 69 | DEFHEADING() | ||
| 70 | |||
| 71 | DEFHEADING(Virtual File system pass-through options:) | ||
| 72 | +STEXI | ||
| 73 | +@table @option | ||
| 74 | +ETEXI | ||
| 75 | |||
| 76 | DEF("virtfs", HAS_ARG, QEMU_OPTION_virtfs, | ||
| 77 | "-virtfs local,path=path,mount_tag=tag,security_model=[mapped-xattr|mapped-file|passthrough|none]\n" | ||
| 78 | @@ -769,11 +783,9 @@ ETEXI | ||
| 79 | STEXI | ||
| 80 | @end table | ||
| 81 | ETEXI | ||
| 82 | - | ||
| 83 | DEFHEADING() | ||
| 84 | |||
| 85 | DEFHEADING(Display options:) | ||
| 86 | - | ||
| 87 | STEXI | ||
| 88 | @table @option | ||
| 89 | ETEXI | ||
| 90 | @@ -1215,7 +1227,6 @@ ETEXI | ||
| 91 | STEXI | ||
| 92 | @end table | ||
| 93 | ETEXI | ||
| 94 | - | ||
| 95 | ARCHHEADING(, QEMU_ARCH_I386) | ||
| 96 | |||
| 97 | ARCHHEADING(i386 target only:, QEMU_ARCH_I386) | ||
| 98 | @@ -1301,10 +1312,10 @@ Specify SMBIOS type 0 fields | ||
| 99 | Specify SMBIOS type 1 fields | ||
| 100 | ETEXI | ||
| 101 | |||
| 102 | -DEFHEADING() | ||
| 103 | STEXI | ||
| 104 | @end table | ||
| 105 | ETEXI | ||
| 106 | +DEFHEADING() | ||
| 107 | |||
| 108 | DEFHEADING(Network options:) | ||
| 109 | STEXI | ||
| 110 | @@ -1718,13 +1729,19 @@ libpcap, so it can be analyzed with tools such as tcpdump or Wireshark. | ||
| 111 | Indicate that no network devices should be configured. It is used to | ||
| 112 | override the default configuration (@option{-net nic -net user}) which | ||
| 113 | is activated if no @option{-net} options are provided. | ||
| 114 | +ETEXI | ||
| 115 | |||
| 116 | +STEXI | ||
| 117 | @end table | ||
| 118 | ETEXI | ||
| 119 | - | ||
| 120 | DEFHEADING() | ||
| 121 | |||
| 122 | DEFHEADING(Character device options:) | ||
| 123 | +STEXI | ||
| 124 | + | ||
| 125 | +The general form of a character device option is: | ||
| 126 | +@table @option | ||
| 127 | +ETEXI | ||
| 128 | |||
| 129 | DEF("chardev", HAS_ARG, QEMU_OPTION_chardev, | ||
| 130 | "-chardev null,id=id[,mux=on|off]\n" | ||
| 131 | @@ -1766,10 +1783,6 @@ DEF("chardev", HAS_ARG, QEMU_OPTION_chardev, | ||
| 132 | ) | ||
| 133 | |||
| 134 | STEXI | ||
| 135 | - | ||
| 136 | -The general form of a character device option is: | ||
| 137 | -@table @option | ||
| 138 | - | ||
| 139 | @item -chardev @var{backend} ,id=@var{id} [,mux=on|off] [,@var{options}] | ||
| 140 | @findex -chardev | ||
| 141 | Backend is one of: | ||
| 142 | @@ -1990,14 +2003,15 @@ Connect to a spice virtual machine channel, such as vdiport. | ||
| 143 | |||
| 144 | Connect to a spice port, allowing a Spice client to handle the traffic | ||
| 145 | identified by a name (preferably a fqdn). | ||
| 146 | +ETEXI | ||
| 147 | |||
| 148 | +STEXI | ||
| 149 | @end table | ||
| 150 | ETEXI | ||
| 151 | - | ||
| 152 | DEFHEADING() | ||
| 153 | |||
| 154 | -STEXI | ||
| 155 | DEFHEADING(Device URL Syntax:) | ||
| 156 | +STEXI | ||
| 157 | |||
| 158 | In addition to using normal file images for the emulated storage devices, | ||
| 159 | QEMU can also use networked resources such as iSCSI devices. These are | ||
| 160 | @@ -2113,10 +2127,16 @@ qemu-system-x86_84 --drive file=gluster://192.0.2.1/testvol/a.img | ||
| 161 | @end example | ||
| 162 | |||
| 163 | See also @url{http://www.gluster.org}. | ||
| 164 | +ETEXI | ||
| 165 | + | ||
| 166 | +STEXI | ||
| 167 | @end table | ||
| 168 | ETEXI | ||
| 169 | |||
| 170 | DEFHEADING(Bluetooth(R) options:) | ||
| 171 | +STEXI | ||
| 172 | +@table @option | ||
| 173 | +ETEXI | ||
| 174 | |||
| 175 | DEF("bt", HAS_ARG, QEMU_OPTION_bt, \ | ||
| 176 | "-bt hci,null dumb bluetooth HCI - doesn't respond to commands\n" \ | ||
| 177 | @@ -2130,8 +2150,6 @@ DEF("bt", HAS_ARG, QEMU_OPTION_bt, \ | ||
| 178 | " emulate a bluetooth device 'dev' in scatternet 'n'\n", | ||
| 179 | QEMU_ARCH_ALL) | ||
| 180 | STEXI | ||
| 181 | -@table @option | ||
| 182 | - | ||
| 183 | @item -bt hci[...] | ||
| 184 | @findex -bt | ||
| 185 | Defines the function of the corresponding Bluetooth HCI. -bt options | ||
| 186 | @@ -2183,9 +2201,11 @@ currently: | ||
| 187 | @item keyboard | ||
| 188 | Virtual wireless keyboard implementing the HIDP bluetooth profile. | ||
| 189 | @end table | ||
| 190 | -@end table | ||
| 191 | ETEXI | ||
| 192 | |||
| 193 | +STEXI | ||
| 194 | +@end table | ||
| 195 | +ETEXI | ||
| 196 | DEFHEADING() | ||
| 197 | |||
| 198 | DEFHEADING(Linux/Multiboot boot specific:) | ||
| 199 | -- | ||
| 200 | 1.8.1.5 | ||
| 201 | |||
diff --git a/recipes-devtools/qemu/files/0002-docs-Fix-generating-qemu-doc.html-with-texinfo-5.patch b/recipes-devtools/qemu/files/0002-docs-Fix-generating-qemu-doc.html-with-texinfo-5.patch new file mode 100644 index 0000000..cabbf0e --- /dev/null +++ b/recipes-devtools/qemu/files/0002-docs-Fix-generating-qemu-doc.html-with-texinfo-5.patch | |||
| @@ -0,0 +1,54 @@ | |||
| 1 | From f983d4978e1c49ee936ad52bf2de0c531420f5f8 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Cole Robinson <crobinso@redhat.com> | ||
| 3 | Date: Wed, 20 Feb 2013 07:20:31 +0000 | ||
| 4 | Subject: [PATCH 2/2] docs: Fix generating qemu-doc.html with texinfo 5 | ||
| 5 | |||
| 6 | LC_ALL=C makeinfo --no-headers --no-split --number-sections --html qemu-doc.texi -o qemu-doc.html | ||
| 7 | ./qemu-options.texi:1521: unknown command `list' | ||
| 8 | ./qemu-options.texi:1521: table requires an argument: the formatter for @item | ||
| 9 | ./qemu-options.texi:1521: warning: @table has text but no @item | ||
| 10 | |||
| 11 | Upstream-Status: Pending | ||
| 12 | http://patchwork.ozlabs.org/patch/222131/ | ||
| 13 | |||
| 14 | CC: qemu-stable@nongnu.org | ||
| 15 | Signed-off-by: Cole Robinson <crobinso@redhat.com> | ||
| 16 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||
| 17 | Reviewed-by: Markus Armbruster <armbru@redhat.com> | ||
| 18 | --- | ||
| 19 | qemu-options.hx | 19 +++++++------------ | ||
| 20 | 1 file changed, 7 insertions(+), 12 deletions(-) | ||
| 21 | |||
| 22 | diff --git a/qemu-options.hx b/qemu-options.hx | ||
| 23 | index 54bd92a..5d2d9b8 100644 | ||
| 24 | --- a/qemu-options.hx | ||
| 25 | +++ b/qemu-options.hx | ||
| 26 | @@ -2089,18 +2089,13 @@ QEMU supports using either local sheepdog devices or remote networked | ||
| 27 | devices. | ||
| 28 | |||
| 29 | Syntax for specifying a sheepdog device | ||
| 30 | -@table @list | ||
| 31 | -``sheepdog:<vdiname>'' | ||
| 32 | - | ||
| 33 | -``sheepdog:<vdiname>:<snapid>'' | ||
| 34 | - | ||
| 35 | -``sheepdog:<vdiname>:<tag>'' | ||
| 36 | - | ||
| 37 | -``sheepdog:<host>:<port>:<vdiname>'' | ||
| 38 | - | ||
| 39 | -``sheepdog:<host>:<port>:<vdiname>:<snapid>'' | ||
| 40 | - | ||
| 41 | -``sheepdog:<host>:<port>:<vdiname>:<tag>'' | ||
| 42 | +@table @code | ||
| 43 | +@item sheepdog:<vdiname> | ||
| 44 | +@item sheepdog:<vdiname>:<snapid> | ||
| 45 | +@item sheepdog:<vdiname>:<tag> | ||
| 46 | +@item sheepdog:<host>:<port>:<vdiname> | ||
| 47 | +@item sheepdog:<host>:<port>:<vdiname>:<snapid> | ||
| 48 | +@item sheepdog:<host>:<port>:<vdiname>:<tag> | ||
| 49 | @end table | ||
| 50 | |||
| 51 | Example | ||
| 52 | -- | ||
| 53 | 1.8.1.5 | ||
| 54 | |||
diff --git a/recipes-devtools/qemu/qemu_fslgit.bb b/recipes-devtools/qemu/qemu_fslgit.bb index e3bb276..921bf2f 100644 --- a/recipes-devtools/qemu/qemu_fslgit.bb +++ b/recipes-devtools/qemu/qemu_fslgit.bb | |||
| @@ -9,7 +9,11 @@ PV = "1.4+fsl" | |||
| 9 | SRC_URI = "git://git.freescale.com/ppc/sdk/qemu.git" | 9 | SRC_URI = "git://git.freescale.com/ppc/sdk/qemu.git" |
| 10 | SRCREV = "8713c58725df407dbbedb48fa315248d0100720c" | 10 | SRCREV = "8713c58725df407dbbedb48fa315248d0100720c" |
| 11 | 11 | ||
| 12 | SRC_URI += "file://fdt_header.patch" | 12 | SRC_URI += " \ |
| 13 | file://0001-doc-Fix-texinfo-table-markup-in-qemu-options.hx.patch \ | ||
| 14 | file://0002-docs-Fix-generating-qemu-doc.html-with-texinfo-5.patch \ | ||
| 15 | file://fdt_header.patch \ | ||
| 16 | " | ||
| 13 | 17 | ||
| 14 | S = "${WORKDIR}/git" | 18 | S = "${WORKDIR}/git" |
| 15 | 19 | ||
