Re: [U-Boot] [PATCH] kallsyms: fix escaping of NUL char in strings

2009-07-10 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1245087445-14960-3-git-send-email-vap...@gentoo.org> you wrote: > The current kallsyms code is using \\0 to escape the backslash in the awk > code, but the shell too needs escaping. This way we make sure gcc is > passed the \0. Then gcc itself will consume this a

Re: [U-Boot] [PATCH] kallsyms: fix escaping of NUL char in strings

2009-06-16 Thread Mike Frysinger
On Tuesday 16 June 2009 14:35:02 Wolfgang Denk wrote: > Mike Frysinger wrote: > > > > erp, globbed too many files when sending out > > > > > > What does that mean? > > > > it means this patch isnt part of this small series > > Ah, OK - but the patch as submitted is ok, right? yeah, the patch shoul

Re: [U-Boot] [PATCH] kallsyms: fix escaping of NUL char in strings

2009-06-16 Thread Wolfgang Denk
Dear Mike Frysinger, In message <200906160057.28158.vap...@gentoo.org> you wrote: > > > > erp, globbed too many files when sending out > > > > What does that mean? > > it means this patch isnt part of this small series Ah, OK - but the patch as submitted is ok, right? Best regards, Wolfgang De

Re: [U-Boot] [PATCH] kallsyms: fix escaping of NUL char in strings

2009-06-15 Thread Mike Frysinger
On Monday 15 June 2009 15:08:10 Wolfgang Denk wrote: > Dear Mike Frysinger, > > In message <200906151443.41007.vap...@gentoo.org> you wrote: > > erp, globbed too many files when sending out > > What does that mean? it means this patch isnt part of this small series -mike signature.asc Descriptio

Re: [U-Boot] [PATCH] kallsyms: fix escaping of NUL char in strings

2009-06-15 Thread Wolfgang Denk
Dear Mike Frysinger, In message <200906151443.41007.vap...@gentoo.org> you wrote: > > erp, globbed too many files when sending out What does that mean? Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5,

Re: [U-Boot] [PATCH] kallsyms: fix escaping of NUL char in strings

2009-06-15 Thread Mike Frysinger
erp, globbed too many files when sending out -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] kallsyms: fix escaping of NUL char in strings

2009-06-15 Thread Mike Frysinger
The current kallsyms code is using \\0 to escape the backslash in the awk code, but the shell too needs escaping. This way we make sure gcc is passed the \0. Then gcc itself will consume this as an octal, so we have to use 000 so gcc will create the final NUL. Signed-off-by: Mike Frysinger ---

[U-Boot] [PATCH] kallsyms: fix escaping of NUL char in strings

2009-06-15 Thread Mike Frysinger
The current kallsyms code is using \\0 to escape the backslash in the awk code, but the shell too needs escaping. This way we make sure gcc is passed the \0. Then gcc itself will consume this as an octal, so we have to use 000 so gcc will create the final NUL. Signed-off-by: Mike Frysinger ---