From: Mike Frysinger <vapier@gentoo.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] kallsyms: fix escaping of NUL char in strings
Date: Mon, 15 Jun 2009 13:37:20 -0400 [thread overview]
Message-ID: <1245087445-14960-3-git-send-email-vapier@gentoo.org> (raw)
In-Reply-To: <1245087445-14960-1-git-send-email-vapier@gentoo.org>
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 <vapier@gentoo.org>
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index d01cc48..8471828 100644
--- a/Makefile
+++ b/Makefile
@@ -312,7 +312,7 @@ GEN_UBOOT = \
$(obj)u-boot: depend $(SUBDIRS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT)
$(GEN_UBOOT)
ifeq ($(CONFIG_KALLSYMS),y)
- smap=`$(call SYSTEM_MAP,u-boot) | awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\0"}'` ; \
+ smap=`$(call SYSTEM_MAP,u-boot) | awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
$(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" -c common/system_map.c -o $(obj)common/system_map.o
$(GEN_UBOOT) $(obj)common/system_map.o
endif
--
1.6.3.1
next prev parent reply other threads:[~2009-06-15 17:37 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-15 17:37 [U-Boot] [PATCH 0/6] Blackfin fixes for 2009.08 Mike Frysinger
2009-06-15 17:37 ` [U-Boot] [PATCH 1/6] Blackfin: bump up default JTAG console timeout Mike Frysinger
2009-06-15 17:37 ` Mike Frysinger [this message]
2009-06-15 18:43 ` [U-Boot] [PATCH] kallsyms: fix escaping of NUL char in strings Mike Frysinger
2009-06-15 19:08 ` Wolfgang Denk
2009-06-16 4:57 ` Mike Frysinger
2009-06-16 18:35 ` Wolfgang Denk
2009-06-16 19:21 ` Mike Frysinger
2009-07-10 21:04 ` Wolfgang Denk
2009-06-15 17:37 ` [U-Boot] [PATCH 2/6] Blackfin: bf533-stamp/bf537-stamp: fix env settings for SPI flash Mike Frysinger
2009-06-15 17:37 ` [U-Boot] [PATCH 3/6] Blackfin: bf548-ezkit: bump up monitor size Mike Frysinger
2009-06-15 17:37 ` [U-Boot] [PATCH 4/6] Blackfin: enable -O2 in lib_generic/ for ADI/Bluetechnix boards Mike Frysinger
2009-06-15 17:37 ` [U-Boot] [PATCH 5/6] Blackfin: fix SPI flash speed define name Mike Frysinger
2009-06-15 17:37 ` [U-Boot] [PATCH 6/6] Blackfin: move ALL += u-boot.ldr to blackfin_config.mk Mike Frysinger
-- strict thread matches above, loose matches on Subject: below --
2009-06-15 14:43 [U-Boot] [PATCH] kallsyms: fix escaping of NUL char in strings Mike Frysinger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1245087445-14960-3-git-send-email-vapier@gentoo.org \
--to=vapier@gentoo.org \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox