* [PATCH v2 0/2] Texi cleanup @ 2020-10-01 17:35 Yonggang Luo 2020-10-01 17:35 ` [PATCH v2 1/2] doc: Remove texi referenced in qemu-img-cmds.hx and target/i386/cpu.c Yonggang Luo 0 siblings, 1 reply; 4+ messages in thread From: Yonggang Luo @ 2020-10-01 17:35 UTC (permalink / raw) To: qemu-devel; +Cc: Kevin Wolf, Peter Maydell, Yonggang Luo, QEMU Trivial Texi cleanup V1-V2 Fixes with doc: Remove texi referenced in qemu-img-cmds.hx and target/i386/cpu.c Yonggang Luo (2): doc: Remove texi referenced in qemu-img-cmds.hx and target/i386/cpu.c doc: remove hxtool-conv.pl qemu-img-cmds.hx | 2 +- scripts/hxtool-conv.pl | 137 ----------------------------------------- target/i386/cpu.c | 2 +- 3 files changed, 2 insertions(+), 139 deletions(-) delete mode 100755 scripts/hxtool-conv.pl -- 2.28.0.windows.1 ^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 1/2] doc: Remove texi referenced in qemu-img-cmds.hx and target/i386/cpu.c 2020-10-01 17:35 [PATCH v2 0/2] Texi cleanup Yonggang Luo @ 2020-10-01 17:35 ` Yonggang Luo 2020-10-02 5:15 ` Markus Armbruster 0 siblings, 1 reply; 4+ messages in thread From: Yonggang Luo @ 2020-10-01 17:35 UTC (permalink / raw) To: qemu-devel; +Cc: Kevin Wolf, Peter Maydell, Yonggang Luo, QEMU Trivial There is no texi document anymore Signed-off-by: Yonggang Luo <luoyonggang@gmail.com> --- qemu-img-cmds.hx | 2 +- target/i386/cpu.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qemu-img-cmds.hx b/qemu-img-cmds.hx index b89c019b76..cab8234235 100644 --- a/qemu-img-cmds.hx +++ b/qemu-img-cmds.hx @@ -1,5 +1,5 @@ HXCOMM Keep the list of subcommands sorted by name. -HXCOMM Use DEFHEADING() to define headings in both help text and texi +HXCOMM Use DEFHEADING() to define headings in both help text and rST HXCOMM Text between SRST and ERST are copied to rST version and HXCOMM discarded from C version HXCOMM DEF(command, callback, arg_string) is used to construct diff --git a/target/i386/cpu.c b/target/i386/cpu.c index f37eb7b675..f8231f56b6 100644 --- a/target/i386/cpu.c +++ b/target/i386/cpu.c @@ -4127,7 +4127,7 @@ static PropValue tcg_default_props[] = { * We resolve CPU model aliases using -v1 when using "-machine * none", but this is just for compatibility while libvirt isn't * adapted to resolve CPU model versions before creating VMs. - * See "Runnability guarantee of CPU models" at * qemu-deprecated.texi. + * See "Runnability guarantee of CPU models" at * deprecated.rst. */ X86CPUVersion default_cpu_version = 1; -- 2.28.0.windows.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2 1/2] doc: Remove texi referenced in qemu-img-cmds.hx and target/i386/cpu.c 2020-10-01 17:35 ` [PATCH v2 1/2] doc: Remove texi referenced in qemu-img-cmds.hx and target/i386/cpu.c Yonggang Luo @ 2020-10-02 5:15 ` Markus Armbruster 2020-10-02 8:18 ` 罗勇刚(Yonggang Luo) 0 siblings, 1 reply; 4+ messages in thread From: Markus Armbruster @ 2020-10-02 5:15 UTC (permalink / raw) To: Yonggang Luo; +Cc: Kevin Wolf, Peter Maydell, QEMU Trivial, qemu-devel Yonggang Luo <luoyonggang@gmail.com> writes: > There is no texi document anymore > > Signed-off-by: Yonggang Luo <luoyonggang@gmail.com> > --- > qemu-img-cmds.hx | 2 +- > target/i386/cpu.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/qemu-img-cmds.hx b/qemu-img-cmds.hx > index b89c019b76..cab8234235 100644 > --- a/qemu-img-cmds.hx > +++ b/qemu-img-cmds.hx > @@ -1,5 +1,5 @@ > HXCOMM Keep the list of subcommands sorted by name. > -HXCOMM Use DEFHEADING() to define headings in both help text and texi > +HXCOMM Use DEFHEADING() to define headings in both help text and rST > HXCOMM Text between SRST and ERST are copied to rST version and > HXCOMM discarded from C version > HXCOMM DEF(command, callback, arg_string) is used to construct > diff --git a/target/i386/cpu.c b/target/i386/cpu.c > index f37eb7b675..f8231f56b6 100644 > --- a/target/i386/cpu.c > +++ b/target/i386/cpu.c > @@ -4127,7 +4127,7 @@ static PropValue tcg_default_props[] = { > * We resolve CPU model aliases using -v1 when using "-machine > * none", but this is just for compatibility while libvirt isn't > * adapted to resolve CPU model versions before creating VMs. > - * See "Runnability guarantee of CPU models" at * qemu-deprecated.texi. > + * See "Runnability guarantee of CPU models" at * deprecated.rst. > */ > X86CPUVersion default_cpu_version = 1; Duplicates my "[PATCH 0/2] Update leftover comments that mention Texinfo", which Laurent has queued. ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2 1/2] doc: Remove texi referenced in qemu-img-cmds.hx and target/i386/cpu.c 2020-10-02 5:15 ` Markus Armbruster @ 2020-10-02 8:18 ` 罗勇刚(Yonggang Luo) 0 siblings, 0 replies; 4+ messages in thread From: 罗勇刚(Yonggang Luo) @ 2020-10-02 8:18 UTC (permalink / raw) To: Markus Armbruster; +Cc: Kevin Wolf, Peter Maydell, QEMU Trivial, qemu-level [-- Attachment #1: Type: text/plain, Size: 1770 bytes --] OK, then skip this On Fri, Oct 2, 2020 at 1:15 PM Markus Armbruster <armbru@redhat.com> wrote: > > Yonggang Luo <luoyonggang@gmail.com> writes: > > > There is no texi document anymore > > > > Signed-off-by: Yonggang Luo <luoyonggang@gmail.com> > > --- > > qemu-img-cmds.hx | 2 +- > > target/i386/cpu.c | 2 +- > > 2 files changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/qemu-img-cmds.hx b/qemu-img-cmds.hx > > index b89c019b76..cab8234235 100644 > > --- a/qemu-img-cmds.hx > > +++ b/qemu-img-cmds.hx > > @@ -1,5 +1,5 @@ > > HXCOMM Keep the list of subcommands sorted by name. > > -HXCOMM Use DEFHEADING() to define headings in both help text and texi > > +HXCOMM Use DEFHEADING() to define headings in both help text and rST > > HXCOMM Text between SRST and ERST are copied to rST version and > > HXCOMM discarded from C version > > HXCOMM DEF(command, callback, arg_string) is used to construct > > diff --git a/target/i386/cpu.c b/target/i386/cpu.c > > index f37eb7b675..f8231f56b6 100644 > > --- a/target/i386/cpu.c > > +++ b/target/i386/cpu.c > > @@ -4127,7 +4127,7 @@ static PropValue tcg_default_props[] = { > > * We resolve CPU model aliases using -v1 when using "-machine > > * none", but this is just for compatibility while libvirt isn't > > * adapted to resolve CPU model versions before creating VMs. > > - * See "Runnability guarantee of CPU models" at * qemu-deprecated.texi. > > + * See "Runnability guarantee of CPU models" at * deprecated.rst. > > */ > > X86CPUVersion default_cpu_version = 1; > > Duplicates my "[PATCH 0/2] Update leftover comments that mention > Texinfo", which Laurent has queued. > -- 此致 礼 罗勇刚 Yours sincerely, Yonggang Luo [-- Attachment #2: Type: text/html, Size: 2303 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-10-02 8:19 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-10-01 17:35 [PATCH v2 0/2] Texi cleanup Yonggang Luo 2020-10-01 17:35 ` [PATCH v2 1/2] doc: Remove texi referenced in qemu-img-cmds.hx and target/i386/cpu.c Yonggang Luo 2020-10-02 5:15 ` Markus Armbruster 2020-10-02 8:18 ` 罗勇刚(Yonggang Luo)
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).