public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/6] Blackfin fixes for 2009.08
@ 2009-06-15 17:37 Mike Frysinger
  2009-06-15 17:37 ` [U-Boot] [PATCH 1/6] Blackfin: bump up default JTAG console timeout Mike Frysinger
                   ` (6 more replies)
  0 siblings, 7 replies; 15+ messages in thread
From: Mike Frysinger @ 2009-06-15 17:37 UTC (permalink / raw)
  To: u-boot

A few fixes and tweaks to use latest code in master.

Mike Frysinger (4):
  Blackfin: bf548-ezkit: bump up monitor size
  Blackfin: enable -O2 in lib_generic/ for ADI/Bluetechnix boards
  Blackfin: fix SPI flash speed define name
  Blackfin: move ALL += u-boot.ldr to blackfin_config.mk

Vivi Li (2):
  Blackfin: bump up default JTAG console timeout
  Blackfin: bf533-stamp/bf537-stamp: fix env settings for SPI flash

 Makefile                         |    4 +---
 blackfin_config.mk               |    6 ++++--
 board/bf518f-ezbrd/config.mk     |    3 +++
 board/bf526-ezbrd/config.mk      |    3 +++
 board/bf527-ezkit/config.mk      |    3 +++
 board/bf533-ezkit/config.mk      |    3 +++
 board/bf533-stamp/config.mk      |    3 +++
 board/bf537-stamp/config.mk      |    3 +++
 board/bf538f-ezkit/config.mk     |    3 +++
 board/bf548-ezkit/config.mk      |    3 +++
 board/bf561-ezkit/config.mk      |    3 +++
 board/cm-bf527/config.mk         |    3 +++
 board/cm-bf533/config.mk         |    3 +++
 board/cm-bf537e/config.mk        |    3 +++
 board/cm-bf548/config.mk         |    3 +++
 board/cm-bf561/config.mk         |    3 +++
 board/tcm-bf537/config.mk        |    3 +++
 cpu/blackfin/jtag-console.c      |    2 +-
 include/configs/bf518f-ezbrd.h   |    2 +-
 include/configs/bf526-ezbrd.h    |    2 +-
 include/configs/bf527-ezkit.h    |    2 +-
 include/configs/bf533-stamp.h    |    6 +++---
 include/configs/bf537-minotaur.h |    2 +-
 include/configs/bf537-pnav.h     |    2 +-
 include/configs/bf537-srv1.h     |    2 +-
 include/configs/bf537-stamp.h    |    6 +++---
 include/configs/bf538f-ezkit.h   |    2 +-
 include/configs/bf548-ezkit.h    |    4 ++--
 include/configs/blackstamp.h     |    2 +-
 29 files changed, 67 insertions(+), 22 deletions(-)

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [U-Boot] [PATCH] kallsyms: fix escaping of NUL char in strings
@ 2009-06-15 14:43 Mike Frysinger
  0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger @ 2009-06-15 14:43 UTC (permalink / raw)
  To: u-boot

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

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

end of thread, other threads:[~2009-07-10 21:04 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 ` [U-Boot] [PATCH] kallsyms: fix escaping of NUL char in strings Mike Frysinger
2009-06-15 18:43   ` 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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox