linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH/resend] Document awk requirements
@ 2010-01-04 22:13 Luca Tettamanti
  2010-01-04 22:32 ` Randy Dunlap
  2010-01-04 22:40 ` Masami Hiramatsu
  0 siblings, 2 replies; 4+ messages in thread
From: Luca Tettamanti @ 2010-01-04 22:13 UTC (permalink / raw)
  To: linux-doc; +Cc: linux-kernel, Masami Hiramatsu

Gnu awk is required for generating generating
arch/x86/lib/inat-tables.c:

 GEN     arch/x86/lib/inat-tables.c
 Error: Your awk doesn't support charactor-class.

mawk doesn't work anymore.

Signed-off-by: Luca Tettamanti <kronos.it@gmail.com>
Acked-by: Masami Hiramatsu <mhiramat@redhat.com>
---
Hum, who is in charge of the documentation?
Masami can you push it?

 Documentation/Changes |    1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/Changes b/Documentation/Changes
index f08b313..abec6f2 100644
--- a/Documentation/Changes
+++ b/Documentation/Changes
@@ -50,6 +50,7 @@ o  udev                   081                     # udevinfo -V
 o  grub                   0.93                    # grub --version
 o  mcelog		  0.6
 o  iptables               1.4.1                   # iptables -V
+o  Gnu awk                3.1.5                   # awk --version
 
 
 Kernel compilation

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH/resend] Document awk requirements
  2010-01-04 22:13 [PATCH/resend] Document awk requirements Luca Tettamanti
@ 2010-01-04 22:32 ` Randy Dunlap
  2010-01-05 21:34   ` Luca Tettamanti
  2010-01-04 22:40 ` Masami Hiramatsu
  1 sibling, 1 reply; 4+ messages in thread
From: Randy Dunlap @ 2010-01-04 22:32 UTC (permalink / raw)
  To: Luca Tettamanti; +Cc: linux-doc, linux-kernel, Masami Hiramatsu

On Mon, 4 Jan 2010 23:13:45 +0100 Luca Tettamanti wrote:

> Gnu awk is required for generating generating
> arch/x86/lib/inat-tables.c:
> 
>  GEN     arch/x86/lib/inat-tables.c
>  Error: Your awk doesn't support charactor-class.
> 
> mawk doesn't work anymore.

Hi,
Did you try this patch?

Subject: [tip:x86/urgent] x86: Don't use POSIX character classes in gen-insn-attr-x86.awk


> Signed-off-by: Luca Tettamanti <kronos.it@gmail.com>
> Acked-by: Masami Hiramatsu <mhiramat@redhat.com>
> ---
> Hum, who is in charge of the documentation?

It depends on which documentation.  I am for some of it.
GregKH for some of it.  Other people for other parts of it.

But for this one, I could merge it, but I think that it's not needed
due to the patch that I mentioned above.  If your patch is still
needed, Andrew or I can merge it.



> Masami can you push it?
> 
>  Documentation/Changes |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/Changes b/Documentation/Changes
> index f08b313..abec6f2 100644
> --- a/Documentation/Changes
> +++ b/Documentation/Changes
> @@ -50,6 +50,7 @@ o  udev                   081                     # udevinfo -V
>  o  grub                   0.93                    # grub --version
>  o  mcelog		  0.6
>  o  iptables               1.4.1                   # iptables -V
> +o  Gnu awk                3.1.5                   # awk --version
>  
>  
>  Kernel compilation
> --


---
~Randy

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH/resend] Document awk requirements
  2010-01-04 22:13 [PATCH/resend] Document awk requirements Luca Tettamanti
  2010-01-04 22:32 ` Randy Dunlap
@ 2010-01-04 22:40 ` Masami Hiramatsu
  1 sibling, 0 replies; 4+ messages in thread
From: Masami Hiramatsu @ 2010-01-04 22:40 UTC (permalink / raw)
  To: Luca Tettamanti; +Cc: linux-doc, linux-kernel

Hi Luca,

As Randy said, gen-insn-attr-x86.awk doesn't need gawk anymore,

> Subject: [tip:x86/urgent] x86: Don't use POSIX character classes in gen-insn-attr-x86.awk

because above patch removes POSIX character classes.
So I think we don't need to update Documentation/Changes.

Thank you,


Luca Tettamanti wrote:
> Gnu awk is required for generating generating
> arch/x86/lib/inat-tables.c:
> 
>  GEN     arch/x86/lib/inat-tables.c
>  Error: Your awk doesn't support charactor-class.
> 
> mawk doesn't work anymore.
> 
> Signed-off-by: Luca Tettamanti <kronos.it@gmail.com>
> Acked-by: Masami Hiramatsu <mhiramat@redhat.com>
> ---
> Hum, who is in charge of the documentation?
> Masami can you push it?
> 
>  Documentation/Changes |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/Changes b/Documentation/Changes
> index f08b313..abec6f2 100644
> --- a/Documentation/Changes
> +++ b/Documentation/Changes
> @@ -50,6 +50,7 @@ o  udev                   081                     # udevinfo -V
>  o  grub                   0.93                    # grub --version
>  o  mcelog		  0.6
>  o  iptables               1.4.1                   # iptables -V
> +o  Gnu awk                3.1.5                   # awk --version
>  
>  
>  Kernel compilation
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

-- 
Masami Hiramatsu

Software Engineer
Hitachi Computer Products (America), Inc.
Software Solutions Division

e-mail: mhiramat@redhat.com


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH/resend] Document awk requirements
  2010-01-04 22:32 ` Randy Dunlap
@ 2010-01-05 21:34   ` Luca Tettamanti
  0 siblings, 0 replies; 4+ messages in thread
From: Luca Tettamanti @ 2010-01-05 21:34 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-doc, linux-kernel, Masami Hiramatsu

On Mon, Jan 4, 2010 at 11:32 PM, Randy Dunlap <rdunlap@xenotime.net> wrote:
> On Mon, 4 Jan 2010 23:13:45 +0100 Luca Tettamanti wrote:
>
>> Gnu awk is required for generating generating
>> arch/x86/lib/inat-tables.c:
>>
>>  GEN     arch/x86/lib/inat-tables.c
>>  Error: Your awk doesn't support charactor-class.
>>
>> mawk doesn't work anymore.
>
> Hi,
> Did you try this patch?
>
> Subject: [tip:x86/urgent] x86: Don't use POSIX character classes in gen-insn-attr-x86.awk

Ah, yes. mawk is once again able to build inat-tables.c. The patch can
be dropped.

thanks,
Luca

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-01-05 21:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-01-04 22:13 [PATCH/resend] Document awk requirements Luca Tettamanti
2010-01-04 22:32 ` Randy Dunlap
2010-01-05 21:34   ` Luca Tettamanti
2010-01-04 22:40 ` Masami Hiramatsu

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).